:root {
  color-scheme: light;
  --ink: #131820;
  --muted: #66717f;
  --line: #dfe5ea;
  --paper: #f5f7f8;
  --surface: #ffffff;
  --accent: #0f766e;
  --accent-dark: #083f3a;
  --gold: #c89a4b;
  --gold-light: #f7dca8;
  --logo-brown: #29170f;
  --night: #10161c;
  --night-2: #1c211f;
  --shadow: 0 18px 50px rgba(23, 32, 41, 0.12);
  --shadow-strong: 0 30px 90px rgba(16, 22, 28, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 8%, rgba(15, 118, 110, 0.16), transparent 26%),
    radial-gradient(circle at 86% 16%, rgba(200, 154, 75, 0.18), transparent 24%),
    linear-gradient(180deg, #f8fafb 0%, #eef3f4 52%, #f8fafb 100%);
  content: "";
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(223, 229, 234, 0.8);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand-logo {
  width: 54px;
  height: 40px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(42, 23, 16, 0.22);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--accent-dark);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(64px, 10vw, 118px) clamp(20px, 5vw, 72px);
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(16, 22, 28, 0.96), rgba(28, 33, 31, 0.9)),
    var(--night);
  color: #ffffff;
}

.hero::after {
  position: absolute;
  inset: auto -12% -34% 24%;
  height: 420px;
  background:
    linear-gradient(90deg, transparent, rgba(200, 154, 75, 0.32), transparent);
  transform: rotate(-10deg);
  content: "";
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-showcase {
  position: relative;
  z-index: 1;
}

.hero-logo {
  display: block;
  width: min(520px, 78vw);
  height: auto;
  margin: 0 0 22px;
  border-radius: 8px;
  border: 1px solid rgba(247, 220, 168, 0.22);
  box-shadow: var(--shadow-strong);
}

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

.hero .eyebrow {
  color: var(--gold-light);
}

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

h1 {
  max-width: 10ch;
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 8.5vw, 7.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.25;
}

.hero-text {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.12rem, 2vw, 1.36rem);
}

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

.button,
.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.button {
  padding: 12px 18px;
  border: 1px solid currentColor;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button.primary {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--night);
  box-shadow: 0 18px 40px rgba(200, 154, 75, 0.26);
}

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

.button:hover,
.button:focus,
.contact-link:hover,
.contact-link:focus {
  transform: translateY(-1px);
}

.hero-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  overflow: hidden;
  border: 1px solid rgba(247, 220, 168, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(12px);
}

.hero-panel > div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.panel-label {
  display: block;
  margin-bottom: 6px;
  color: rgba(247, 220, 168, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel strong {
  color: #ffffff;
}

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

.proof-strip div {
  display: grid;
  gap: 4px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
}

.proof-strip strong {
  font-size: 1rem;
}

.proof-strip span {
  color: var(--muted);
  font-size: 0.94rem;
}

.section,
.contact-section {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 28px;
}

.section-heading p {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.card {
  position: relative;
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86)),
    var(--surface);
  box-shadow: 0 18px 44px rgba(23, 32, 41, 0.08);
  overflow: hidden;
}

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

.card-number {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--gold);
  font-weight: 900;
}

.card p,
.work-copy,
.contact-section p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.72);
  border-block: 1px solid var(--line);
}

.process-section {
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.1), rgba(200, 154, 75, 0.12)),
    rgba(255, 255, 255, 0.72);
}

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

.process-list article {
  min-height: 180px;
  padding: 26px;
  border: 1px solid rgba(19, 24, 32, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.process-list span {
  display: block;
  margin-bottom: 26px;
  color: var(--accent-dark);
  font-size: 1.35rem;
  font-weight: 900;
}

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

.company-section {
  background: rgba(255, 255, 255, 0.92);
}

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

.company-list div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(23, 32, 41, 0.06);
}

.company-list dt {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.company-list dd {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 800;
}

.company-list a {
  color: var(--accent-dark);
}

.work-copy {
  max-width: 680px;
  font-size: 1.06rem;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--ink);
  font-weight: 700;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 22px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "/";
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(16, 22, 28, 0.97), rgba(8, 63, 58, 0.86)),
    var(--night);
  color: #ffffff;
}

.contact-link {
  padding: 14px 18px;
  background: var(--gold);
  color: var(--night);
  overflow-wrap: anywhere;
  box-shadow: 0 18px 40px rgba(200, 154, 75, 0.22);
}

.contact-section .eyebrow {
  color: var(--gold-light);
}

.contact-section p {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 24px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 700;
}

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

  .site-nav {
    justify-content: flex-start;
  }

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

  .hero {
    min-height: auto;
  }

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

  .proof-strip,
  .process-list,
  .company-list {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .contact-link {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .brand {
    white-space: normal;
  }

  .site-nav {
    gap: 12px;
  }

  h1 {
    font-size: 3rem;
  }

  .button {
    width: 100%;
  }
}
