:root {
  --orange: #ff7200;
  --orange-hover: #e86a00;
  --ink: #1a1c1e;
  --ink-soft: #3d4248;
  --muted: #6b7178;
  --line: #e6e4e0;
  --paper: #f6f4f0;
  --white: #ffffff;
  --navy: #14171a;
  --shadow: 0 16px 40px rgba(20, 23, 26, 0.08);
  --radius: 18px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 110px; gap: 24px;
}
.logo { height: 94px; width: auto; }
.nav-links { display: flex; gap: 26px; align-items: center; font-weight: 500; font-size: 15px; color: var(--ink-soft); }
.nav-links a:hover, .nav-links a.is-active { color: var(--orange); }
.nav-cta { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; padding: 11px 18px; font-weight: 600; font-size: 14px;
  border: 1.5px solid transparent; transition: .18s ease;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-hover); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: #fff; }
.btn-ghost:hover { border-color: var(--ink); }
.btn-outline-light { border-color: rgba(255,255,255,.35); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--ink); }
.phone { font-weight: 600; font-size: 14px; color: var(--ink); }
.menu-btn { display: none; background: none; border: 0; font-size: 24px; cursor: pointer; }

.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: #0b0c0d;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,.55) 100%),
    radial-gradient(900px 420px at 85% 10%, rgba(255,114,0,.18), transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  padding: 56px 12px 64px;
  text-align: center;
}
.kicker {
  color: var(--orange); font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; font-size: 12px; margin-bottom: 14px;
}
h1 { font-size: clamp(32px, 4.6vw, 54px); line-height: 1.08; letter-spacing: -.03em; margin-bottom: 16px; overflow-wrap: break-word; }
.hero p.lead {
  font-size: 18px; color: #e8e6e1;
  max-width: 620px; margin: 0 auto 28px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.trust {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.trust-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px; padding: 22px 0;
}
.trust-item { text-align: center; padding: 8px; }
.trust-item b { display: block; font-size: 20px; }
.trust-item span { color: var(--muted); font-size: 13px; }

section { padding: 80px 0; }
h2 { font-size: clamp(28px, 3.4vw, 40px); letter-spacing: -.03em; line-height: 1.15; }
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head p { color: var(--muted); margin-top: 10px; font-size: 17px; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
}
.card .body { padding: 22px; }
.card .ico {
  width: 42px; height: 42px; border-radius: 12px;
  background: #fff4ea; color: var(--orange);
  display: grid; place-items: center; font-weight: 700; margin-bottom: 16px;
}
.card h3 { font-size: 20px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; }
.card a.more { display: inline-block; margin-top: 16px; color: var(--orange); font-weight: 600; font-size: 14px; }

.card video, .vid-frame video {
  width: 100%; height: 190px; object-fit: cover; display: block; background: #111;
}

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split ul { margin-top: 18px; list-style: none; }
.split li { padding: 8px 0 8px 26px; position: relative; color: var(--ink-soft); }
.split li::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--orange); position: absolute; left: 0; top: 14px; }
.panel { background: var(--navy); color: #fff; border-radius: 24px; padding: 0; overflow: hidden; }
.panel video { width: 100%; height: 260px; object-fit: cover; display: block; background: #111; }
.panel .copy { padding: 28px 28px 32px; }
.panel h3 { font-size: 26px; margin-bottom: 10px; }
.panel p { color: #c9c6c0; }

.team-block { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: center; }
.team-block img {
  width: 100%; height: 340px; object-fit: cover; object-position: center 20%;
  border-radius: 22px;
}

.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.quote { background: var(--paper); border-radius: var(--radius); padding: 24px; }
.quote p { font-size: 15px; margin-bottom: 16px; }
.quote b { display: block; }
.quote span { color: var(--muted); font-size: 13px; }

.cta-band {
  background: linear-gradient(135deg, #1a1c1e 0%, #2a1a10 100%);
  color: #fff; border-radius: 28px; padding: 48px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
}
.cta-band h2 { max-width: 520px; }

.facts p { color: var(--ink-soft); font-size: 17px; margin-bottom: 14px; max-width: 820px; }
.markets { margin-top: 32px; max-width: 820px; }
.markets h3 { font-size: 22px; margin-bottom: 8px; }
.markets p { color: var(--ink-soft); margin-bottom: 14px; }
.markets ul { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; }
.markets li {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 14px; font-size: 14px; font-weight: 600;
}
.faq { margin-top: 36px; display: grid; gap: 16px; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 22px;
}
.faq-item h3 { font-size: 18px; margin-bottom: 8px; }
.faq-item p { color: var(--muted); font-size: 15px; }

.page-hero { padding: 56px 0 28px; background: var(--paper); border-bottom: 1px solid var(--line); }
.page-hero .lead { color: var(--muted); font-size: 18px; max-width: 640px; margin-top: 12px; }
.muted { color: var(--muted); font-size: 14px; }
.prose p { color: var(--ink-soft); margin-bottom: 14px; font-size: 17px; }
.prose h2 { margin-bottom: 14px; }
.prose h3 { font-size: 20px; margin: 22px 0 10px; }
.prose ul { margin: 8px 0 18px; padding-left: 22px; color: var(--ink-soft); }
.prose li { margin: 6px 0; }
.prose a { color: var(--orange); font-weight: 600; }
.about-photo { width: 100%; height: 360px; object-fit: cover; object-position: center 20%; border-radius: 22px; }

.people { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.person { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.person-photo { height: 220px; background: #ddd center/cover no-repeat; }
.person-copy { padding: 14px 16px 16px; }
.person-copy h3 { font-size: 16px; margin-bottom: 4px; }
.person-copy p { color: var(--muted); font-size: 13px; }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.post-thumb img, .article-hero img { width: 100%; height: 190px; object-fit: cover; display: block; }
.post-card time { color: var(--muted); font-size: 13px; }
.post-card h2 { font-size: 20px; margin: 8px 0 10px; line-height: 1.25; }
.post-card h2 a:hover { color: var(--orange); }
.article { max-width: 760px; }
.article-hero { margin-bottom: 28px; }
.article-hero img { height: auto; max-height: 420px; border-radius: var(--radius); }
.article-body img, .article-body figure { max-width: 100%; height: auto; border-radius: 12px; margin: 16px 0; }
.pager { margin-top: 36px; }
.pager ul { display: flex; gap: 10px; list-style: none; flex-wrap: wrap; }
.pager a, .pager span { padding: 8px 12px; border-radius: 999px; border: 1px solid var(--line); font-size: 14px; font-weight: 600; }
.pager .current { background: var(--orange); color: #fff; border-color: var(--orange); }

.portal-hero { padding: 64px 0 80px; background: var(--paper); }
.portal-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.portal-card {
  background: #fff; border: 1px solid var(--line); border-radius: 24px;
  padding: 32px 28px 28px; box-shadow: var(--shadow);
}
.portal-logo { height: 64px; width: auto; margin-bottom: 18px; }
.portal-card h2 { font-size: 26px; margin-bottom: 8px; }
.portal-card p { color: var(--muted); margin-bottom: 18px; }
.portal-btn { width: 100%; padding: 14px 18px; font-size: 16px; }

.visit { display: grid; grid-template-columns: 1fr 1.1fr; gap: 36px; align-items: center; }
.visit-map { border-radius: 22px; overflow: hidden; min-height: 320px; border: 1px solid var(--line); box-shadow: var(--shadow); }
.visit-map iframe { width: 100%; height: 340px; border: 0; display: block; }

.sms-form { margin-top: 28px; max-width: 520px; display: grid; gap: 14px; }
.sms-form label { display: grid; gap: 6px; font-weight: 600; font-size: 14px; }
.sms-form input[type="text"],
.sms-form input[type="email"],
.sms-form input[type="tel"] {
  border: 1.5px solid var(--line); border-radius: 12px; padding: 12px 14px;
  font: inherit; font-weight: 400;
}
.sms-choice { display: flex; gap: 22px; margin-bottom: 6px; }
.sms-choice label { display: flex; align-items: center; gap: 8px; font-weight: 600; }
.sms-form .btn { justify-self: start; min-width: 160px; }
.sms-note { color: var(--ink-soft); font-size: 14px; }

footer { background: var(--navy); color: #c9c6c0; padding: 48px 0 28px; }
.foot { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; margin-bottom: 28px; }
footer a:hover { color: #fff; }
.legal { border-top: 1px solid #2c3138; padding-top: 16px; font-size: 12px; color: #8c8882; }
.foot-logo { height: 72px; width: auto; margin-bottom: 14px; }

@media (max-width: 1100px) {
  .logo { height: 78px; }
  .nav { min-height: 96px; }
  .people, .post-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav { flex-wrap: wrap; min-height: 84px; }
  .nav-links, .phone { display: none; }
  .menu-btn { display: block; }
  .nav.is-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 14px;
    padding: 4px 0 16px;
  }
  .nav.is-open .phone { display: block; }
  .logo { height: 64px; }
  .hero { min-height: 70vh; padding: 0; }
  .cards, .split, .quotes, .trust-row, .foot, .cta-band, .team-block, .people, .post-grid, .portal-grid, .visit { grid-template-columns: 1fr; }
  .cta-band { display: block; }
  .cta-band .hero-actions { margin-top: 20px; }
}
