
:root {
  --orange: #E64A19;
  --gray: #333333;
  --white: #FFFFFF;
  --soft: #F8F8F8;
  --line: #E7E2DF;
  --muted: #666666;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Helvetica, Arial, Inter, Montserrat, sans-serif;
  color: var(--gray);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand img { width: min(360px, 56vw); height: auto; display: block; }
.nav-links { display: flex; gap: 26px; font-weight: 700; font-size: .94rem; }
.nav-links a { text-decoration: none; color: var(--gray); }
.nav-links a:hover { color: var(--orange); }
.hero {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 58px;
  align-items: center;
  padding: 90px 0;
}
.hero-copy h1 {
  font-size: clamp(3rem, 6.8vw, 6.6rem);
  line-height: .92;
  letter-spacing: -.065em;
  margin: 0 0 30px;
  font-weight: 800;
}
.lead { font-size: 1.28rem; color: var(--muted); max-width: 700px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--orange);
}
.actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.small-actions { margin-top: 24px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}
.primary { background: var(--orange); color: var(--white); }
.secondary { border: 1px solid var(--line); background: var(--white); color: var(--gray); }
.hero-card, .card, address {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 22px 65px rgba(51,51,51,.08);
}
.hero-card { padding: 38px; border-top: 6px solid var(--orange); }
.hero-card h2 { margin: 0 0 4px; font-size: 2rem; }
.role { color: var(--orange); font-weight: 700; margin-top: 0; }
.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
  border-top: 1px solid var(--line);
}
.section h2 {
  font-size: clamp(2.1rem, 4.6vw, 4rem);
  line-height: 1.02;
  letter-spacing: -.045em;
  margin: 0 0 30px;
}
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { padding: 30px; }
.number { color: var(--orange); font-weight: 800; letter-spacing: .18em; }
.card h3 { margin: 22px 0 10px; }
.card p, .split p, .contact p, .profile p { color: var(--muted); }
.split, .contact, .profile { display: grid; grid-template-columns: .9fr 1.1fr; gap: 58px; align-items: start; }
.accent-block { background: linear-gradient(90deg, rgba(230,74,25,.08), rgba(255,255,255,0)); padding-left: 28px; padding-right: 28px; border-radius: 34px; }
.steps p { margin: 0 0 18px; }
address { padding: 30px; font-style: normal; }
.footer {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 30px 0 54px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
@media (max-width: 900px) {
  .nav { min-height: auto; padding: 18px 0; align-items: flex-start; flex-direction: column; }
  .nav-links { gap: 18px; flex-wrap: wrap; }
  .hero, .split, .contact, .profile { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 50px 0; }
  .cards { grid-template-columns: 1fr; }
  .accent-block { padding-left: 0; padding-right: 0; background: transparent; }
}

.tag-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.tag-grid span { border: 1px solid var(--line); border-radius: 999px; padding: 12px 16px; background: var(--white); font-weight: 700; box-shadow: 0 12px 35px rgba(51,51,51,.05); }
