:root {
  --ink: #182426;
  --muted: #627174;
  --panel: #ffffff;
  --line: #d9e3e2;
  --teal: #0f766e;
  --coral: #c45a3c;
  --gold: #c99a3a;
  --sea: #e8f6f5;
  --deep: #102f35;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: #ffffff;
  background: rgba(16, 47, 53, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  color: var(--deep);
  background: #ffffff;
  border-radius: 8px;
  font-size: 14px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  opacity: 0.86;
}

.nav a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 34, 39, 0.84) 0%, rgba(8, 34, 39, 0.6) 42%, rgba(8, 34, 39, 0.12) 100%),
    linear-gradient(0deg, rgba(8, 34, 39, 0.5) 0%, rgba(8, 34, 39, 0) 34%);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 96px);
  padding-top: 76px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 22px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  color: #ffffff;
  background: var(--coral);
}

.button.secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.54);
}

.section {
  padding: clamp(72px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.intro {
  background: #ffffff;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: start;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}

.intro p,
.section-heading p,
.contact p {
  color: var(--muted);
  font-size: 18px;
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 34px;
}

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

.service-card {
  min-height: 280px;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 34px;
  color: #ffffff;
  background: var(--teal);
  border-radius: 8px;
  font-weight: 800;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.service-card p {
  color: var(--muted);
}

.strengths {
  color: #ffffff;
  background: var(--deep);
}

.strengths-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 8vw, 110px);
  align-items: start;
}

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

.strength-list div {
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.strength-list strong,
.strength-list span {
  display: block;
}

.strength-list strong {
  margin-bottom: 6px;
  font-size: 18px;
}

.strength-list span {
  color: rgba(255, 255, 255, 0.72);
}

.contact {
  background: #ffffff;
}

.contact-content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.6fr);
  gap: clamp(32px, 8vw, 96px);
  align-items: center;
}

.contact-card {
  display: grid;
  gap: 24px;
  padding: 30px;
  background: #f7faf9;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-style: normal;
}

.contact-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-card a,
.contact-card strong {
  color: var(--deep);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.74);
  background: #0a2024;
  font-size: 14px;
}

.footer a {
  color: #ffffff;
  overflow-wrap: anywhere;
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 20px;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    font-size: 13px;
  }

  .hero {
    min-height: 860px;
    align-items: end;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(8, 34, 39, 0.92) 0%, rgba(8, 34, 39, 0.66) 58%, rgba(8, 34, 39, 0.18) 100%);
  }

  .hero-content {
    width: calc(100% - 40px);
    margin: 0 20px 64px;
    padding-top: 160px;
  }

  .intro-grid,
  .section-heading,
  .strengths-panel,
  .contact-content,
  .card-grid {
    grid-template-columns: 1fr;
  }

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

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand span:last-child {
    font-size: 14px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  h1 {
    font-size: 42px;
  }

  .button {
    width: 100%;
  }
}
