
:root {
  --ink: #0D0D0F;
  --paper: #F4F4F2;
  --white: #FFFFFF;
  --gold: #B08830;
  --gold-lt: #C89E48;
  --rule: #E0DDD8;
  --mid: #6B6B70;
  --red: #C0272D;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--ink); background: var(--white); font-size: 16px; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
h1,h2,h3 { font-family: 'Barlow Condensed', system-ui, sans-serif; font-weight: 800; line-height: 1.1; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
.eyebrow { font-family: 'Barlow Condensed', system-ui, sans-serif; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.btn { display: inline-block; padding: 13px 28px; font-family: 'Barlow Condensed', system-ui, sans-serif; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.06em; text-transform: uppercase; border-radius: 3px; cursor: pointer; border: none; transition: opacity 0.15s; }
.btn--gold { background: var(--gold); color: var(--white); }
.btn--gold:hover { background: var(--gold-lt); }
.btn--outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn--outline-white:hover { border-color: var(--white); }

/* NAV */
.site-nav { background: var(--ink); border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.nav-brand { font-family: 'Barlow Condensed', system-ui, sans-serif; font-weight: 800; font-size: 1.1rem; letter-spacing: 0.04em; text-transform: uppercase; }
.nav-brand .charter { color: var(--white); }
.nav-brand .busses { color: var(--gold); }
.nav-brand .dot-com { color: rgba(255,255,255,0.4); font-size: 0.85rem; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.7); font-family: 'Barlow Condensed', system-ui, sans-serif; font-weight: 600; font-size: 0.88rem; letter-spacing: 0.06em; text-transform: uppercase; }
.nav-links a:hover { color: var(--white); }
.nav-phone { color: rgba(255,255,255,0.6); font-size: 0.82rem; }
.nav-phone a { color: rgba(255,255,255,0.9); font-weight: 600; }

/* HERO */
.hero { background: var(--ink); color: var(--white); padding: 80px 0 72px; position: relative; overflow: hidden; }
.hero-rule { width: 48px; height: 3px; background: var(--gold); margin-bottom: 24px; }
.hero h1 { max-width: 760px; margin-bottom: 20px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub { color: rgba(255,255,255,0.65); max-width: 520px; margin-bottom: 16px; font-size: 1rem; line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.coming-soon-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(176,136,48,0.12); border: 1px solid rgba(176,136,48,0.3); border-radius: 100px; padding: 6px 16px; font-size: 0.78rem; font-family: 'Barlow Condensed', system-ui, sans-serif; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 28px; }
.coming-soon-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* STAT ROW */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--rule); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.stat-cell { background: var(--white); padding: 28px 20px; text-align: center; }
.stat-cell .val { font-family: 'Barlow Condensed', system-ui, sans-serif; font-weight: 800; font-size: 2rem; color: var(--gold); line-height: 1; }
.stat-cell .lbl { font-size: 0.78rem; color: var(--mid); margin-top: 4px; }

/* SERVICES GRID */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card { border: 1px solid var(--rule); border-radius: 3px; padding: 24px; }
.svc-card h3 { margin-bottom: 8px; }
.svc-card p { color: var(--mid); font-size: 0.9rem; }
.svc-num { font-family: 'Barlow Condensed', system-ui, sans-serif; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 10px; }

/* FORM */
.form-wrap { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; }
.form-panel { background: var(--ink); color: var(--white); padding: 40px; border-radius: 3px; }
.form-panel h2 { margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1/-1; }
.form-group label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.5); font-family: 'Barlow Condensed', system-ui, sans-serif; }
.form-group input, .form-group select, .form-group textarea { padding: 11px 14px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 3px; color: var(--white); font-size: 0.92rem; font-family: 'Inter', system-ui, sans-serif; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: rgba(176,136,48,0.6); }
.form-group select option { background: var(--ink); }
.form-group textarea { resize: vertical; min-height: 90px; }
.honeypot { display: none !important; }
.trust-box { border: 1px solid var(--rule); border-radius: 3px; overflow: hidden; position: sticky; top: 24px; }
.trust-header { background: var(--ink); color: var(--white); padding: 24px; }
.trust-header .label { font-size: 0.72rem; opacity: 0.5; letter-spacing: 0.1em; text-transform: uppercase; font-family: 'Barlow Condensed', system-ui, sans-serif; font-weight: 700; }
.trust-header .phone { font-family: 'Barlow Condensed', system-ui, sans-serif; font-weight: 800; font-size: 1.5rem; margin-top: 4px; }
.trust-header .phone a { color: var(--white); }
.trust-body { padding: 20px 24px; background: var(--paper); }
.trust-points { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.trust-points li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.87rem; }
.trust-points li::before { content: ''; flex-shrink: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); margin-top: 7px; }

/* CTA BAND */
.cta-band { background: var(--gold); color: var(--white); padding: 56px 0; text-align: center; }
.cta-band h2 { margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 28px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.45); padding: 40px 0 24px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; margin-bottom: 32px; }
.footer-brand .name { font-family: 'Barlow Condensed', system-ui, sans-serif; font-weight: 800; font-size: 1rem; color: var(--white); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px; }
.footer-brand address { font-style: normal; font-size: 0.82rem; line-height: 1.7; }
.footer-brand address a { color: rgba(255,255,255,0.6); }
.footer-col h4 { font-family: 'Barlow Condensed', system-ui, sans-serif; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 10px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.footer-col ul a { color: rgba(255,255,255,0.55); font-size: 0.83rem; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 0.76rem; }
.footer-ams a { color: rgba(255,255,255,0.35); font-size: 0.74rem; }
.footer-ams a:hover { color: rgba(255,255,255,0.6); }

/* BREADCRUMB */
.breadcrumb { background: var(--ink); border-bottom: 1px solid rgba(255,255,255,0.06); padding: 10px 0; }
.breadcrumb-inner { display: flex; gap: 8px; align-items: center; font-size: 0.8rem; color: rgba(255,255,255,0.45); max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.breadcrumb-inner a { color: rgba(255,255,255,0.55); }
.breadcrumb-inner .sep { opacity: 0.3; }
.breadcrumb-inner .current { color: rgba(255,255,255,0.75); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .svc-grid { grid-template-columns: 1fr; }
  .form-wrap { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
