:root {
  --bg: #f4f5f6;
  --bg-soft: #e9edf0;
  --panel: #ffffff;
  --text: #1f252b;
  --muted: #5f6b76;
  --line: rgba(31, 37, 43, 0.12);
  --accent: #d88b2d;
  --accent-soft: rgba(216, 139, 45, 0.16);
  --shadow: 0 20px 40px rgba(31, 37, 43, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1100px, calc(100% - 3rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #f4f5f6;
  border-bottom: 1px solid var(--line);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-inner {
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  height: 64px;
  width: auto;
  display: block;
}

.header-link {
  color: var(--text);
  font-weight: 600;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 6rem 0;
  max-width: 760px;
}

.hero-card {
  max-width: 640px;
  padding: 2rem;
}

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

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

h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.98;
  margin-bottom: 1.25rem;
  max-width: 15ch;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

p {
  color: var(--muted);
}

.hero-copy {
  max-width: 58ch;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  background: var(--accent);
  color: #0f1114;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.section {
  padding: 5.5rem 0;
}

.capability-strip {
  padding: 1.4rem 0;
  background: #eef1f3;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.capability-list p {
  margin-bottom: 0;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 2rem;
}

.services {
  background: var(--bg-soft);
}

.service-grid,
.about-grid,
.contact-links,
.process-grid {
  display: grid;
  gap: 1.25rem;
}

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

.hero-card,
.card,
.contact-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.card {
  padding: 1.6rem;
}

.about-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: stretch;
}

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

.process-card {
  padding: 1.6rem;
}

.process-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
}

.process-icon svg {
  width: 1.4rem;
  height: 1.4rem;
}

.step-number {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.image-panel {
  min-height: 320px;
  border-radius: 20px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #dde3e8;
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.contact {
  padding-top: 1rem;
  padding-bottom: 6rem;
}

.contact-panel {
  padding: 2rem;
}

.contact-copy {
  margin-bottom: 1.5rem;
}

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

.contact-links a {
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: var(--accent-soft);
  border: 1px solid rgba(216, 139, 45, 0.24);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.site-footer {
  background: #edf1f4;
  border-top: 1px solid var(--line);
  padding: 1.35rem 0 2rem;
}

.footer-inner {
  flex-wrap: wrap;
}

.site-footer p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

@media (max-width: 840px) {
  .capability-list,
  .service-grid,
  .about-grid,
  .contact-links,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .header-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: 72vh;
  }

  .section {
    padding: 4rem 0;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 1.5rem, 1100px);
  }

  .hero-content {
    padding: 5rem 0 4rem;
  }

  .hero-card {
    padding: 1.5rem;
  }

  .contact-panel,
  .card {
    padding: 1.25rem;
  }

  h1 {
    max-width: none;
  }
}
