:root {
  --bg: #091120;
  --bg-2: #0d1424;
  --panel: #121c31;
  --panel-2: #19253d;
  --text: #e6edf8;
  --muted: #9ba8bf;
  --line: rgba(255, 255, 255, 0.12);
  --brand: #f25c2a;
  --brand-dark: #cf4519;
  --brand-soft: rgba(242, 92, 42, 0.12);
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(242, 92, 42, 0.12), transparent 30%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  color: var(--text);
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: var(--white);
  color: #000;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  z-index: 1000;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(9, 17, 32, 0.85);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand), #ff8d43);
  box-shadow: 0 10px 24px rgba(242, 92, 42, 0.3);
}

.brand-text {
  display: grid;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text small {
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  border-radius: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--brand), #ff8d43);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(242, 92, 42, 0.22);
}

.button:hover,
.button:focus-visible {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
}

.button-small {
  min-height: 42px;
  padding-inline: 1rem;
}

.button-ghost {
  background: transparent;
  border-color: var(--line);
  box-shadow: none;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.04);
}

.hero {
  padding: 5rem 0 4rem;
}

.hero-grid,
.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffb08b;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.lead {
  font-size: 1.06rem;
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.6rem 0 1.4rem;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-points li {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 600;
}

.card {
  background: linear-gradient(180deg, rgba(25, 37, 61, 0.95) 0%, rgba(18, 28, 49, 0.95) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-visual {
  overflow: hidden;
}

.hero-visual-copy {
  padding: 1.6rem;
}

.status-pill {
  display: inline-flex;
  padding: 0.48rem 0.85rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: #ffb08b;
  border: 1px solid rgba(242, 92, 42, 0.25);
  font-size: 0.85rem;
  font-weight: 700;
}

.quick-contact {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1rem;
}

.quick-contact a,
.contact-list a {
  color: var(--white);
  font-weight: 700;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.cards {
  display: grid;
  gap: 1.3rem;
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.area-card,
.contact-form,
.image-card {
  padding: 1.4rem;
}

.service-graphic,
.hero-graphic,
.about-graphic {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  overflow: hidden;
}

.service-graphic {
  margin-bottom: 1rem;
}

.area-card {
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.area-card strong {
  font-size: 1.08rem;
  margin-bottom: 0.35rem;
}

.area-card span {
  color: var(--muted);
}

.tick-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.tick-list div {
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  color: var(--text);
  font-weight: 600;
}

.contact-grid {
  align-items: start;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.contact-form span {
  color: var(--text);
  font-weight: 600;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

input,
textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--white);
  padding: 0.9rem 1rem;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: rgba(242, 92, 42, 0.6);
  box-shadow: 0 0 0 3px rgba(242, 92, 42, 0.16);
}

textarea {
  resize: vertical;
}

.site-footer {
  padding: 1.3rem 0 2rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .three-up,
  .four-up {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.75rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(9, 17, 32, 0.98);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero,
  .section {
    padding: 3.5rem 0;
  }

  .hero-grid,
  .split-grid,
  .three-up,
  .four-up,
  .field-grid,
  .tick-list {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}