:root {
  --ink: #1f2328;
  --muted: #66707a;
  --paper: #ffffff;
  --soft: #f4f6f8;
  --line: #dfe4e8;
  --accent: #f36c21;
  --accent-dark: #c94e0b;
  --deep: #111418;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: absolute; left: -9999px; top: 0; }
.skip-link:focus { left: 16px; top: 16px; z-index: 999; background: #fff; padding: 10px 14px; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(223,228,232,.85);
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: .02em; }
.brand img { width: 42px; height: 42px; }
.brand span small { display: block; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .16em; }
.nav-links { display: flex; align-items: center; gap: 24px; font-size: 15px; font-weight: 700; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--accent); }
.nav-cta { padding: 11px 16px; border-radius: 999px; background: var(--ink); color: #fff; }
.nav-toggle { display: none; border: 0; background: transparent; font-size: 28px; }
.hero {
  background:
    linear-gradient(105deg, rgba(17,20,24,.95), rgba(17,20,24,.72)),
    radial-gradient(circle at 80% 20%, rgba(243,108,33,.3), transparent 34%);
  color: #fff;
  min-height: 670px;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: center; padding: 86px 0; }
.eyebrow { color: var(--accent); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .18em; }
h1, h2, h3 { margin: 0 0 18px; line-height: 1.1; }
h1 { font-size: clamp(48px, 7vw, 92px); max-width: 880px; letter-spacing: -.045em; }
h2 { font-size: clamp(34px, 4vw, 58px); letter-spacing: -.035em; }
h3 { font-size: 22px; }
.lead { font-size: clamp(18px, 2vw, 23px); color: rgba(255,255,255,.78); max-width: 760px; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 20px; border-radius: 8px; font-weight: 800; border: 1px solid transparent; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-secondary { border-color: rgba(255,255,255,.28); color: #fff; }
.hero-panel { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 22px; padding: 28px; }
.hero-panel ul { padding: 0; margin: 0; list-style: none; }
.hero-panel li { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.12); display: flex; gap: 12px; }
.hero-panel li:last-child { border-bottom: 0; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); margin-top: 8px; flex: 0 0 auto; }
.section { padding: 100px 0; }
.section-soft { background: var(--soft); }
.section-dark { background: var(--deep); color: #fff; }
.section-intro { max-width: 760px; margin-bottom: 44px; }
.section-intro p { color: var(--muted); font-size: 19px; }
.section-dark .section-intro p { color: rgba(255,255,255,.68); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.card { border: 1px solid var(--line); border-radius: 16px; padding: 28px; background: #fff; }
.card p { color: var(--muted); }
.icon-box { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 12px; background: #fff1e8; color: var(--accent); font-weight: 900; margin-bottom: 20px; }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 32px; }
.stat { padding: 22px; border-left: 3px solid var(--accent); background: rgba(255,255,255,.06); }
.stat strong { display: block; font-size: 28px; }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; }
.check-list li { padding: 10px 0 10px 30px; position: relative; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 900; }
.banner { border-radius: 22px; padding: 48px; background: linear-gradient(120deg, var(--accent), #ff9b59); color: #fff; display: flex; justify-content: space-between; gap: 30px; align-items: center; }
.banner p { margin: 0; color: rgba(255,255,255,.86); }
.page-hero { background: var(--deep); color: #fff; padding: 110px 0 80px; }
.page-hero p { color: rgba(255,255,255,.72); max-width: 760px; font-size: 20px; }
.form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { font-weight: 700; font-size: 14px; }
input, textarea, select { width: 100%; margin-top: 7px; border: 1px solid var(--line); border-radius: 9px; padding: 13px 14px; font: inherit; }
textarea { min-height: 150px; resize: vertical; }
.note { font-size: 13px; color: var(--muted); }
.site-footer { background: #0b0e11; color: #fff; padding: 58px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-grid p, .footer-grid a { color: rgba(255,255,255,.65); }
.footer-bottom { margin-top: 36px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.45); font-size: 13px; }
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links { display: none; position: absolute; left: 20px; right: 20px; top: 76px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px; flex-direction: column; align-items: stretch; }
  .nav-links.open { display: flex; }
  .nav-cta { text-align: center; }
  .hero-grid, .grid-3, .grid-2, .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-grid { padding: 70px 0; gap: 36px; }
  .stat-grid { grid-template-columns: 1fr; }
  .banner { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 28px, var(--max)); }
  .section { padding: 72px 0; }
  .form-row { grid-template-columns: 1fr; }
  h1 { font-size: 50px; }
}
/* Approved Denvorth brand artwork */
.brand-logo { width: 245px !important; height: auto !important; object-fit: contain; }
.footer-brand { display: block; }
.brand-logo-dark { width: min(430px, 100%) !important; height: auto !important; }
@media (max-width: 620px) {
  .brand-logo { width: 195px !important; }
}

/* iPhone / small-screen polish */
.nav-toggle { min-width: 44px; min-height: 44px; line-height: 1; cursor: pointer; }
input, textarea, select { font-size: 16px; } /* prevents iOS Safari auto-zoom */
.site-footer p, .site-footer a { overflow-wrap: anywhere; }
@supports (padding: max(0px)) {
  body { padding-left: env(safe-area-inset-left); padding-right: env(safe-area-inset-right); }
}
@media (max-width: 480px) {
  .nav { min-height: 68px; gap: 12px; }
  .brand-logo { width: 168px !important; }
  .nav-links { top: 68px; left: 14px; right: 14px; max-height: calc(100vh - 84px); overflow-y: auto; }
  .hero-grid { padding: 54px 0 58px; gap: 28px; }
  .hero h1 { font-size: clamp(40px, 12.5vw, 50px); line-height: 1.02; letter-spacing: -.04em; }
  .lead { font-size: 18px; line-height: 1.55; }
  .actions { gap: 10px; }
  .actions .btn { width: 100%; }
  .hero-panel { padding: 22px; border-radius: 18px; }
  .section { padding: 60px 0; }
  .section-intro { margin-bottom: 30px; }
  .section-intro p { font-size: 17px; }
  .card { padding: 22px; }
  .banner { padding: 30px 22px; border-radius: 18px; }
  .banner .btn { width: 100%; }
  .page-hero { padding: 82px 0 58px; }
  .page-hero p { font-size: 18px; }
  .site-footer { padding-top: 44px; }
}
