:root {
  --teal: #0a8f8b;
  --teal-dark: #067774;
  --orange: #f48a1f;
  --orange-dark: #d96f10;
  --ink: #1d1f24;
  --muted: #505562;
  --bg: #f6f5f1;
  --card: #ffffff;
  --shadow: 0 25px 60px rgba(6, 30, 31, 0.15);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Karla", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 10%, #e1f5f4 0, transparent 45%),
    radial-gradient(circle at 90% 20%, #fff3e6 0, transparent 40%),
    var(--bg);
  line-height: 1.6;
}

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

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

.page {
  overflow: hidden;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 245, 241, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(10, 143, 139, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 140px;
  height: auto;
  display: block;
}

.brand-mark img {
  width: 100%;
  height: auto;
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 600;
  font-size: 0.95rem;
}

.site-nav a {
  padding: 8px 0;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width 0.3s ease;
}

.site-nav a:hover::after,
.site-nav a:focus::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 18px;
  background: var(--teal);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 12px 20px rgba(10, 143, 139, 0.25);
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(10, 143, 139, 0.4);
  background: transparent;
  color: var(--teal-dark);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
}

.hero {
  position: relative;
  padding: 80px 0 40px;
}

.hero-sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 143, 139, 0.12), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-family: "Sora", "Karla", sans-serif;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  margin: 0 0 8px;
}

.hero-text .trade {
  font-size: 0.6em;
  color: var(--orange);
  vertical-align: top;
}

.tagline {
  font-size: 1.2rem;
  color: var(--orange);
  font-weight: 600;
  margin: 0 0 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--teal-dark);
  font-weight: 700;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 24px 0 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.btn.primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff;
  box-shadow: 0 18px 30px rgba(10, 143, 139, 0.3);
}

.btn.ghost {
  background: transparent;
  color: var(--teal-dark);
  border: 2px solid rgba(10, 143, 139, 0.3);
}

.hero-metrics {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.metric {
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(10, 143, 139, 0.1);
}

.metric-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal-dark);
}

.metric-label {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.hero-card {
  background: #fff;
  padding: 22px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card h3 {
  margin-top: 0;
  color: var(--teal-dark);
  font-family: "Sora", "Karla", sans-serif;
}

.hero-card--logo {
  display: grid;
  gap: 12px;
  align-items: center;
  text-align: center;
  background: linear-gradient(130deg, #ffffff 0%, #e7f7f6 100%);
  border: 1px solid rgba(10, 143, 139, 0.15);
}

.hero-logo {
  width: min(360px, 100%);
  margin: 0 auto;
}

.hero-card-label {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin: 0 0 10px;
}

.hero-card-tagline {
  color: var(--orange);
  font-weight: 700;
  margin: 6px 0 10px;
}

.hero-card-meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.hero-card--services ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.hero-card--services li {
  margin-bottom: 6px;
}

.hero-card--quote {
  background: linear-gradient(130deg, var(--teal-dark), var(--teal));
  color: #fff;
}

.hero-card--quote p {
  font-size: 1.05rem;
  font-weight: 600;
}

.hero-card--quote span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.section {
  padding: 70px 0;
  scroll-margin-top: 90px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  margin-bottom: 36px;
}

.section-header.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-header h2 {
  font-family: "Sora", "Karla", sans-serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 8px 0 0;
}

.section-lead {
  max-width: 520px;
  color: var(--muted);
}

.intro-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.intro-card {
  background: var(--card);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(10, 143, 139, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 45px rgba(10, 143, 139, 0.12);
}

.intro-card.accent {
  border: 2px solid rgba(244, 138, 31, 0.2);
  background: linear-gradient(120deg, #fff, #fff7ec);
}

.callout {
  margin-top: 16px;
  padding: 14px 18px;
  border-left: 4px solid var(--orange);
  background: rgba(244, 138, 31, 0.08);
  font-weight: 600;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  color: var(--muted);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}

.services {
  background: #fff;
}

.service-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.service-card {
  padding: 24px;
  border-radius: 18px;
  background: #fdfdfd;
  box-shadow: 0 12px 30px rgba(10, 143, 139, 0.08);
  border: 1px solid rgba(10, 143, 139, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(10, 143, 139, 0.12);
}

.service-card h3 {
  margin-top: 0;
  color: var(--teal-dark);
  font-family: "Sora", "Karla", sans-serif;
}

.process-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.process-step {
  padding: 24px;
  border-radius: 18px;
  background: linear-gradient(140deg, #fff, #f1fbfb);
  border: 1px solid rgba(10, 143, 139, 0.08);
}

.process-step span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
}

.impact {
  background: linear-gradient(130deg, rgba(10, 143, 139, 0.08), rgba(244, 138, 31, 0.08));
}

.impact-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.impact-text h2 {
  font-family: "Sora", "Karla", sans-serif;
  margin-top: 8px;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.stat-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 25px rgba(10, 143, 139, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(10, 143, 139, 0.18);
}

.stat-number {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--teal-dark);
}

.stat-label {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.impact-visual img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.impact-visual {
  display: grid;
  gap: 18px;
}

.team-figure {
  margin: 0;
  background: #fff;
  padding: 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.team-figure img {
  width: 100%;
  border-radius: 18px;
}

.team-figure figcaption {
  margin-top: 14px;
  font-weight: 700;
  color: var(--orange-dark);
  letter-spacing: 1px;
}

.team {
  background: #fff;
}

.team-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.team-card {
  background: #fdfdfd;
  padding: 26px;
  border-radius: 18px;
  border: 1px solid rgba(10, 143, 139, 0.1);
  box-shadow: 0 12px 26px rgba(10, 143, 139, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(10, 143, 139, 0.12);
}

.team-card h3 {
  margin-top: 0;
  color: var(--teal-dark);
  font-family: "Sora", "Karla", sans-serif;
}

.team-card ul {
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.role {
  color: var(--orange-dark);
  font-weight: 600;
}

.contact {
  background: linear-gradient(120deg, #fef9f2, #eaf7f6);
}

.contact-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
}

.contact-details {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.contact-details span {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
}

.contact-details strong {
  display: block;
}

.contact-form {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: var(--teal-dark);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(10, 143, 139, 0.2);
  padding: 10px 12px;
  font-family: inherit;
}

.site-footer {
  background: #0a1818;
  color: #e7f5f4;
  padding: 50px 0 24px;
}

.footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer-title {
  font-weight: 700;
  margin-bottom: 8px;
}

.site-footer a {
  display: block;
  color: #e7f5f4;
  margin-bottom: 6px;
}

.footer-address {
  display: block;
  margin-top: 12px;
  color: rgba(231, 245, 244, 0.7);
  font-size: 0.85rem;
  line-height: 1.4;
}

.footer-bottom {
  text-align: center;
  margin-top: 28px;
  color: rgba(231, 245, 244, 0.7);
  font-size: 0.85rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}

@media (max-width: 960px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    right: 4vw;
    top: 70px;
    padding: 16px;
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

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

  .nav-toggle {
    display: inline-flex;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 40px;
  }

  .brand-mark {
    width: 110px;
  }

  .hero-logo {
    width: min(260px, 100%);
  }
}
