:root {
  --ink: #132026;
  --ink-2: #20313a;
  --muted: #64717c;
  --line: #d9e1e7;
  --paper: #ffffff;
  --soft: #f2f6f7;
  --teal: #0f766e;
  --teal-dark: #0b4f4b;
  --cyan: #55c7d1;
  --gold: #c49443;
  --shadow: 0 24px 80px rgba(19, 32, 38, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 18px clamp(20px, 5vw, 76px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  background: linear-gradient(180deg, rgba(19, 32, 38, 0.78), rgba(19, 32, 38, 0.2));
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
}

.brand-name {
  font-size: 1.02rem;
}

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

.nav a {
  color: rgba(255, 255, 255, 0.78);
}

.nav a:hover {
  color: #ffffff;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 100vh;
  overflow: hidden;
  padding: 146px clamp(20px, 5vw, 76px) 0;
  color: #ffffff;
  background: var(--ink);
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 20, 24, 0.93) 0%, rgba(10, 20, 24, 0.76) 32%, rgba(10, 20, 24, 0.32) 64%, rgba(10, 20, 24, 0.18) 100%),
    linear-gradient(180deg, rgba(10, 20, 24, 0.1) 0%, rgba(10, 20, 24, 0.38) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding-bottom: clamp(64px, 10vw, 130px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 7vw, 6.3rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.26rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
}

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

.button.primary:hover {
  background: #e9f6f7;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

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

.signal-bar {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: calc(100% + clamp(40px, 10vw, 152px));
  margin-left: calc(clamp(20px, 5vw, 76px) * -1);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(9, 20, 24, 0.7);
  backdrop-filter: blur(18px);
}

.signal-bar div {
  min-height: 112px;
  padding: 26px clamp(20px, 5vw, 76px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.signal-bar span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
}

.signal-bar strong {
  font-size: clamp(1.02rem, 2vw, 1.36rem);
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.62fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  margin-bottom: 42px;
}

.section-heading p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.business-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 58%, var(--soft) 58%, var(--soft) 100%);
}

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

.service-card {
  min-height: 330px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 46px rgba(19, 32, 38, 0.07);
}

.service-card.featured {
  color: #ffffff;
  border-color: rgba(15, 118, 110, 0.18);
  background:
    linear-gradient(150deg, rgba(15, 118, 110, 0.94), rgba(19, 32, 38, 0.98)),
    var(--teal-dark);
  box-shadow: var(--shadow);
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 48px;
}

.service-number {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
}

.featured .service-number {
  color: var(--ink);
  background: #ffffff;
}

.service-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.featured .service-label,
.featured p {
  color: rgba(255, 255, 255, 0.74);
}

.service-card p,
.approach-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.approach {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(30px, 6vw, 90px);
  background: var(--soft);
}

.approach-copy {
  position: sticky;
  top: 112px;
  align-self: start;
}

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

.approach-list > div {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  column-gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.approach-list span {
  grid-row: span 2;
  color: var(--gold);
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: clamp(76px, 9vw, 112px) clamp(20px, 5vw, 76px);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.9), rgba(19, 32, 38, 0.98) 52%, #111b20),
    var(--ink);
}

.contact-section h2 {
  max-width: 880px;
  margin-bottom: 0;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 15px 22px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: #ffffff;
  font-weight: 900;
  white-space: nowrap;
}

.contact-link:hover {
  background: rgba(255, 255, 255, 0.12);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(20px, 5vw, 76px);
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .section-heading,
  .approach,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .approach-copy {
    position: static;
  }

  .contact-link {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    min-height: auto;
  }

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

  .hero {
    min-height: auto;
    padding-top: 156px;
  }

  .hero-media img {
    object-position: 70% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(10, 20, 24, 0.96) 0%, rgba(10, 20, 24, 0.82) 55%, rgba(10, 20, 24, 0.38) 100%),
      linear-gradient(180deg, rgba(10, 20, 24, 0.1) 0%, rgba(10, 20, 24, 0.5) 100%);
  }

  h1 {
    font-size: 3rem;
  }

  .signal-bar {
    grid-template-columns: 1fr;
  }

  .signal-bar div {
    min-height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .approach-list > div {
    grid-template-columns: 1fr;
  }

  .approach-list span {
    grid-row: auto;
    margin-bottom: 10px;
  }

  .site-footer {
    flex-direction: column;
  }
}
