:root {
  --ink: #111817;
  --muted: #66736f;
  --paper: #f4f2ec;
  --white: #ffffff;
  --teal: #0e8a80;
  --teal-dark: #073f3d;
  --gold: #d79a2b;
  --gold-soft: #f2d18b;
  --line: rgba(23, 35, 32, 0.14);
  --shadow: 0 28px 80px rgba(11, 30, 28, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(215, 154, 43, 0.14), transparent 28rem),
    linear-gradient(180deg, #fbfaf7 0%, var(--paper) 100%);
  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;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(23, 35, 32, 0.1);
  box-shadow: 0 16px 48px rgba(23, 35, 32, 0.12);
  backdrop-filter: blur(16px);
}

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

.brand-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-mark {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(23, 35, 32, 0.18);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  opacity: 0.88;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.13);
  opacity: 1;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-open .site-nav a:hover {
  background: rgba(14, 138, 128, 0.08);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 12px;
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 138px clamp(20px, 6vw, 86px) 82px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 18, 17, 0.9) 0%, rgba(7, 18, 17, 0.68) 37%, rgba(7, 18, 17, 0.2) 76%),
    linear-gradient(0deg, rgba(7, 18, 17, 0.46), rgba(7, 18, 17, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(690px, 100%);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 6.1rem);
  line-height: 0.98;
  letter-spacing: 0;
  max-width: 12ch;
}

.hero-copy {
  max-width: 610px;
  margin: 26px 0 0;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-badges span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--gold), #f3c462);
  color: #1f1606;
  box-shadow: 0 18px 42px rgba(215, 154, 43, 0.25);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.section {
  padding: clamp(72px, 9vw, 124px) clamp(20px, 6vw, 86px);
}

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

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

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 74px);
  margin-top: 34px;
  color: var(--muted);
  font-size: 1.06rem;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-block: 1px solid rgba(23, 35, 32, 0.1);
}

.metrics div {
  display: grid;
  gap: 4px;
  min-height: 150px;
  padding: 34px clamp(20px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.86);
}

.metrics strong {
  color: var(--teal-dark);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.metrics span {
  color: var(--muted);
  font-weight: 700;
}

.services {
  background: #fbfaf7;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 292px;
  padding: 28px;
  border: 1px solid rgba(23, 35, 32, 0.09);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(23, 35, 32, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(14, 138, 128, 0.2);
  box-shadow: var(--shadow);
}

.service-number {
  color: var(--gold);
  font-weight: 800;
}

.service-card h3 {
  margin: 34px 0 12px;
  font-size: 1.22rem;
  line-height: 1.22;
}

.service-card p,
.process-list p,
.contact p,
.vision-grid p,
.vision-grid ul {
  margin: 0;
  color: var(--muted);
}

.vision {
  background: linear-gradient(180deg, #efece3 0%, #f6f3eb 100%);
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.vision-grid article {
  min-height: 250px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(23, 35, 32, 0.09);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(23, 35, 32, 0.06);
}

.vision-grid span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--teal-dark);
  font-weight: 800;
}

.vision-grid ul {
  display: grid;
  gap: 12px;
  padding-left: 20px;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.legal {
  background: var(--ink);
  color: var(--white);
}

.legal .eyebrow {
  color: var(--gold-soft);
}

.legal-panel {
  width: min(820px, 100%);
  margin-top: 38px;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

.legal-panel span,
.contact-label {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-panel strong {
  display: block;
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  line-height: 1.12;
}

.legal-panel p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-list article {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(23, 35, 32, 0.12);
}

.process-list span {
  color: var(--teal-dark);
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(215, 154, 43, 0.18), transparent 26rem),
    linear-gradient(135deg, var(--teal-dark), #081918);
  color: var(--white);
}

.contact-mark {
  width: 72px;
  height: 72px;
  margin-bottom: 22px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.contact p {
  max-width: 620px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.76);
}

.contact-panel {
  display: grid;
  gap: 12px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.contact-panel a,
.contact-panel span {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 800;
}

.contact-panel .contact-label {
  padding: 0;
  border-bottom: 0;
  font-weight: 800;
}

.contact-panel span {
  border-bottom: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 6vw, 86px);
  color: var(--muted);
  background: #ebe8df;
  font-size: 0.92rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  object-fit: cover;
}

.site-footer a {
  font-weight: 800;
  color: var(--teal-dark);
}

@media (max-width: 980px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .contact,
  .vision-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    width: min(100% - 24px, 1180px);
    margin-top: 12px;
    padding: 10px 12px;
  }

  .brand {
    max-width: calc(100vw - 92px);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border-radius: 16px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .hero {
    min-height: 88vh;
    padding: 116px 20px 56px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(11, 30, 28, 0.86), rgba(11, 30, 28, 0.56));
  }

  h1 {
    max-width: 10ch;
  }

  .intro-grid,
  .metrics,
  .service-grid,
  .vision-grid {
    grid-template-columns: 1fr;
  }

  .metrics div {
    min-height: 122px;
  }

  .process-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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