:root {
  --ink: #160b0b;
  --muted: #654545;
  --line: #f0c457;
  --paper: #fff5df;
  --surface: #ffffff;
  --red: #de2910;
  --red-dark: #94070b;
  --red-deep: #5e0608;
  --gold: #ffde00;
  --gold-deep: #f2b705;
  --charcoal: #1e0909;
  --shadow: 0 24px 70px rgba(94, 6, 8, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 222, 0, 0.16), rgba(255, 245, 223, 0) 340px),
    var(--paper);
  line-height: 1.55;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(148, 7, 11, 0.94);
  border-bottom: 1px solid rgba(255, 222, 0, 0.55);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

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

.site-nav a,
.nav-menu summary {
  position: relative;
  padding: 10px 0;
  cursor: pointer;
  list-style: none;
}

.nav-menu {
  position: relative;
}

.nav-menu summary::-webkit-details-marker {
  display: none;
}

.nav-menu summary::after {
  content: "v";
  display: inline-block;
  margin-left: 6px;
  color: var(--gold);
  font-size: 0.72rem;
  transform: translateY(-1px);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 230px;
  padding: 10px;
  transform: translateX(-50%);
  background: #fff8e8;
  border: 1px solid rgba(255, 222, 0, 0.62);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(94, 6, 8, 0.22);
}

.nav-dropdown a {
  padding: 10px 12px;
  color: var(--red-deep);
  border-radius: 6px;
  white-space: nowrap;
}

.nav-dropdown a:hover {
  background: rgba(255, 222, 0, 0.2);
}

.site-nav > a::after,
.nav-menu summary::before {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform 180ms ease;
}

.site-nav > a:hover::after,
.nav-menu summary:hover::before {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 222, 0, 0.5);
  border-radius: 8px;
  background: rgba(255, 222, 0, 0.12);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 136px clamp(20px, 5vw, 72px) 64px;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(94, 6, 8, 0.96) 0%, rgba(94, 6, 8, 0.82) 35%, rgba(94, 6, 8, 0.26) 76%),
    linear-gradient(0deg, rgba(20, 6, 6, 0.68), rgba(255, 222, 0, 0.08)),
    radial-gradient(circle at 18% 22%, rgba(255, 222, 0, 0.2), transparent 26%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 740px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.9rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

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

.hero-content p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.06rem, 1.6vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  padding: 9px 12px;
  color: #fff8df;
  background: rgba(255, 222, 0, 0.16);
  border: 1px solid rgba(255, 222, 0, 0.38);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.button-primary {
  color: var(--red-deep);
  background: var(--gold);
  box-shadow: 0 12px 26px rgba(255, 222, 0, 0.24);
}

.button-primary:hover {
  background: #ffe957;
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 222, 0, 0.72);
  background: rgba(222, 41, 16, 0.24);
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  border-block: 1px solid rgba(255, 222, 0, 0.58);
  background: var(--red);
}

.trust-bar span {
  min-height: 82px;
  display: grid;
  place-items: center;
  padding: 16px;
  color: #fff8df;
  border-right: 1px solid rgba(255, 222, 0, 0.42);
  font-weight: 800;
  text-align: center;
}

.trust-bar span:last-child {
  border-right: 0;
}

.subhero {
  padding: 150px clamp(20px, 5vw, 72px) 78px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(94, 6, 8, 0.96), rgba(222, 41, 16, 0.9)),
    var(--red);
}

.subhero h1 {
  max-width: 980px;
  font-size: clamp(2.6rem, 6vw, 5.8rem);
}

.subhero p:not(.eyebrow) {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 1.5vw, 1.24rem);
}

.section {
  padding: clamp(72px, 9vw, 130px) clamp(20px, 5vw, 72px);
  scroll-margin-top: 78px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1fr);
  gap: clamp(32px, 7vw, 100px);
  background:
    linear-gradient(135deg, rgba(255, 222, 0, 0.16), rgba(255, 245, 223, 0) 42%),
    var(--paper);
}

.section-copy {
  color: var(--muted);
  font-size: clamp(1.04rem, 1.3vw, 1.18rem);
}

.section-copy p:last-child,
.contact-panel p:last-child {
  margin-bottom: 0;
}

.proof-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  background:
    linear-gradient(135deg, rgba(255, 222, 0, 0.22), rgba(255, 245, 223, 0) 48%),
    #fff8e8;
  border-block: 1px solid rgba(222, 41, 16, 0.14);
}

.proof-intro p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.proof-grid article {
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(222, 41, 16, 0.16);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(94, 6, 8, 0.08);
}

.proof-grid span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  color: var(--red-deep);
  background: var(--gold);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
}

.proof-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.language-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.language-list li {
  padding: 7px 10px;
  color: var(--red-deep);
  background: #fff8e8;
  border: 1px solid rgba(222, 41, 16, 0.16);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 900;
}

.services {
  background:
    linear-gradient(160deg, rgba(148, 7, 11, 0.98), rgba(222, 41, 16, 0.95));
  color: #fff;
}

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

.services .service-icon {
  color: var(--red-deep);
  background: var(--gold);
}

.services .section-heading h2 {
  color: #fff;
}

.services .service-card h3 {
  color: var(--ink);
}

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

.home-directory {
  background:
    linear-gradient(180deg, rgba(255, 245, 223, 0), rgba(255, 222, 0, 0.16)),
    var(--surface);
}

.home-directory .section-heading p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.route-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(222, 41, 16, 0.16);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(94, 6, 8, 0.1);
}

.route-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(94, 6, 8, 0.14);
}

.route-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: var(--red-deep);
  background: var(--gold);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 900;
}

.route-card p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.service-card,
.process-list article {
  padding: 28px;
  border: 1px solid rgba(255, 222, 0, 0.44);
  border-radius: 8px;
  background: rgba(255, 250, 236, 0.96);
  box-shadow: 0 16px 40px rgba(94, 6, 8, 0.18);
}

.service-card.wide {
  grid-column: span 2;
}

.service-icon,
.process-list span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: #fff;
  background: var(--red);
  font-size: 0.86rem;
  font-weight: 800;
}

.service-card details {
  margin-top: 18px;
  border-top: 1px solid rgba(148, 7, 11, 0.16);
  padding-top: 14px;
}

.service-card summary {
  cursor: pointer;
  color: var(--red);
  font-weight: 800;
  list-style: none;
}

.service-card summary::-webkit-details-marker {
  display: none;
}

.service-card summary::after {
  content: "+";
  float: right;
  color: var(--red-deep);
  font-weight: 900;
}

.service-card details[open] summary::after {
  content: "-";
}

.service-card details p {
  margin: 12px 0 0;
  font-size: 0.96rem;
  line-height: 1.65;
}

.service-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--red);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(222, 41, 16, 0.34);
  text-underline-offset: 4px;
}

.service-card p,
.process-list p,
.contact-panel p,
.site-footer p {
  color: var(--muted);
}

.services .service-card p {
  color: #6f4542;
}

.service-detail-list {
  display: grid;
  gap: 18px;
  padding: clamp(48px, 7vw, 96px) clamp(20px, 5vw, 72px);
  background: var(--paper);
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: clamp(20px, 5vw, 64px);
  padding: clamp(24px, 4vw, 42px);
  background: #fff;
  border: 1px solid rgba(222, 41, 16, 0.16);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(94, 6, 8, 0.08);
  scroll-margin-top: 96px;
}

.service-detail h2 {
  max-width: 520px;
  font-size: clamp(2.45rem, 5.4vw, 5.2rem);
  line-height: 0.94;
}

.service-detail .service-lede {
  max-width: 540px;
  color: var(--red-dark);
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  font-weight: 900;
}

.service-detail p:not(.eyebrow):not(.service-lede) {
  color: var(--muted);
  font-size: 1.05rem;
}

.service-detail ul {
  display: grid;
  gap: 10px;
  align-content: start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail li {
  padding: 14px 16px;
  color: var(--muted);
  background: #fff8e8;
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  font-weight: 700;
}

.team-hero {
  background:
    linear-gradient(90deg, rgba(94, 6, 8, 0.96), rgba(148, 7, 11, 0.9)),
    var(--red-dark);
}

.team-intro {
  background:
    linear-gradient(135deg, rgba(255, 222, 0, 0.2), rgba(255, 245, 223, 0) 46%),
    #fff8e8;
  border-bottom: 1px solid rgba(222, 41, 16, 0.14);
}

.team-intro .section-heading {
  margin-bottom: 20px;
}

.team-intro .section-heading p:not(.eyebrow) {
  max-width: 840px;
  color: var(--muted);
  font-size: 1.08rem;
}

.team-section {
  background: var(--paper);
}

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

.team-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(222, 41, 16, 0.16);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(94, 6, 8, 0.1);
}

.team-photo {
  background: #f5eadb;
}

.team-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.team-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

.team-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.team-card p:not(.eyebrow) {
  color: var(--muted);
}

.team-details {
  display: grid;
  gap: 10px;
  margin: 8px 0 22px;
}

.team-details details {
  border: 1px solid rgba(222, 41, 16, 0.16);
  border-radius: 8px;
  background: #fff8e8;
}

.team-details summary {
  cursor: pointer;
  padding: 13px 14px;
  color: var(--red-deep);
  font-weight: 900;
  list-style: none;
}

.team-details summary::-webkit-details-marker {
  display: none;
}

.team-details summary::after {
  content: "+";
  float: right;
  color: var(--red);
}

.team-details details[open] summary::after {
  content: "-";
}

.team-details p,
.team-details ul {
  margin: 0;
  padding: 0 14px 14px;
}

.team-card ul {
  display: grid;
  gap: 9px;
  margin: 4px 0 22px;
  padding: 0;
  list-style: none;
}

.team-card li {
  padding-left: 16px;
  color: var(--muted);
  border-left: 4px solid var(--gold);
  font-weight: 700;
}

.team-card .team-details ul {
  margin: 0;
  padding: 0 14px 14px;
}

.team-card .team-details li {
  padding-left: 14px;
}

.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.team-tags span {
  padding: 7px 10px;
  color: var(--red-deep);
  background: #fff8e8;
  border: 1px solid rgba(222, 41, 16, 0.16);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.team-operations {
  background:
    linear-gradient(180deg, rgba(255, 222, 0, 0.18), rgba(255, 245, 223, 0)),
    var(--surface);
}

.contact-lite {
  background:
    linear-gradient(135deg, rgba(255, 222, 0, 0.2), rgba(255, 245, 223, 0)),
    #fff8e8;
}

.contact-lite p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.industries {
  background:
    linear-gradient(180deg, rgba(255, 245, 223, 0), rgba(255, 222, 0, 0.16)),
    var(--surface);
}

.industries .section-heading p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.industry-grid span {
  min-height: 78px;
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--red-deep);
  background: #fff8e8;
  border: 1px solid rgba(222, 41, 16, 0.16);
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 10px 30px rgba(94, 6, 8, 0.08);
}

.work {
  background:
    linear-gradient(180deg, rgba(255, 222, 0, 0.18), rgba(255, 245, 223, 0) 380px),
    var(--paper);
}

.work .section-heading p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.work-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin: -20px 0 18px;
}

.work-nav {
  min-width: 112px;
  min-height: 44px;
  padding: 12px 18px;
  color: #fff8df;
  font: inherit;
  font-weight: 800;
  background: var(--red);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(94, 6, 8, 0.18);
  cursor: pointer;
}

.work-nav::after {
  display: inline-block;
  margin-left: 8px;
  font-size: 1.05rem;
}

.work-nav[data-work-prev]::before {
  content: "<";
  display: inline-block;
  margin-right: 8px;
}

.work-nav[data-work-next]::after {
  content: ">";
}

.work-nav:hover,
.work-nav:focus-visible {
  background: var(--red-dark);
}

.work-nav:disabled {
  opacity: 0.42;
  cursor: default;
}

.work-grid {
  display: flex;
  gap: 18px;
  margin-right: calc(clamp(20px, 5vw, 72px) * -1);
  padding: 6px clamp(20px, 5vw, 72px) 18px 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-left: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.work-grid::-webkit-scrollbar {
  display: none;
}

.work-card {
  flex: 0 0 min(360px, calc(100vw - 64px));
  overflow: hidden;
  border: 1px solid rgba(222, 41, 16, 0.2);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(94, 6, 8, 0.12);
  scroll-snap-align: start;
}

.work-card.feature {
  flex-basis: min(960px, calc(100vw - (clamp(20px, 5vw, 72px) * 2)));
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 1fr);
  align-items: stretch;
}

.work-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #f5eadb;
}

.work-card.feature > img,
.work-card.feature > .work-gallery {
  height: 100%;
  min-height: 320px;
}

.work-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 18px;
  background: #fff;
}

.work-gallery img {
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  border-radius: 5px;
}

.work-gallery img:first-child {
  min-height: 300px;
}

.work-card div {
  padding: 22px;
}

.work-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.work-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.process {
  background:
    linear-gradient(180deg, rgba(255, 222, 0, 0.2), rgba(255, 255, 255, 0) 48%),
    var(--surface);
}

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

.process-list article {
  background: #fff8e8;
}

.employee-portal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    linear-gradient(135deg, rgba(255, 222, 0, 0.2), rgba(255, 245, 223, 0)),
    #fff8e8;
  border-top: 1px solid rgba(222, 41, 16, 0.16);
  border-bottom: 1px solid rgba(222, 41, 16, 0.16);
}

.employee-portal div {
  max-width: 820px;
}

.employee-portal p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact {
  background:
    linear-gradient(135deg, rgba(94, 6, 8, 0.96), rgba(222, 41, 16, 0.96)),
    var(--red);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(28px, 6vw, 80px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 46px);
  border-radius: 8px;
  color: #fff;
  background: #fff8e8;
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  color: var(--ink);
}

.contact-panel .eyebrow {
  color: var(--red);
}

.email-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--red);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(222, 41, 16, 0.38);
  text-underline-offset: 4px;
}

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

.honeypot {
  display: none !important;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #433e38;
  font-size: 0.9rem;
  font-weight: 800;
}

.service-guidance {
  margin: -2px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(242, 188, 66, 0.5);
  border-radius: 8px;
  color: #5d342b;
  background: rgba(255, 248, 232, 0.86);
  font-size: 0.92rem;
  line-height: 1.55;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d8cbbb;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(242, 188, 66, 0.38);
  border-color: var(--gold);
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--red-dark);
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 72px);
  background:
    linear-gradient(90deg, var(--red-deep), var(--charcoal));
  color: #fff;
}

.site-footer p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  text-align: right;
}

@media (max-width: 980px) {
  .trust-bar,
  .proof-band,
  .service-detail,
  .service-grid,
  .team-grid,
  .route-grid,
  .process-list,
  .split,
  .contact-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .trust-bar span:nth-child(2n) {
    border-right: 0;
  }

  .service-card.wide {
    grid-column: span 2;
  }

  .work-controls {
    margin-top: 0;
  }

  .work-card.feature {
    flex-basis: min(840px, calc(100vw - 40px));
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 70px;
  }

  .brand span {
    font-size: 0.95rem;
  }

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

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 20px 18px;
    color: #fff8df;
    background: var(--red-dark);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 42px rgba(94, 6, 8, 0.16);
  }

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

  .site-nav a {
    padding: 14px 0;
    color: #fff8df;
    border-bottom: 1px solid rgba(255, 222, 0, 0.28);
  }

  .nav-menu {
    border-bottom: 1px solid rgba(255, 222, 0, 0.28);
  }

  .nav-menu summary {
    padding: 14px 0;
  }

  .nav-dropdown {
    position: static;
    min-width: 0;
    padding: 0 0 10px 12px;
    transform: none;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .nav-dropdown a {
    padding: 10px 0;
    color: #fff8df;
    border-bottom: 0;
    white-space: normal;
    opacity: 0.9;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 88vh;
    padding-top: 112px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(17, 13, 10, 0.92), rgba(17, 13, 10, 0.52)),
      linear-gradient(0deg, rgba(17, 13, 10, 0.62), rgba(17, 13, 10, 0.08));
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4.4rem);
  }

  .trust-bar,
  .proof-band,
  .proof-grid,
  .service-detail,
  .service-grid,
  .team-grid,
  .route-grid,
  .industry-grid,
  .process-list,
  .split,
  .contact-panel,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .employee-portal {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-bar span,
  .service-card.wide,
  .work-card.feature {
    grid-column: auto;
  }

  .work-grid {
    margin-right: -20px;
    padding-right: 20px;
  }

  .work-controls {
    justify-content: stretch;
    margin: 0 0 14px;
  }

  .work-nav {
    flex: 1;
    min-width: 0;
  }

  .work-card {
    flex-basis: min(84vw, 360px);
  }

  .work-card.feature {
    flex-basis: calc(100vw - 40px);
    grid-template-columns: 1fr;
  }

  .work-card.feature > img,
  .work-card.feature > .work-gallery {
    min-height: 0;
  }

  .work-gallery {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .work-gallery img:first-child {
    min-height: 220px;
  }

  .trust-bar span {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-panel {
    padding: 22px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer p {
    text-align: left;
  }
}
