/* ============ Reset & Base ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }

:root {
  --black: #0b0b0d;
  --charcoal: #1c1c1f;
  --ink: #2a2a2e;
  --white: #ffffff;
  --cream: #faf9f6;
  --gray-100: #f4f4f3;
  --gray-200: #e6e5e1;
  --gray-300: #d3d2cc;
  --gray-400: #a1a09a;
  --gray-600: #6b6a64;
  --gray-800: #383733;
  --red: #c8102e;
  --red-dark: #9c0c24;
  --gold: #cb9b3f;
  --gold-light: #e6c878;

  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  --container: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--black);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.3rem; }
p { color: var(--gray-800); }

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--gray-600);
  max-width: 640px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--black); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: var(--gray-300); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}
.section-dark .eyebrow { color: var(--gold-light); }

.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); box-shadow: 0 10px 24px -8px rgba(200,16,46,0.5); }

.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-light); box-shadow: 0 10px 24px -8px rgba(203,155,63,0.5); }

.btn-outline { background: transparent; border-color: var(--black); color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }

.btn-outline-light { background: transparent; border-color: rgba(255,255,255,0.4); color: var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--black); border-color: var(--white); }

.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }

/* ============ Header / Nav ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.28rem;
  color: var(--black);
}
.brand .dot { display: inline-block; width: 5px; height: 24px; border-radius: 3px; background: linear-gradient(180deg, var(--red), var(--gold)); margin-right: 10px; vertical-align: middle; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-800);
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover { color: var(--black); }
.nav-links a.active { color: var(--black); font-weight: 600; }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}

.nav-cta { display: flex; align-items: center; gap: 18px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--black); display: block; }

.mobile-panel {
  display: none;
  flex-direction: column;
  padding: 8px 24px 28px;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}
.mobile-panel a {
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
  font-weight: 500;
  color: var(--ink);
}
.mobile-panel a.active { color: var(--red); font-weight: 600; }
.mobile-panel .btn { margin-top: 16px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .mobile-panel.open { display: flex; }
}

/* ============ Hero ============ */
.hero {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 96px 0 110px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 82% 18%, rgba(200,16,46,0.28), transparent 42%),
    radial-gradient(circle at 12% 82%, rgba(203,155,63,0.22), transparent 45%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero .lede { color: var(--gray-300); margin-bottom: 34px; }
.hero-accent { background: linear-gradient(90deg, var(--red), var(--gold-light)); -webkit-background-clip: text; background-clip: text; color: transparent; font-style: italic; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stats .stat-num { font-family: var(--font-head); font-size: 1.7rem; font-weight: 700; color: var(--white); }
.hero-stats .stat-label { font-size: 0.82rem; color: var(--gray-400); }

.hero-panel {
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(6px);
}
.hero-panel .route {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.route-step { display: flex; gap: 14px; padding-bottom: 22px; position: relative; }
.route-step:last-child { padding-bottom: 0; }
.route-step::before {
  content: "";
  position: absolute;
  left: 10px; top: 26px; bottom: -2px;
  width: 1.5px;
  background: rgba(255,255,255,0.18);
}
.route-step:last-child::before { display: none; }
.route-dot { width: 21px; height: 21px; border-radius: 50%; background: var(--charcoal); border: 1.5px solid var(--gold); display: flex; align-items: center; justify-content: center; font-size: 0.68rem; font-weight: 700; color: var(--gold-light); flex-shrink: 0; }
.route-step.done .route-dot { background: var(--gold); border-color: var(--gold); color: var(--black); }
.route-text strong { display: block; font-size: 0.94rem; color: var(--white); }
.route-text span { font-size: 0.82rem; color: var(--gray-400); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 72px; }
}

/* ============ Grids & Cards ============ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -20px rgba(11,11,13,0.25); border-color: var(--gray-300); }

.icon-badge {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--black);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ============ Stats strip ============ */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.stats-strip .stat-block {
  padding: 36px 24px;
  text-align: center;
  border-left: 1px solid var(--gray-200);
}
.stats-strip .stat-block:first-child { border-left: none; }
.stats-strip .stat-num { font-family: var(--font-head); font-size: 2.1rem; font-weight: 700; color: var(--black); }
.stats-strip .stat-label { font-size: 0.85rem; color: var(--gray-600); margin-top: 4px; }

@media (max-width: 700px) {
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .stats-strip .stat-block:nth-child(2n+1) { border-left: none; }
  .stats-strip .stat-block:nth-child(-n+2) { border-bottom: 1px solid var(--gray-200); }
}

/* ============ Pricing ============ */
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 40px 34px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}
.pricing-card.featured h3, .pricing-card.featured .price { color: var(--white); }
.pricing-card.featured p { color: var(--gray-300); }
.pricing-card.featured .check { color: var(--gold-light); }
.pricing-card.featured .feature-row { border-color: rgba(255,255,255,0.1); }

.ribbon {
  position: absolute;
  top: -13px; left: 34px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}

.price { font-family: var(--font-head); font-size: 2.6rem; font-weight: 700; color: var(--black); margin: 14px 0 4px; }
.price span { font-size: 1rem; font-weight: 500; color: var(--gray-600); }
.pricing-card.featured .price span { color: var(--gray-400); }

.feature-row {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--gray-200);
  font-size: 0.94rem;
}
.feature-row:first-of-type { border-top: 1px solid var(--gray-200); margin-top: 20px; }
.check { color: var(--red); font-weight: 700; flex-shrink: 0; }

/* ============ Timeline / Process ============ */
.timeline { display: flex; flex-direction: column; }
.timeline-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  position: relative;
  padding-bottom: 44px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-num {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold-light);
  font-family: var(--font-head);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  z-index: 1;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 22px; top: 46px; bottom: -2px;
  width: 2px;
  background: var(--gray-200);
}
.timeline-item:last-child::before { display: none; }

/* ============ Testimonials ============ */
.testimonial {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--gray-200);
}
.testimonial p { color: var(--ink); font-size: 1.02rem; }
.testimonial .who { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--black); color: var(--gold-light); display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-head); font-size: 0.9rem; }
.who strong { display: block; font-size: 0.92rem; color: var(--black); }
.who span { font-size: 0.8rem; color: var(--gray-600); }

/* ============ FAQ Accordion ============ */
.accordion-item { border-bottom: 1px solid var(--gray-200); }
.accordion-item:first-child { border-top: 1px solid var(--gray-200); }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--black);
}
.accordion-trigger .plus { font-size: 1.4rem; color: var(--red); transition: transform 0.2s ease; flex-shrink: 0; margin-left: 16px; }
.accordion-item.open .plus { transform: rotate(45deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.accordion-panel p { padding-bottom: 22px; color: var(--gray-600); max-width: 720px; }

/* ============ Forms ============ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.86rem; font-weight: 600; color: var(--black); }
.field input, .field select, .field textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 0.96rem;
  color: var(--ink);
  transition: border-color .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--black); }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.82rem; color: var(--gray-600); margin-top: 10px; }
.form-status { margin-top: 16px; font-size: 0.92rem; font-weight: 600; display: none; }
.form-status.success { color: #2f7d4f; display: block; }
.form-status.error { color: var(--red); display: block; }

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
}

/* ============ CTA band ============ */
.cta-band {
  background: var(--black);
  border-radius: 24px;
  padding: 64px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); margin-bottom: 8px; }
.cta-band p { color: var(--gray-300); }

/* ============ Footer ============ */
.site-footer { background: var(--charcoal); color: var(--gray-300); padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .brand { color: var(--white); margin-bottom: 14px; }
.footer-brand p { color: var(--gray-400); max-width: 300px; font-size: 0.92rem; }
.site-footer h4 { color: var(--white); font-size: 0.88rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer ul li { margin-bottom: 11px; }
.site-footer a { color: var(--gray-400); font-size: 0.92rem; }
.site-footer a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; color: var(--gray-400); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============ Page hero (inner pages) ============ */
.page-hero {
  background: var(--black);
  color: var(--white);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(200,16,46,0.25), transparent 45%);
}
.page-hero h1 { color: var(--white); position: relative; }
.page-hero .lede { color: var(--gray-300); position: relative; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.85rem; color: var(--gray-400); margin-bottom: 18px; position: relative; }
.breadcrumb a { color: var(--gray-400); }
.breadcrumb a:hover { color: var(--gold-light); }

/* ============ Utilities ============ */
.tag {
  display: inline-block;
  background: var(--gray-100);
  color: var(--gray-800);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.tag.gold { background: rgba(203,155,63,0.12); color: #97742a; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-12 { gap: 12px; } .gap-16 { gap: 16px; } .gap-24 { gap: 24px; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

.divider-path { display: flex; align-items: center; gap: 6px; padding: 6px 0; opacity: 0.5; }
.divider-path span { width: 6px; height: 6px; border-radius: 50%; background: var(--gray-300); }
