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

:root {
  --amber: #e8a800;
  --amber-light: #f5b800;
  --amber-bg: rgba(232,168,0,0.10);
  --amber-border: rgba(232,168,0,0.22);
  --bg: #1c1a17;
  --bg-card: #252219;
  --bg-card-hover: #2c2920;
  --text: #f0ebe0;
  --text-muted: rgba(240,235,224,0.55);
  --text-dim: rgba(240,235,224,0.35);
  --border: rgba(240,235,224,0.08);
  --border-mid: rgba(240,235,224,0.12);
  --red-bg: rgba(220,60,50,0.18);
  --red-text: #f87171;
  --green-bg: rgba(52,180,120,0.15);
  --green-text: #4ade80;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

/* ── NAV ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  border-bottom: 1px solid rgba(240,200,80,0.12);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 200;
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark { width: 32px; height: 32px; background: var(--amber); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-mark svg { width: 18px; height: 18px; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 500; color: var(--text); }
.logo-text span { color: var(--amber); }

.nav-links { display: flex; gap: 2rem; list-style: none; font-size: 14px; }
.nav-links a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }

/* Hamburger button — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 300;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 150;
  flex-direction: column;
  padding: 5rem 2rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-drawer.open { display: flex; }
.nav-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2rem;
}
.nav-drawer ul li a {
  display: block;
  font-size: 1.4rem;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-drawer ul li a:hover,
.nav-drawer ul li a.active { color: var(--amber); }
.nav-drawer .drawer-cta { margin-top: 1rem; }

/* ── BUTTONS ── */
.btn-primary { background: var(--amber); color: var(--bg); border: none; padding: 10px 22px; border-radius: 4px; font-family: 'Source Sans 3', sans-serif; font-size: 14px; font-weight: 500; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.2s, transform 0.15s; }
.btn-primary:hover { background: var(--amber-light); transform: translateY(-1px); }

.btn-outline { background: transparent; color: var(--text-muted); border: 1px solid rgba(240,235,224,0.25); padding: 10px 22px; border-radius: 4px; font-family: 'Source Sans 3', sans-serif; font-size: 14px; cursor: pointer; text-decoration: none; display: inline-block; transition: border-color 0.2s, color 0.2s; }
.btn-outline:hover { border-color: rgba(240,235,224,0.55); color: var(--text); }

/* ── LAYOUT ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2.5rem; }
.section { padding: 4.5rem 0; border-top: 1px solid var(--border); }
.section-eyebrow { font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.5rem; }

h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 400; line-height: 1.15; margin-bottom: 1.25rem; }
h1 strong { color: var(--amber); font-weight: 500; }
h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 400; line-height: 1.2; margin-bottom: 0.75rem; }
h3 { font-size: 16px; font-weight: 500; color: var(--text); margin-bottom: 0.4rem; }

.section-sub { font-size: 16px; font-weight: 300; color: var(--text-muted); max-width: 560px; margin-bottom: 2.5rem; line-height: 1.7; }

/* ── HERO (homepage) ── */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5.5rem 0 4rem;
}

/* ── BADGES ── */
.badge { display: inline-block; font-size: 10px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; padding: 3px 8px; border-radius: 3px; margin-bottom: 0.75rem; }
.badge-amber { background: rgba(232,168,0,0.15); color: var(--amber); }
.badge-soon { background: rgba(240,235,224,0.07); color: var(--text-dim); }

/* ── RISK PILLS ── */
.risk-pill { font-size: 10px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; padding: 3px 8px; border-radius: 3px; flex-shrink: 0; margin-top: 2px; }
.risk-high { background: var(--red-bg); color: var(--red-text); }
.risk-med { background: rgba(232,168,0,0.18); color: var(--amber); }
.risk-low { background: var(--green-bg); color: var(--green-text); }

/* ── TRUST STRIP ── */
.trust-strip { display: flex; gap: 2.5rem; flex-wrap: wrap; padding: 2.5rem 0; border-top: 1px solid var(--border); }
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-icon { width: 20px; height: 20px; color: var(--amber); flex-shrink: 0; }
.trust-text { font-size: 14px; font-weight: 300; color: var(--text-muted); }

/* ── CTA BANNER ── */
.cta-banner { background: var(--amber-bg); border: 1px solid var(--amber-border); border-radius: 10px; padding: 3rem 2.5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: 4rem; }
.cta-banner h2 { font-size: 1.8rem; margin-bottom: 0.4rem; }
.cta-banner p { font-size: 15px; font-weight: 300; color: var(--text-muted); }

/* ── FOOTER ── */
footer { border-top: 1px solid var(--border); padding: 2rem 2.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 13px; color: var(--text-dim); }
footer a { color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--text-muted); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { padding: 4rem 0 3rem; border-bottom: 1px solid var(--border); }
.hero-tag { display: inline-flex; align-items: center; gap: 7px; background: rgba(232,168,0,0.12); color: var(--amber); font-size: 12px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; margin-bottom: 1.25rem; }
.hero-tag-dot { width: 6px; height: 6px; background: var(--amber); border-radius: 50%; }
.page-hero p { font-size: 18px; font-weight: 300; color: var(--text-muted); line-height: 1.7; max-width: 600px; margin-top: 1rem; }

/* ── INCLUDED / NOT-INCLUDED LISTS ── */
.included-list { list-style: none; margin-top: 1rem; }
.included-list li { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; font-weight: 300; color: var(--text-muted); line-height: 1.5; }
.included-list li:last-child { border-bottom: none; }
.check { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; color: var(--amber); }

.not-included-list { list-style: none; margin-top: 1rem; }
.not-included-list li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14px; font-weight: 300; color: var(--text-dim); line-height: 1.5; }
.not-included-list li:last-child { border-bottom: none; }
.cross { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; color: var(--text-dim); }

/* ── GRID LAYOUTS ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* ── PROCESS STEPS ── */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(240,235,224,0.06); border-radius: 8px; overflow: hidden; }
.process-step { background: var(--bg); padding: 1.75rem; }
.step-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 400; color: rgba(232,168,0,0.22); line-height: 1; margin-bottom: 0.9rem; }
.process-step h3 { font-size: 15px; margin-bottom: 0.5rem; }
.process-step p { font-size: 13px; font-weight: 300; color: var(--text-muted); line-height: 1.6; }

/* ── INFO BOX ── */
.info-box { background: var(--bg-card); border: 1px solid var(--border); border-left: 3px solid var(--amber); border-radius: 0 8px 8px 0; padding: 1.25rem 1.5rem; }
.info-box p { font-size: 14px; font-weight: 300; color: var(--text-muted); line-height: 1.7; }
.info-box strong { color: var(--text); font-weight: 500; }

/* ── STAT CARDS ── */
.stat-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 1.5rem; text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 400; color: var(--amber); line-height: 1; margin-bottom: 0.4rem; }
.stat-label { font-size: 13px; font-weight: 300; color: var(--text-muted); }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.svc-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 1.5rem; transition: border-color 0.2s, background 0.2s; text-decoration: none; display: block; }
.svc-card:hover { border-color: rgba(232,168,0,0.3); background: var(--bg-card-hover); }
.svc-card.featured { border-color: var(--amber-border); }
.svc-card.dimmed { opacity: 0.55; pointer-events: none; }
.svc-card h3 { font-size: 15px; font-weight: 500; color: var(--text); margin-bottom: 0.4rem; }
.svc-card p { font-size: 13px; font-weight: 300; color: var(--text-muted); line-height: 1.6; }
.svc-price { margin-top: 1rem; font-size: 12px; color: var(--text-dim); }
.svc-arrow { margin-top: 1rem; font-size: 13px; color: var(--amber); }

/* ── CARD ── */
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 1.5rem; }
.card h3 { margin-bottom: 0.75rem; }
.card p { font-size: 14px; font-weight: 300; color: var(--text-muted); line-height: 1.7; }

/* ── REPORT CARD ── */
.report-card { background: var(--bg-card); border: 1px solid rgba(232,168,0,0.18); border-radius: 10px; overflow: hidden; }
.report-header { background: rgba(232,168,0,0.1); border-bottom: 1px solid rgba(232,168,0,0.12); padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; }
.report-title { font-size: 13px; font-weight: 500; color: var(--amber); }
.report-date { font-size: 11px; color: var(--text-dim); }
.report-body { padding: 18px; }
.risk-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.risk-item:last-child { border-bottom: none; }
.risk-text { font-size: 13px; color: rgba(240,235,224,0.8); line-height: 1.4; }
.risk-next { font-size: 11.5px; color: var(--text-dim); margin-top: 3px; }

/* ── HERO ACTIONS ── */
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ════════════════════════════════════════
   RESPONSIVE — TABLET (≤860px)
   ════════════════════════════════════════ */
@media (max-width: 860px) {
  nav { padding: 1rem 1.25rem; }
  .container { padding: 0 1.25rem; }

  /* Show hamburger, hide desktop nav links and CTA button */
  .nav-hamburger { display: flex; }
  .nav-links { display: none; }
  .nav-cta-desktop { display: none; }

  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 0 2.5rem; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .three-col { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .section { padding: 3rem 0; }
  .page-hero { padding: 2.5rem 0 2rem; }
  .cta-banner { padding: 2rem 1.5rem; }
}

/* ════════════════════════════════════════
   RESPONSIVE — MOBILE (≤560px)
   ════════════════════════════════════════ */
@media (max-width: 560px) {
  .container { padding: 0 1rem; }
  .three-col { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; padding: 1.5rem 1rem; }
  .cta-banner h2 { font-size: 1.4rem; }
  .trust-strip { gap: 1.25rem; }
  .services-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; align-items: flex-start; gap: 0.75rem; padding: 1.5rem 1rem; }
  nav { padding: 0.875rem 1rem; }
  .section { padding: 2.5rem 0; }
  .hero-grid { padding: 2rem 0 2rem; }
}

/* ── INLINE GRID HELPERS ── */
.grid-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-2col-sm { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.grid-3col-pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-2col-pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grid-4col-process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(240,235,224,0.06); border-radius: 8px; overflow: hidden; }

@media (max-width: 860px) {
  .grid-2col { grid-template-columns: 1fr; }
  .grid-2col-sm { grid-template-columns: 1fr; }
  .grid-3col-pricing { grid-template-columns: 1fr; }
  .grid-2col-pricing { grid-template-columns: 1fr; }
  .grid-4col-process { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .grid-4col-process { grid-template-columns: 1fr; }
}

/* ── SERVICES FEATURE CARD ── */
.services-feature-card { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 860px) {
  .services-feature-card { grid-template-columns: 1fr; gap: 2rem; }
}

/* Services feature card hover - replaces inline onmouseover */
.services-feature-card--hover:hover { background: var(--bg-card-hover) !important; }
