:root {
  color-scheme: light;
  --ink: #17202a;
  --muted: #5f6b77;
  --paper: #f7f8f9;
  --surface: #ffffff;
  --line: #d8dedf;
  --brand: #ff5a00;
  --brand-dark: #202a35;
  --accent: #ff6b18;
  --accent-soft: #ffe2cc;
  --shadow: 0 24px 70px rgba(23, 32, 42, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(247, 244, 238, 0.9);
  border-bottom: 1px solid rgba(216, 222, 223, 0.75);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
}

.brand img {
  flex: 0 0 auto;
  border-radius: 6px;
  object-fit: cover;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 32px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

nav a:hover {
  color: var(--brand-dark);
}

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
  min-height: calc(100svh - 72px);
  padding: clamp(56px, 9vw, 108px) clamp(20px, 5vw, 72px) clamp(34px, 6vw, 60px);
  background: var(--paper);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: 5.75rem;
  line-height: 0.95;
}

h2 {
  margin-bottom: 0;
  font-size: 3.25rem;
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.hero-copy > p:not(.eyebrow),
.contact p,
.approach-list p,
article p {
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-width: 100%;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  white-space: normal;
}

.button.primary {
  background: var(--brand);
  color: #fff;
}

.button.primary:hover {
  background: var(--brand-dark);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.58);
  border-color: var(--line);
  color: var(--brand-dark);
}

.support-panel {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid rgba(216, 222, 223, 0.92);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.panel-bar {
  display: flex;
  gap: 7px;
  margin-bottom: 34px;
}

.panel-bar span {
  width: 10px;
  height: 10px;
  background: var(--line);
  border-radius: 999px;
}

.panel-bar span:first-child {
  background: var(--accent);
}

.panel-logo-wrap {
  display: grid;
  place-items: center;
  margin: 4px 0 24px;
  padding: 18px;
  background: #f8f7f3;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.panel-logo {
  display: block;
  width: 220px;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
}

.support-panel ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.support-panel li {
  padding: 16px;
  background: #fbfaf6;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--muted);
}

.support-panel strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.section,
.contact {
  padding: clamp(54px, 8vw, 92px) clamp(20px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

article {
  min-height: 220px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  background: #e7eeee;
}

.approach-list {
  display: grid;
  gap: 14px;
}

.approach-list p {
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid rgba(95, 107, 119, 0.26);
}

.approach-list p:first-child {
  padding-top: 4px;
}

.contact {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  background: var(--brand-dark);
  color: #fff;
}

.contact .eyebrow,
.contact p {
  color: var(--accent-soft);
}

.contact h2 {
  margin-bottom: 16px;
}

.contact p {
  max-width: 620px;
  margin-bottom: 0;
}

.contact .button.primary {
  background: var(--accent);
  color: #192025;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 860px) {
  .site-header,
  footer,
  .contact {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .section-heading,
  .split,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

  .support-panel {
    min-height: auto;
  }

  .panel-logo {
    width: 180px;
  }

  h1 {
    font-size: 4.4rem;
  }

  h2 {
    font-size: 2.75rem;
  }
}

@media (max-width: 520px) {
  .brand span {
    font-size: 0.98rem;
  }

  nav {
    gap: 12px;
    font-size: 0.88rem;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .button {
    width: 100%;
  }
}
