:root {
  --ink: #17211f;
  --muted: #5f6f6b;
  --paper: #fbfaf6;
  --panel: #ffffff;
  --line: #dfe7df;
  --teal: #0f8b8d;
  --teal-dark: #096064;
  --coral: #ef6f5e;
  --gold: #f2b84b;
  --green: #91c46c;
  --shadow: 0 20px 60px rgba(23, 33, 31, 0.12);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(23, 33, 31, 0.08);
  background: rgba(251, 250, 246, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.08rem;
}

.brand img {
  width: 34px;
  height: 34px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 10px 14px;
}

.site-nav a:hover {
  background: #edf6f1;
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.section-band {
  background:
    radial-gradient(circle at top left, rgba(15, 139, 141, 0.12), transparent 30%),
    linear-gradient(135deg, #fffdf7 0%, #eef8f3 50%, #fff7ef 100%);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: clamp(36px, 6vw, 80px);
  min-height: calc(100vh - 156px);
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 72px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: 4.35rem;
  line-height: 0.98;
}

h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 3.25rem;
  line-height: 1.06;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.2rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  padding: 12px 18px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: var(--teal-dark);
  color: white;
  box-shadow: 0 14px 30px rgba(9, 96, 100, 0.22);
}

.button.secondary {
  border-color: var(--line);
  background: var(--panel);
  color: var(--ink);
}

.hero-visual {
  border: 1px solid rgba(23, 33, 31, 0.08);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(20px, 5vw, 72px);
  background: var(--line);
}

.trust-strip div {
  min-height: 130px;
  background: var(--paper);
  padding: 28px;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 7px;
  font-size: 1.1rem;
}

.trust-strip span {
  color: var(--muted);
}

.content-section,
.work-section,
.contact-section {
  padding: clamp(64px, 9vw, 116px) clamp(20px, 5vw, 72px);
}

.section-heading {
  margin-bottom: 34px;
}

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

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

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

.service-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border-radius: 8px;
  background: #e9f5ef;
  color: var(--teal-dark);
  font-weight: 900;
  font-size: 0.82rem;
}

.service-card:nth-child(2) .service-icon {
  background: #fff1e8;
  color: #b84d3f;
}

.service-card:nth-child(3) .service-icon {
  background: #fff7d9;
  color: #8a650b;
}

.service-card:nth-child(4) .service-icon {
  background: #edf5e5;
  color: #48712d;
}

.service-card:nth-child(5) .service-icon {
  background: #e9f5ef;
  color: #096064;
}

.service-card:nth-child(6) .service-icon {
  background: #fff1e8;
  color: #b84d3f;
}

.work-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: start;
}

.work-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.outcome-list div {
  border-left: 5px solid var(--teal);
  background: rgba(255, 255, 255, 0.72);
  padding: 22px;
}

.outcome-list div:nth-child(2) {
  border-left-color: var(--coral);
}

.outcome-list div:nth-child(3) {
  border-left-color: var(--gold);
}

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

.outcome-list span {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.outcome-list strong {
  font-size: 1.1rem;
  line-height: 1.35;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  background: var(--panel);
}

.timeline div {
  min-height: 230px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.timeline div:last-child {
  border-right: 0;
}

.timeline span {
  display: inline-block;
  margin-bottom: 44px;
  color: var(--teal-dark);
  font-weight: 900;
}

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

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 520px);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
  background: var(--ink);
  color: white;
}

.contact-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.contact-section .eyebrow {
  color: #83d7c7;
}

.contact-form {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 38px clamp(20px, 5vw, 72px);
  background: #101816;
  color: white;
}

.site-footer p {
  max-width: 420px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-brand {
  margin-bottom: 12px;
}

.footer-links {
  display: grid;
  gap: 8px;
  align-content: start;
  text-align: right;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 960px) {
  .hero,
  .work-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 3.45rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .service-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline div:nth-child(2) {
    border-right: 0;
  }

  .timeline div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 20px;
    right: 20px;
    display: none;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: var(--shadow);
    padding: 10px;
  }

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

  .site-nav a {
    border-radius: 8px;
  }

  .trust-strip,
  .service-grid,
  .timeline,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    padding: 0;
  }

  .timeline div,
  .timeline div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline div:last-child {
    border-bottom: 0;
  }

  .footer-links {
    text-align: left;
  }

  .hero {
    gap: 26px;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .hero-visual img {
    max-height: 220px;
    width: 100%;
    object-fit: cover;
    object-position: top left;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .hero-text {
    font-size: 1.05rem;
  }
}

@media (max-width: 420px) {
  .hero-actions,
  .button {
    width: 100%;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.9rem;
  }
}
