:root {
  --coal: #1c1c1c;
  --coal-2: #120d0a;
  --steel: #3b332b;
  --ash: #f7f3ec;
  --paper: #fffdf8;
  --line: #e6dccb;
  --muted: #6e675e;
  --gold: #c9973a;
  --gold-2: #e5b86a;
  --red: #b01a2e;
  --red-dark: #7a1020;
  --green: #50633f;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(28, 18, 10, .16);
  --nav-h: 76px;
  --sans: "DM Sans", Arial, sans-serif;
  --serif: "Playfair Display", Georgia, serif;
  --ease: cubic-bezier(.22, .8, .28, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--coal);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, p { margin: 0; }

.wrap { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.wide { width: min(1520px, calc(100% - 48px)); margin: 0 auto; }
.page-main { background: var(--paper); }
.text-muted { color: var(--muted); }

.topbar {
  display: none;
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 34px;
  border-bottom: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.76);
  font-size: 12px;
  background: rgba(22,27,31,.74);
  backdrop-filter: blur(14px);
}
.topbar .wide { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar span { display: inline-flex; gap: 8px; align-items: center; }
.topbar span + span { margin-left: 22px; }

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 99;
  min-height: var(--nav-h);
  color: var(--white);
  background: linear-gradient(180deg, rgba(28,18,10,.82), rgba(28,18,10,0));
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-nav.is-stuck { box-shadow: 0 18px 36px rgba(0,0,0,.18); background: rgba(28,18,10,.98); }
.nav-row {
  min-height: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 26px;
}
.site-nav .brand { grid-column: 2; justify-self: center; }
.site-nav .nav-links { grid-column: 1; grid-row: 1; justify-self: start; }
.site-nav .nav-utility { grid-column: 3; grid-row: 1; justify-self: end; }
.brand { display: inline-flex; align-items: center; gap: 14px; min-width: 0; }
.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(241,184,15,.7);
}
.brand-mark { min-width: 0; }
.brand-name {
  display: block;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: .11em;
  line-height: 1;
}
.brand-name::after { content: "."; color: var(--gold); }
.brand-sub {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,.62);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid transparent;
  color: rgba(255,255,255,.8);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .18s ease, border-color .18s ease, background .18s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.04);
}
.nav-utility { display: flex; align-items: center; gap: 16px; }
.search-dot {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.72);
}
.search-dot { position: relative; }
.search-dot::before {
  content: "";
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 50%;
}
.search-dot::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  background: currentColor;
  transform: translate(8px, 8px) rotate(45deg);
  transform-origin: center;
}
.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.22);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  display: block;
  width: 19px;
  height: 2px;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}
.menu-btn span { position: relative; }
.menu-btn span::before,
.menu-btn span::after { content: ""; position: absolute; left: 0; }
.menu-btn span::before { top: -6px; }
.menu-btn span::after { top: 6px; }
.menu-btn.is-open span { background: transparent; }
.menu-btn.is-open span::before { transform: translateY(6px) rotate(45deg); }
.menu-btn.is-open span::after { transform: translateY(-6px) rotate(-45deg); }

.mobile-panel {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: none;
  overflow-y: auto;
  padding: 20px 24px 30px;
  background: rgba(28,18,10,.98);
  color: var(--white);
}
.mobile-panel.is-open { display: block; }
.mobile-panel a {
  display: block;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: 25px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.mobile-panel .mobile-cta {
  margin-top: 20px;
  border-bottom: 0;
  font-size: 11px;
  letter-spacing: .12em;
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--coal); }
.btn-primary:hover { background: var(--gold-2); }
.btn-dark { background: var(--coal); color: var(--white); }
.btn-outline { border-color: rgba(255,255,255,.45); color: var(--white); background: transparent; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-light { border-color: var(--line); color: var(--coal); background: var(--paper); }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--coal-2);
}
.hero-media,
.page-hero-media { position: absolute; inset: 0; }
.hero-media img,
.page-hero-media img,
.hero-media video,
.page-hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
}
.hero-media::after,
.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(22,12,7,.92), rgba(45,24,13,.56) 48%, rgba(122,16,32,.28)),
    linear-gradient(0deg, rgba(18,13,10,.9), transparent 44%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-h) + 70px) 0 70px;
}
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; justify-items: center; text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  font-style: italic;
}
.eyebrow::after {
  content: "";
  width: 74px;
  height: 1px;
  background: currentColor;
  opacity: .55;
}
.hero h1,
.page-hero h1 {
  max-width: 940px;
  font-size: clamp(3.2rem, 5.4vw, 6.1rem);
  line-height: .98;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}
.hero h1 strong,
.page-hero h1 strong { color: var(--gold); font-weight: 900; }
.hero-copy {
  margin-top: 22px;
  max-width: 530px;
  color: rgba(255,255,255,.74);
  font-size: 16px;
  line-height: 1.78;
}
.hero .hero-copy { margin-left: auto; margin-right: auto; }
.hero .eyebrow { justify-content: center; text-transform: uppercase; font-style: normal; letter-spacing: .08em; }
.hero .eyebrow::before,
.hero .eyebrow::after { content: ""; width: 42px; height: 1px; background: currentColor; opacity: .65; }
.hero-note { max-width: 480px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }
.hero-note {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(28,18,10,.58);
  backdrop-filter: blur(12px);
  padding: 28px;
}
.hero-note b {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero-note p { margin-top: 14px; color: rgba(255,255,255,.72); line-height: 1.75; font-size: 14px; }
.hero-nav-arrows {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  top: 50%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.hero-arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.35);
  color: rgba(255,255,255,.75);
  font-size: 22px;
}

.stat-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(255,255,255,.15);
  background: rgba(28,18,10,.88);
}
.stat {
  min-height: 112px;
  padding: 24px 28px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat:last-child { border-right: 0; }
.stat b { display: block; color: var(--gold); font-size: 30px; line-height: 1; font-weight: 900; }
.stat span { display: block; margin-top: 10px; color: rgba(255,255,255,.66); line-height: 1.45; font-size: 13px; }

.section { padding: 96px 0; }
.section.alt { background: var(--ash); }
.section.dark { background: var(--coal); color: var(--white); }
.section-head { max-width: 770px; margin-bottom: 42px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .eyebrow { justify-content: center; }
.section-title,
.split-title {
  color: var(--coal);
  font-size: clamp(2.15rem, 3.8vw, 4rem);
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.dark .section-title,
.dark .split-title { color: var(--white); }
.section-title strong,
.split-title strong { color: var(--red); font-weight: 900; }
.section-sub,
.split-copy {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 15px;
}
.dark .section-sub,
.dark .split-copy { color: rgba(255,255,255,.66); }

.split {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 68px;
  align-items: center;
}
.split.reverse { grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); }
.image-panel {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: var(--coal);
}
.image-panel.small { min-height: 430px; }
.image-panel img,
.image-panel video { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.24);
  pointer-events: none;
}
.caption-card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  padding: 22px;
  background: rgba(28,18,10,.86);
  color: var(--white);
  backdrop-filter: blur(10px);
}
.caption-card b { display: block; color: var(--gold); letter-spacing: .14em; text-transform: uppercase; font-size: 11px; }
.caption-card span { display: block; margin-top: 8px; color: rgba(255,255,255,.7); line-height: 1.6; font-size: 13px; }

.service-layout {
  display: grid;
  grid-template-columns: minmax(360px, .48fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}
.service-layout > .section-head {
  max-width: 420px;
  min-width: 0;
}
.service-layout .section-title {
  font-size: clamp(2.55rem, 4vw, 3.6rem);
  line-height: 1.2;
  letter-spacing: .09em;
}
.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.service-card {
  min-height: 156px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(201,151,58,.8); box-shadow: 0 18px 40px rgba(28,18,10,.08); }
.service-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--gold-2);
  border: 1px solid rgba(201,151,58,.42);
  font-weight: 900;
}
.service-card h3 {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.service-card p { margin-top: 10px; color: var(--muted); line-height: 1.65; font-size: 14px; }

.project-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.project-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  background: var(--coal);
  color: var(--white);
}
.project-card img,
.project-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
  transition: transform .5s var(--ease), opacity .25s ease;
}
.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18,13,10,.86), rgba(122,16,32,.12));
}
.project-card:hover img,
.project-card:hover video { transform: scale(1.045); opacity: .9; }
.project-label {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 22px;
}
.project-label span { color: var(--gold); font-size: 11px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.project-label h3 { margin-top: 8px; font-size: 18px; letter-spacing: .1em; text-transform: uppercase; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--paper);
}
.process-step {
  padding: 32px;
  border-right: 1px solid var(--line);
}
.process-step:last-child { border-right: 0; }
.process-step b { display: block; color: var(--red); font-size: 34px; line-height: 1; }
.process-step h3 {
  margin-top: 22px;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.process-step p { margin-top: 12px; color: var(--muted); line-height: 1.68; font-size: 14px; }

.trust-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: var(--coal);
  color: var(--white);
}
.trust-copy {
  padding: 86px max(24px, calc((100vw - 1180px) / 2)) 86px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.trust-copy .section-title { color: var(--white); }
.trust-copy .section-sub { color: rgba(255,255,255,.7); }
.trust-logos {
  padding: 86px 48px 86px max(24px, calc((100vw - 1180px) / 2));
  background: var(--ash);
  color: var(--coal);
}
.trust-mark-grid { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--line); }
.trust-mark {
  min-height: 128px;
  display: grid;
  place-items: center;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.trust-mark:nth-child(2n) { border-right: 0; }
.trust-mark:nth-last-child(-n+2) { border-bottom: 0; }
.fit-panel {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}
.fit-metric {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 22px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.12);
}
.fit-metric:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.fit-metric b {
  color: var(--gold-2);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.fit-metric span {
  color: rgba(255,255,255,.82);
  line-height: 1.6;
  font-size: 14px;
}
.fit-cta { margin-top: 28px; }

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

.page-hero {
  position: relative;
  min-height: 58svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--coal-2);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-h) + 86px) 0 78px;
}
.page-hero.image-only {
  min-height: 62svh;
  align-items: stretch;
}
.page-hero.image-only .page-hero-media::after {
  background:
    linear-gradient(90deg, rgba(18,13,10,.28), rgba(18,13,10,.08) 56%, rgba(18,13,10,.22)),
    linear-gradient(0deg, rgba(18,13,10,.3), transparent 52%);
}
.breadcrumb {
  margin-top: 22px;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.breadcrumb a { color: var(--gold); }

.product-feature {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
  gap: 44px;
  align-items: stretch;
  margin-bottom: 28px;
}
.product-feature:nth-child(even) { grid-template-columns: minmax(0, 1fr) minmax(0, .9fr); }
.product-feature:nth-child(even) .image-panel { order: 2; }
.product-copy {
  padding: 46px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.tag-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.tag {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 8px 12px;
  background: rgba(241,184,15,.12);
  color: var(--coal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.team-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.team-card {
  display: grid;
  grid-template-columns: 138px 1fr;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.avatar {
  width: 138px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--coal), var(--red));
  color: var(--gold);
  font-size: 35px;
  font-weight: 900;
  letter-spacing: .08em;
}
.role { color: var(--gold-2); font-size: 11px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.team-card h3 { margin-top: 10px; font-size: 22px; line-height: 1.18; }
.team-card p { margin-top: 12px; color: var(--muted); line-height: 1.66; font-size: 14px; }

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.story-card {
  display: grid;
  min-height: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.story-card:hover { transform: translateY(-4px); box-shadow: 0 18px 42px rgba(13,17,20,.08); }
.story-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--coal);
}
.story-img img,
.story-img video { width: 100%; height: 100%; object-fit: cover; opacity: .9; transition: transform .45s var(--ease); }
.story-card:hover .story-img img { transform: scale(1.04); }
.story-body { padding: 26px; }
.story-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.story-card h3 {
  margin-top: 14px;
  font-size: 23px;
  line-height: 1.18;
}
.story-card p { margin-top: 12px; color: var(--muted); line-height: 1.68; font-size: 14px; }
.story-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--coal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.insight-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--paper);
}
.insight {
  padding: 28px;
  border-right: 1px solid var(--line);
}
.insight:last-child { border-right: 0; }
.insight b { display: block; color: var(--red); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.insight span { display: block; margin-top: 10px; color: var(--muted); line-height: 1.65; }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 48px;
  align-items: start;
}
.contact-list { display: grid; gap: 14px; margin-top: 30px; }
.contact-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.contact-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--coal);
  color: var(--gold);
  font-weight: 900;
}
.contact-item b { display: block; letter-spacing: .08em; text-transform: uppercase; font-size: 12px; }
.contact-item span { display: block; margin-top: 6px; color: var(--muted); line-height: 1.55; word-break: break-word; }
.contact-link {
  color: inherit;
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.contact-link:hover {
  border-color: rgba(37,211,102,.55);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(28,18,10,.08);
}
.contact-link .contact-icon {
  background: #25d366;
  color: var(--coal);
  font-size: 12px;
}
.form-panel {
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--coal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  background: var(--ash);
  color: var(--coal);
  padding: 12px 14px;
  outline: none;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--gold-2); box-shadow: 0 0 0 4px rgba(201,151,58,.16); }
.form-success {
  display: none;
  padding: 24px;
  background: rgba(64,95,74,.12);
  color: var(--green);
  line-height: 1.65;
}

.cta-panel {
  padding: 86px 0;
  text-align: center;
  background: var(--paper);
}
.cta-panel .section-title { max-width: 920px; margin: 0 auto; }
.cta-panel p { max-width: 640px; margin: 18px auto 0; color: var(--muted); line-height: 1.75; }
.cta-panel .btn { margin-top: 30px; }

.footer {
  background: var(--coal);
  color: rgba(255,255,255,.76);
  padding: 70px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .85fr 1fr 1.1fr;
  gap: 46px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer .brand { margin-bottom: 20px; }
.footer p { color: rgba(255,255,255,.54); line-height: 1.72; font-size: 14px; }
.footer h3 {
  margin: 0 0 18px;
  color: rgba(255,255,255,.8);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.footer-links { display: grid; gap: 11px; }
.footer-links a { color: rgba(255,255,255,.52); font-size: 14px; }
.footer-links a:hover { color: var(--gold); }
.socials { display: flex; gap: 9px; flex-wrap: wrap; margin-top: 22px; }
.socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 24px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.38); }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.hero .eyebrow,
.hero h1,
.hero-copy,
.hero-actions,
.hero-note {
  animation: softIn .8s var(--ease) both;
}
.hero h1 { animation-delay: .08s; }
.hero-copy { animation-delay: .16s; }
.hero-actions { animation-delay: .24s; }
.hero-note { animation-delay: .28s; }
@keyframes softIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

.btt {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(241,184,15,.52);
  background: var(--coal);
  color: var(--gold);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease;
  cursor: pointer;
}
.btt.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.whatsapp-float {
  position: fixed;
  right: 34px;
  bottom: 68px;
  z-index: 80;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 14px 26px rgba(37,211,102,.34);
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float span {
  width: 28px;
  height: 28px;
  overflow: hidden;
  color: transparent;
  font-size: 0;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23fff' d='M16.03 4.8c-6.06 0-10.99 4.9-10.99 10.94 0 1.92.51 3.8 1.48 5.45L4.8 27.2l6.18-1.62a11.02 11.02 0 0 0 5.05 1.22c6.06 0 10.99-4.9 10.99-10.94S22.09 4.8 16.03 4.8Zm0 20.13c-1.65 0-3.26-.44-4.67-1.27l-.33-.2-3.67.96.98-3.56-.22-.36a9.03 9.03 0 0 1-1.38-4.76c0-5 4.18-9.07 9.3-9.07s9.3 4.07 9.3 9.07-4.18 9.19-9.3 9.19Zm5.1-6.8c-.28-.14-1.66-.81-1.91-.9-.26-.1-.44-.14-.63.14-.18.27-.72.9-.88 1.08-.16.18-.32.2-.6.07-.28-.14-1.17-.43-2.23-1.38-.82-.73-1.38-1.64-1.54-1.91-.16-.28-.02-.43.12-.57.13-.12.28-.32.42-.48.14-.16.18-.28.28-.46.09-.18.04-.34-.02-.48-.07-.14-.63-1.5-.86-2.05-.23-.55-.46-.47-.63-.48h-.54c-.18 0-.48.07-.73.34-.26.28-.96.94-.96 2.28s.98 2.64 1.12 2.82c.14.18 1.93 2.94 4.69 4.12.65.28 1.16.45 1.56.58.66.2 1.25.17 1.72.1.52-.08 1.66-.68 1.9-1.34.23-.66.23-1.22.16-1.34-.07-.12-.26-.18-.54-.32Z'/%3E%3C/svg%3E");
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(37,211,102,.42);
}

@media (max-width: 1120px) {
  .topbar { display: none; }
  .site-nav { inset: 0 0 auto; }
  .mobile-panel { top: var(--nav-h); }
  .nav-links, .nav-utility .desktop-cta, .search-dot { display: none; }
  .menu-btn { display: inline-flex; }
  .nav-row { display: flex; justify-content: space-between; }
  .site-nav .brand,
  .site-nav .nav-links,
  .site-nav .nav-utility { grid-column: auto; grid-row: auto; justify-self: auto; }
  .hero-content,
  .page-hero-content { padding-top: calc(var(--nav-h) + 70px); }
  .hero-grid,
  .split,
  .split.reverse,
  .service-layout,
  .trust-band,
  .contact-layout { grid-template-columns: 1fr; }
  .trust-copy,
  .trust-logos { padding: 72px 24px; }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid,
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2),
  .process-step:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2),
  .process-step:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .process-step:nth-child(-n+2) { border-bottom-color: var(--line); }
  .product-feature,
  .product-feature:nth-child(even) { grid-template-columns: 1fr; }
  .product-feature:nth-child(even) .image-panel { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .story-grid,
  .insight-strip { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  :root { --nav-h: 70px; }
  .wrap, .wide { width: min(100% - 32px, 1180px); }
  .brand img { width: 40px; height: 40px; }
  .brand-name { font-size: 18px; }
  .brand-sub { font-size: 8px; }
  .hero { min-height: 92svh; }
  .hero-content { padding: calc(var(--nav-h) + 52px) 0 44px; }
  .hero h1,
  .page-hero h1 { font-size: clamp(2.28rem, 11.5vw, 4rem); letter-spacing: .08em; }
  .section-title,
  .split-title { font-size: clamp(2rem, 9vw, 3rem); letter-spacing: .08em; }
  .hero-actions,
  .btn { width: 100%; }
  .hero-nav-arrows { display: none; }
  .hero-note { padding: 22px; }
  .section { padding: 72px 0; }
  .service-grid,
  .project-grid,
  .process-grid,
  .stat-row,
  .team-grid,
  .story-grid,
  .insight-strip,
  .form-grid { grid-template-columns: 1fr; }
  .service-card { grid-template-columns: 1fr; padding: 26px; }
  .project-card { min-height: 280px; }
  .process-step,
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat { border-bottom-color: rgba(255,255,255,.1); }
  .process-step:last-child,
  .stat:last-child { border-bottom: 0; }
  .image-panel { min-height: 390px; }
  .caption-card { left: 18px; right: 18px; bottom: 18px; }
  .product-copy,
  .form-panel { padding: 26px; }
  .team-card { grid-template-columns: 1fr; }
  .avatar { width: 118px; }
  .trust-mark-grid { grid-template-columns: 1fr; }
  .fit-metric { grid-template-columns: 1fr; gap: 8px; }
  .trust-mark,
  .trust-mark:nth-child(2n),
  .trust-mark:nth-last-child(-n+2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-mark:last-child { border-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .insight { border-right: 0; border-bottom: 1px solid var(--line); }
  .insight:last-child { border-bottom: 0; }
  .footer-bottom { display: block; }
  .footer-bottom p + p { margin-top: 10px; }
}
