:root {
  --bg: #f4efe6;
  --bg-soft: #fbf8f3;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --ink: #13202a;
  --muted: #5f6d76;
  --line: rgba(19, 32, 42, 0.12);
  --brand: #0f766e;
  --brand-dark: #0b4f4a;
  --brand-soft: rgba(15, 118, 110, 0.14);
  --accent: #f2a93b;
  --accent-soft: rgba(242, 169, 59, 0.16);
  --shadow: 0 24px 60px rgba(13, 25, 34, 0.12);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(242, 169, 59, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.18), transparent 26%),
    linear-gradient(180deg, #faf6ef 0%, #f2ece2 100%);
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(12px);
}

.topbar-inner,
.nav-wrap,
.topbar-links,
.hero-actions,
.cta-actions,
.footer-grid,
.footer-bottom,
.form-row,
.contact-methods,
.page-links {
  display: flex;
  align-items: center;
}

.topbar-inner,
.nav-wrap,
.footer-bottom {
  justify-content: space-between;
}

.topbar-inner {
  min-height: 48px;
  gap: 1rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.topbar-links {
  gap: 1rem;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 246, 239, 0.8);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(19, 32, 42, 0.08);
}

.nav-wrap {
  min-height: 82px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.32rem;
  font-weight: 700;
}

.brand-mark {
  width: 2.45rem;
  height: 2.45rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  font-weight: 700;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  position: relative;
  color: var(--ink);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.nav-current::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 0.65rem 1rem;
}

.hero,
.page-hero {
  padding: 4.8rem 0 3rem;
}

.hero-grid,
.page-hero-grid,
.split-layout,
.services-grid,
.industries-grid,
.process-grid,
.stats-grid,
.insight-grid,
.contact-grid,
.jobs-grid {
  display: grid;
  gap: 1.6rem;
}

.hero-grid,
.page-hero-grid,
.contact-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 2rem;
}

.split-layout {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--brand-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  font-size: clamp(2.9rem, 6vw, 5.5rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 14ch;
}

.page-title {
  max-width: 13ch;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
}

.hero-text,
.page-intro,
.section-copy,
.site-footer p,
.service-card p,
.industry-card p,
.process-card p,
.job-card p,
.insight-card p,
.contact-card p,
.form-note,
label {
  color: var(--muted);
}

.hero-text,
.page-intro {
  max-width: 60ch;
  margin-top: 1.15rem;
  font-size: 1.08rem;
}

.hero-actions,
.cta-actions,
.form-row,
.contact-methods,
.page-links {
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  box-shadow: var(--shadow);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.76);
  border-color: var(--line);
}

.button-ghost {
  background: transparent;
  border-color: var(--line);
}

.hero-panel,
.stat-card,
.service-card,
.industry-card,
.process-card,
.insight-card,
.contact-card,
.form-card,
.cta-box,
.job-card,
.page-links a {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-panel,
.form-card,
.cta-box {
  border-radius: var(--radius);
}

.hero-panel {
  padding: 2rem;
}

.service-snippet + .service-snippet,
.contact-method + .contact-method {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.card-label {
  margin: 0 0 1.2rem;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.stats {
  padding-bottom: 1rem;
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
}

.stat-card,
.service-card,
.industry-card,
.process-card,
.insight-card,
.job-card {
  padding: 1.6rem;
  border-radius: var(--radius-sm);
}

.stat-card strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.5rem;
  font-family: Georgia, "Times New Roman", serif;
}

.section {
  padding: 4.8rem 0;
}

.section-accent {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.16));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.services-grid,
.industries-grid,
.jobs-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.service-icon,
.industry-icon,
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 700;
  margin-bottom: 1rem;
}

.industry-icon {
  background: var(--accent-soft);
  color: #9c6200;
}

.page-links a {
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.check-list,
.bullet-list {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.bullet-list li {
  position: relative;
  padding-left: 1.7rem;
}

.check-list li + li,
.bullet-list li + li {
  margin-top: 0.75rem;
}

.check-list li::before,
.bullet-list li::before {
  position: absolute;
  left: 0;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  color: var(--brand);
}

.bullet-list li::before {
  content: "•";
  color: var(--accent);
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
}

.form-card,
.contact-card {
  padding: 2rem;
}

.contact-card {
  border-radius: var(--radius);
}

.contact-methods {
  align-items: stretch;
}

.contact-method {
  flex: 1 1 180px;
}

.field-group {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.field-group textarea {
  min-height: 160px;
  resize: vertical;
}

.site-footer {
  padding: 3rem 0 2rem;
}

.footer-grid {
  align-items: start;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.footer-grid > div {
  display: grid;
  gap: 0.45rem;
}

.brand-footer {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  min-height: 64px;
}

.hero-copy,
.hero-panel,
.stat-card,
.service-card,
.industry-card,
.process-card,
.insight-card,
.job-card,
.form-card,
.contact-card,
.cta-box {
  animation: rise 700ms ease both;
}

.service-card:nth-child(2),
.industry-card:nth-child(2),
.process-card:nth-child(2),
.job-card:nth-child(2),
.insight-card:nth-child(2) {
  animation-delay: 80ms;
}

.service-card:nth-child(3),
.industry-card:nth-child(3),
.process-card:nth-child(3),
.job-card:nth-child(3) {
  animation-delay: 140ms;
}

.service-card:nth-child(4),
.industry-card:nth-child(4),
.process-card:nth-child(4) {
  animation-delay: 200ms;
}

@media (max-width: 1080px) {
  .hero-grid,
  .page-hero-grid,
  .split-layout,
  .contact-grid,
  .services-grid,
  .industries-grid,
  .jobs-grid,
  .process-grid,
  .stats-grid,
  .insight-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid,
  .page-hero-grid,
  .split-layout,
  .contact-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .cta-box,
  .footer-grid,
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .topbar {
    display: none;
  }

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

  .nav-wrap {
    flex-wrap: wrap;
    padding: 1rem 0;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    padding-top: 0.6rem;
  }

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

  .services-grid,
  .industries-grid,
  .jobs-grid,
  .process-grid,
  .stats-grid,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .page-hero {
    padding-top: 3.7rem;
  }

  h1,
  .page-title {
    max-width: 12ch;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
