/* Edd Love — bordered panel layout, transport dashboard style */
:root {
  --midnight: #0f172a;
  --gold: #eab308;
  --gold-dark: #ca8a04;
  --offwhite: #f8fafc;
  --slate: #cbd5e1;
  --slate-light: #e2e8f0;
  --text: #0f172a;
  --text-light: #475569;
  --white: #ffffff;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text); background: var(--offwhite);
  line-height: 1.65;
}

nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 10%; background: var(--white);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--slate-light);
}
nav .brand { font-size: 0.85rem; font-weight: 700; letter-spacing: -0.2px; color: var(--midnight); }
nav .brand .e { color: var(--gold); }
nav .el { display: flex; gap: 18px; align-items: center; }
nav .el a { font-size: 0.68rem; font-weight: 500; color: var(--text-light); text-decoration: none; text-transform: uppercase; letter-spacing: 1.5px; transition: 0.2s; }
nav .el a:hover { color: var(--gold-dark); }
nav .el .phone { font-size: 0.7rem; font-weight: 600; color: var(--gold); letter-spacing: 0; }

/* Hero panel */
.hero-p {
  margin: 30px 10%; padding: 60px; background: var(--white);
  border: 1px solid var(--slate-light); border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
  text-align: center;
}
.hero-p h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; letter-spacing: -0.5px; }
.hero-p h1 .hl { color: var(--gold); }
.hero-p p { font-size: 0.85rem; color: var(--text-light); max-width: 460px; margin: 8px auto 20px; }
.hero-p .btn {
  display: inline-block; padding: 10px 28px; border-radius: 2px;
  background: var(--gold); color: var(--midnight); text-decoration: none;
  font-size: 0.72rem; font-weight: 700; transition: 0.3s;
}
.hero-p .btn:hover { background: var(--gold-dark); }

/* Panel sections */
.panel-sec { margin: 24px 10%; }
.panel-sec .ps-h {
  font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px;
  color: var(--gold); margin-bottom: 8px;
}

/* Card row inside panel */
.panel { background: var(--white); border: 1px solid var(--slate-light); border-radius: 2px; padding: 40px; box-shadow: 0 1px 3px rgba(0,0,0,0.02); }
.cr { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.cr-it { padding: 20px; border: 1px solid var(--slate-light); transition: 0.2s; }
.cr-it:hover { border-color: var(--gold); }
.cr-it .ci-icon { font-size: 1.5rem; margin-bottom: 6px; }
.cr-it h4 { font-size: 0.8rem; font-weight: 600; margin-bottom: 4px; }
.cr-it p { font-size: 0.72rem; color: var(--text-light); line-height: 1.6; }

/* Stats bar */
.stats-p { margin: 24px 10%; }
.stats-inner { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.stat-b { background: var(--white); border: 1px solid var(--slate-light); border-radius: 2px; padding: 24px; text-align: center; }
.stat-b .sn { font-size: 1.6rem; font-weight: 800; color: var(--midnight); letter-spacing: -1px; }
.stat-b .sn .g { color: var(--gold); }
.stat-b .sl { font-size: 0.6rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-light); margin-top: 2px; }

/* About */
.about-p { margin: 24px 10%; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.about-inner p { font-size: 0.82rem; color: var(--text-light); line-height: 1.7; }
.about-inner h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 6px; }

/* CTA */
.cta-p {
  margin: 24px 10%; padding: 50px; background: var(--midnight);
  text-align: center; border: none;
}
.cta-p h2 { font-size: clamp(1rem, 2vw, 1.3rem); color: var(--white); margin-bottom: 4px; }
.cta-p p { color: var(--slate); font-size: 0.8rem; margin-bottom: 16px; }
.cta-p .btn {
  display: inline-block; padding: 10px 28px; border-radius: 2px;
  background: var(--gold); color: var(--midnight); text-decoration: none;
  font-size: 0.72rem; font-weight: 700; transition: 0.3s;
}
.cta-p .btn:hover { background: var(--gold-dark); }

/* Footer */
footer { background: var(--midnight); padding: 30px 10% 20px; margin-top: 10px; }
.ft-g { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; }
.ft-g h4 { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 8px; }
.ft-g p, .ft-g a { font-size: 0.7rem; color: var(--slate); text-decoration: none; display: block; line-height: 1.6; }
.ft-g a:hover { color: var(--gold); }
.ft-g .fb { font-size: 0.65rem; color: rgba(255,255,255,0.2); }
.ft-bot { text-align: center; padding-top: 16px; margin-top: 16px; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.6rem; color: rgba(255,255,255,0.15); }

/* Pages */
.p-hero { margin: 30px 10%; padding: 40px; background: var(--white); border: 1px solid var(--slate-light); }
.p-hero h1 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); color: var(--midnight); margin-bottom: 4px; }
.p-hero h1 .hl { color: var(--gold); }
.p-hero p { color: var(--text-light); font-size: 0.85rem; max-width: 460px; }
.p-body { margin: 0 10% 40px; padding: 40px; background: var(--white); border: 1px solid var(--slate-light); }
.p-bi { max-width: 700px; }
.p-bi h2 { font-size: 0.95rem; margin: 22px 0 6px; color: var(--midnight); }
.p-bi h2 .a { color: var(--gold); }
.p-bi p, .p-bi li { font-size: 0.82rem; color: var(--text-light); line-height: 1.75; }
.p-bi ul { padding-left: 16px; margin: 4px 0 10px; }
.cf { max-width: 520px; }
.cf .fg { margin-bottom: 12px; }
.cf label { display: block; font-size: 0.68rem; font-weight: 600; margin-bottom: 2px; }
.cf input, .cf textarea { width: 100%; padding: 8px 12px; border: 1px solid var(--slate); border-radius: 2px; font-size: 0.85rem; font-family: inherit; background: var(--offwhite); }
.cf input:focus, .cf textarea:focus { outline: none; border-color: var(--gold); }
.cf textarea { height: 70px; }
.cf .btn { padding: 10px 28px; border: none; border-radius: 2px; background: var(--gold); color: var(--midnight); font-size: 0.72rem; font-weight: 700; cursor: pointer; transition: 0.3s; }
.cf .btn:hover { background: var(--gold-dark); }
.cd { margin-top: 28px; font-size: 0.8rem; color: var(--text-light); line-height: 1.6; border-top: 1px solid var(--slate-light); padding-top: 18px; }
.cd strong { color: var(--text); }

@media (max-width: 768px) {
  .hero-p { margin: 16px 5%; padding: 30px 20px; }
  .panel-sec { margin: 16px 5%; }
  .panel { padding: 20px; }
  .cr { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .ft-g { grid-template-columns: 1fr; }
  nav .el a { font-size: 0.55rem; }
  .p-hero, .p-body { margin: 16px 5%; }
}
