:root {
  --ink: #111416;
  --muted: #5e686d;
  --paper: #f8f4ed;
  --surface: #ffffff;
  --line: #d9ded8;
  --teal: #0f766e;
  --teal-dark: #104c48;
  --coral: #e85d4f;
  --amber: #f3b33d;
  --blue: #315c9f;
  --shadow: 0 24px 60px rgba(17, 20, 22, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  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;
}

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

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  color: #fff;
}

.brand,
.nav-links,
.hero-actions,
.header-action {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: max-content;
  font-weight: 800;
}

.brand-logo {
  width: clamp(154px, 18vw, 230px);
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}

.nav-links {
  gap: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.nav-links a,
.header-action,
.button {
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.nav-links a:hover {
  color: #fff;
}

.header-action {
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
}

.header-action:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 86vh;
  overflow: hidden;
  color: #fff;
  background: #14201f;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 18, 18, 0.82), rgba(12, 18, 18, 0.42)),
    linear-gradient(180deg, rgba(12, 18, 18, 0.45), rgba(12, 18, 18, 0.2) 42%, rgba(12, 18, 18, 0.72));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 144px 0 76px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.6rem, 10vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 2.4vw, 1.45rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-width: 100%;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 800;
  text-align: center;
  white-space: normal;
}

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

.button-primary {
  background: var(--amber);
  color: #17201d;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: #fff;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.13);
}

.button-dark {
  background: var(--teal-dark);
  color: #fff;
}

.intro,
.services,
.contact {
  padding: 84px 0;
}

.intro {
  background: var(--surface);
}

.services {
  background: var(--paper);
}

.contact {
  background: #13201f;
  color: #fff;
}

.section-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.intro-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: 48px;
  align-items: start;
}

.intro h2,
.services h2,
.contact h2 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

.intro p:not(.section-kicker),
.contact-panel p,
.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 34px;
}

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

.feature-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(17, 20, 22, 0.06);
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border-radius: 50%;
  background: #eaf1ec;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
}

.feature-card:nth-child(2) .feature-icon {
  background: #f8e9e6;
  color: var(--coral);
}

.feature-card:nth-child(3) .feature-icon {
  background: #e8edf8;
  color: var(--blue);
}

.feature-card h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  line-height: 1.1;
}

.contact-panel {
  display: grid;
  gap: 22px;
  justify-items: start;
  padding-top: 6px;
}

@media (max-width: 840px) {
  .site-header {
    gap: 16px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    padding: 124px 0 58px;
  }

  .intro,
  .services,
  .contact {
    padding: 62px 0;
  }

  .intro-grid,
  .contact-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .site-header {
    width: min(100% - 24px, 1180px);
    padding-top: 16px;
  }

  .brand {
    font-size: 0.96rem;
  }

  .brand-logo {
    width: 150px;
  }

  .header-action {
    min-height: 38px;
    padding: 0 14px;
  }

  .hero-content,
  .section-inner {
    width: min(100% - 24px, 1180px);
  }

  .hero h1 {
    font-size: clamp(3rem, 17vw, 4.8rem);
  }

  .button {
    width: 100%;
  }
}
