:root {
  --bg: #f4efe7;
  --bg-strong: #1b232f;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #fffaf2;
  --text: #17202c;
  --muted: #566273;
  --line: rgba(23, 32, 44, 0.12);
  --accent: #d86d32;
  --accent-deep: #a44b1b;
  --highlight: #f1be7a;
  --shadow: 0 24px 60px rgba(18, 28, 41, 0.16);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(216, 109, 50, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(27, 35, 47, 0.14), transparent 32%),
    linear-gradient(180deg, #f7f0e8 0%, #f2ece4 42%, #ebe3d7 100%);
}

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

.site-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 20px auto;
}

.hero,
.section,
.footer {
  position: relative;
}

.hero {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(145deg, rgba(255, 250, 242, 0.92), rgba(246, 238, 227, 0.72)),
    #f7f1ea;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -30% 45%;
  height: 420px;
  background: radial-gradient(circle, rgba(216, 109, 50, 0.35), transparent 62%);
  pointer-events: none;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 6px 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 64px;
  flex: 0 0 auto;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-text strong,
.eyebrow,
h1,
h2,
h3 {
  font-family: "Archivo Expanded", sans-serif;
}

.brand-text small {
  color: var(--muted);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar-actions a:not(.button) {
  color: var(--muted);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.service-card,
.project-card,
.coverage-card,
.check-item,
.contact-card {
  backdrop-filter: blur(16px);
}

.hero-copy {
  padding: 28px 10px 24px 6px;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-deep);
}

h1 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.03;
  max-width: 11ch;
}

.lede,
.section-heading p,
.service-card p,
.project-card p,
.check-item p,
.contact-details p,
.footer p,
.coverage-card p {
  color: var(--muted);
  line-height: 1.7;
}

.lede {
  margin: 22px 0 26px;
  max-width: 62ch;
  font-size: 1.08rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent), #f39a58);
  color: white;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  box-shadow: 0 14px 30px rgba(216, 109, 50, 0.25);
}

.button:hover {
  transform: translateY(-2px);
}

.button-secondary,
.button-outline {
  background: rgba(255, 255, 255, 0.62);
  color: var(--text);
  border-color: rgba(23, 32, 44, 0.12);
  box-shadow: none;
}

.hero-points {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.hero-panel {
  display: grid;
  gap: 18px;
  align-content: center;
  padding: 18px 0 6px;
}

.signal-card,
.metric-strip article,
.service-card,
.project-card,
.coverage-card,
.check-item,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.signal-card {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(27, 35, 47, 0.96), rgba(27, 35, 47, 0.88)),
    var(--bg-strong);
  color: white;
}

.signal-label {
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.signal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.signal-list span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.metric-strip {
  display: grid;
  gap: 12px;
}

.metric-strip article {
  padding: 18px 20px;
}

.metric-strip strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.2rem;
}

.metric-strip span {
  color: var(--muted);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0 12px;
}

.trust-band p {
  margin: 0;
  padding: 18px 22px;
  border-radius: 999px;
  background: rgba(27, 35, 47, 0.92);
  color: #fef9f3;
  text-align: center;
  letter-spacing: 0.02em;
}

.section {
  padding: 86px 0 0;
}

.section-heading {
  max-width: 760px;
}

.section-heading.compact {
  max-width: 620px;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(1.9rem, 3vw, 3.2rem);
  line-height: 1.1;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.service-card {
  padding: 22px;
  min-height: 220px;
}

.service-card.accent {
  background: linear-gradient(180deg, rgba(216, 109, 50, 0.14), rgba(255, 255, 255, 0.78));
}

h3 {
  margin: 0 0 14px;
  font-size: 1rem;
  line-height: 1.35;
}

.section-dark {
  padding: 88px 28px 28px;
  margin-top: 86px;
  border-radius: calc(var(--radius) + 8px);
  background:
    radial-gradient(circle at top right, rgba(241, 190, 122, 0.18), transparent 28%),
    linear-gradient(180deg, #1a2431 0%, #131b25 100%);
  color: white;
}

.section-dark .eyebrow,
.section-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.project-card,
.coverage-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.project-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: rgba(241, 190, 122, 0.18);
  color: var(--highlight);
  font-family: "Archivo Expanded", sans-serif;
  font-size: 0.76rem;
}

.coverage-card {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
}

.coverage-card h3 {
  font-size: 1.2rem;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: start;
}

.check-list {
  display: grid;
  gap: 18px;
}

.check-item,
.contact-card {
  padding: 24px;
}

.contact-section {
  padding-bottom: 56px;
}

.contact-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 248, 240, 0.92)),
    var(--surface-strong);
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 0 0 30px;
  color: var(--muted);
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-layout,
  .service-grid,
  .project-grid,
  .trust-band {
    grid-template-columns: 1fr;
  }

  .coverage-card {
    flex-direction: column;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(100% - 20px, 1200px);
    margin: 10px auto;
  }

  .hero {
    padding: 14px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 20px;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.25rem, 13vw, 3.6rem);
  }

  .service-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .section-dark {
    padding: 74px 18px 18px;
  }

  .trust-band p {
    border-radius: 24px;
  }

  .button,
  .button-secondary,
  .button-outline {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .reveal {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
