:root {
  --ink: #161a1d;
  --ink-2: #242b30;
  --paper: #f4f3ef;
  --white: #ffffff;
  --line: #d8d8d2;
  --muted: #626a6f;
  --yellow: #f0b51b;
  --yellow-dark: #d79d00;
  --green: #1d7369;
  --red: #a83d2c;
  --shadow: 0 18px 50px rgba(22, 26, 29, 0.12);
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 999;
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 800;
}

.skip-link:focus {
  top: 12px;
}

.topline {
  background: var(--ink);
  color: #d9dcde;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.topline-inner {
  max-width: var(--content);
  margin: 0 auto;
  padding: 8px 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(22, 26, 29, 0.1);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--content);
  min-height: 78px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--ink);
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 230px;
  height: 55px;
  background-image: url("eveward-logo-source.png");
  background-position: 50% 37.5%;
  background-repeat: no-repeat;
  background-size: 139% auto;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.desktop-nav a {
  padding: 10px 11px;
  border-bottom: 2px solid transparent;
  color: #373e42;
  font-size: 0.84rem;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  border-bottom-color: var(--yellow);
  color: var(--ink);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 850;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-cta:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.mobile-panel {
  display: none;
}

.container {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 3px;
  background: var(--yellow);
  content: "";
}

.display {
  max-width: 900px;
  margin: 0;
  font-family: "Arial Black", Inter, sans-serif;
  font-size: clamp(2.5rem, 5.8vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-heading {
  max-width: 760px;
  margin: 0;
  font-family: "Arial Black", Inter, sans-serif;
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.lead {
  max-width: 750px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 21px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 850;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.button:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
}

.button-secondary {
  background: transparent;
  color: var(--ink);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(22, 26, 29, 0.2);
  color: var(--white);
}

.button-light:hover {
  border-color: var(--white);
  background: var(--white);
}

.button svg,
.text-link svg {
  width: 17px;
  height: 17px;
}

.home-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(790px, calc(100vh - 105px));
  overflow: hidden;
  background: var(--ink) url("eveward-hero.png") center/cover no-repeat;
  color: var(--white);
}

.home-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 16, 18, 0.92) 0%, rgba(13, 16, 18, 0.74) 35%, rgba(13, 16, 18, 0.08) 72%),
    linear-gradient(0deg, rgba(13, 16, 18, 0.62) 0%, transparent 38%);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
  padding: 90px 0 104px;
}

.hero-content .eyebrow {
  color: var(--yellow);
}

.hero-copy {
  max-width: 690px;
  margin: 22px 0 0;
  color: #e7e8e8;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
}

.hero-proof {
  position: absolute;
  right: max(20px, calc((100vw - var(--content)) / 2));
  bottom: 34px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 11px 15px;
  background: rgba(22, 26, 29, 0.84);
  border-left: 3px solid var(--yellow);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-proof svg {
  width: 20px;
  height: 20px;
  color: var(--yellow);
}

.trust-strip {
  background: var(--yellow);
  color: var(--ink);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--content);
  margin: 0 auto;
}

.trust-item {
  min-height: 104px;
  padding: 24px 20px;
  border-right: 1px solid rgba(22, 26, 29, 0.2);
}

.trust-item:first-child {
  border-left: 1px solid rgba(22, 26, 29, 0.2);
}

.trust-item strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.trust-item span {
  display: block;
  font-size: 0.82rem;
  line-height: 1.4;
}

.section {
  padding: 100px 0;
}

.section-white {
  background: var(--white);
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.section-dark .lead {
  color: #bfc4c6;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 44px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--yellow);
  font-size: 0.8rem;
  font-weight: 850;
  text-decoration: none;
  text-transform: uppercase;
}

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

.advantage {
  min-height: 250px;
  padding: 30px;
  background: var(--white);
}

.icon-box {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 42px;
  background: var(--ink);
  color: var(--yellow);
}

.icon-box svg {
  width: 23px;
  height: 23px;
}

.advantage h3,
.service-card h2,
.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.advantage p,
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.gallery-controls {
  display: inline-flex;
  gap: 4px;
  margin-bottom: 22px;
  padding: 4px;
  background: #e6e6e1;
}

.gallery-tab {
  min-width: 126px;
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 850;
  text-transform: uppercase;
  cursor: pointer;
}

.gallery-tab[aria-selected="true"] {
  background: var(--ink);
  color: var(--white);
}

.project-stage {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: var(--ink-2);
}

.project-slide {
  display: none;
  grid-template-columns: minmax(0, 1.7fr) minmax(270px, 0.7fr);
  min-height: 500px;
}

.project-slide.is-active {
  display: grid;
}

.project-slide img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.project-caption {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  background: var(--ink);
  color: var(--white);
}

.project-number {
  margin-bottom: auto;
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 850;
}

.project-caption h3 {
  margin: 0 0 10px;
  font-size: 1.65rem;
}

.project-caption p {
  margin: 0;
  color: #bdc3c6;
}

.project-nav {
  display: flex;
  gap: 8px;
  margin-top: 28px;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid #4d5458;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.icon-button:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.icon-button svg {
  width: 20px;
  height: 20px;
}

.cta-band {
  background: var(--green);
  color: var(--white);
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 48px 0;
}

.cta-band h2 {
  max-width: 780px;
  margin: 0;
  font-family: "Arial Black", Inter, sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1.08;
}

.page-hero {
  padding: 92px 0 70px;
  background: var(--ink);
  color: var(--white);
}

.page-hero .eyebrow {
  color: var(--yellow);
}

.page-hero .lead {
  margin: 22px 0 0;
  color: #c7ccce;
}

.page-marker {
  display: inline-flex;
  margin-top: 35px;
  padding: 8px 11px;
  border: 1px solid #4a5256;
  color: #c7ccce;
  font-size: 0.73rem;
  font-weight: 800;
  text-transform: uppercase;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.65fr) minmax(0, 1.35fr);
  gap: 90px;
}

.split-layout h2 {
  position: sticky;
  top: 125px;
  margin: 0;
  font-family: "Arial Black", Inter, sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.06;
}

.prose {
  font-size: 1.07rem;
}

.prose p {
  margin: 0 0 24px;
}

.statement-box {
  margin-top: 40px;
  padding: 32px;
  border-left: 5px solid var(--yellow);
  background: var(--ink);
  color: var(--white);
}

.statement-box strong {
  display: block;
  margin-bottom: 10px;
  color: var(--yellow);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.statement-box p {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.5;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid #4b5155;
  border-left: 1px solid #4b5155;
}

.sector {
  min-height: 190px;
  padding: 24px;
  border-right: 1px solid #4b5155;
  border-bottom: 1px solid #4b5155;
}

.sector span {
  display: block;
  margin-bottom: 52px;
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 850;
}

.sector h3 {
  margin: 0;
  font-size: 1rem;
}

.services-stack {
  display: grid;
  gap: 30px;
}

.service-division {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  min-height: 450px;
  background: var(--white);
  border: 1px solid var(--line);
}

.division-intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 38px;
  background: var(--ink);
  color: var(--white);
}

.division-intro.cleaning {
  background: var(--green);
}

.division-label {
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.division-intro h2 {
  margin: auto 0 12px;
  font-family: "Arial Black", Inter, sans-serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.04;
}

.division-intro p {
  margin: 0;
  color: #c8cdcf;
}

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

.service-item {
  min-height: 142px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-item:nth-child(even) {
  border-right: 0;
}

.service-item h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.service-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #444b4f;
  border: 1px solid #444b4f;
}

.process-step {
  min-height: 230px;
  padding: 28px;
  background: var(--ink);
}

.process-step span {
  display: block;
  margin-bottom: 55px;
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 850;
}

.process-step h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.process-step p {
  margin: 0;
  color: #b9c0c3;
  font-size: 0.9rem;
}

.credentials-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.65fr);
  gap: 44px;
  align-items: start;
}

.credential-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  box-shadow: var(--shadow);
}

.credential-table th,
.credential-table td {
  padding: 21px 24px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.credential-table th {
  width: 39%;
  background: #f0f0ec;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.credential-table td {
  font-weight: 700;
}

.compliance-aside {
  padding: 32px;
  background: var(--green);
  color: var(--white);
}

.compliance-aside svg {
  width: 42px;
  height: 42px;
  margin-bottom: 60px;
  color: var(--yellow);
}

.compliance-aside h2 {
  margin: 0 0 12px;
  font-size: 1.45rem;
}

.compliance-aside p {
  margin: 0 0 24px;
  color: #dce9e7;
}

.compliance-aside a {
  font-weight: 850;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: 60px;
  align-items: start;
}

.contact-panel {
  padding: 34px;
  background: var(--ink);
  color: var(--white);
}

.contact-panel h2 {
  margin: 0 0 25px;
  font-size: 1.55rem;
}

.contact-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid #444b4f;
}

.contact-list svg {
  width: 20px;
  height: 20px;
  color: var(--yellow);
}

.contact-list small {
  display: block;
  color: #aeb6ba;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-list a {
  text-decoration: none;
}

.intake-form {
  padding: 38px;
  background: var(--white);
  border: 1px solid var(--line);
}

.intake-form h2 {
  margin: 0 0 8px;
  font-family: "Arial Black", Inter, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.06;
}

.form-intro {
  margin: 0 0 30px;
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  display: grid;
  gap: 8px;
}

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

.field label {
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #bfc2c1;
  border-radius: 0;
  background: #fbfbf9;
  color: var(--ink);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
  outline: 2px solid rgba(29, 115, 105, 0.16);
}

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

.file-drop {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 105px;
  padding: 18px;
  border: 1px dashed #979d9f;
  background: #f4f4f0;
  text-align: center;
}

.file-drop input {
  position: absolute;
  inset: 0;
  min-height: 0;
  opacity: 0;
  cursor: pointer;
}

.file-drop svg {
  width: 24px;
  height: 24px;
  margin-bottom: 6px;
  color: var(--green);
}

.file-drop strong,
.file-drop small {
  display: block;
}

.file-drop small {
  color: var(--muted);
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
}

.form-note {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 0.77rem;
}

.estimate-result {
  display: none;
  margin-top: 25px;
  padding: 25px;
  border-left: 4px solid var(--yellow);
  background: #fff8e3;
}

.estimate-result.is-visible {
  display: block;
}

.estimate-result strong {
  display: block;
  color: var(--green);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.estimate-value {
  margin: 5px 0;
  font-family: "Arial Black", Inter, sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.1;
}

.estimate-result p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.site-footer {
  padding: 62px 0 28px;
  background: #101315;
  color: #b8bec1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 45px;
}

.footer-brand {
  color: var(--white);
  font-family: "Arial Black", Inter, sans-serif;
  font-size: 1.55rem;
}

.footer-kicker {
  display: block;
  margin: 6px 0 20px;
  color: var(--yellow);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.footer-grid h2 {
  margin: 0 0 15px;
  color: var(--white);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.footer-grid p {
  margin: 0;
  font-size: 0.88rem;
}

.footer-grid a {
  color: inherit;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 45px;
  padding-top: 20px;
  border-top: 1px solid #333a3e;
  font-size: 0.72rem;
}

.mobile-actions {
  display: none;
}

@media (max-width: 1020px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .mobile-panel {
    position: fixed;
    inset: 105px 0 0;
    z-index: 90;
    padding: 26px 20px;
    background: var(--white);
  }

  .mobile-panel.is-open {
    display: block;
  }

  .mobile-panel a {
    display: block;
    padding: 16px 2px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-panel .nav-cta {
    display: flex;
    margin-top: 24px;
    border-bottom: 0;
  }

  .advantage-grid,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sector-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .division-intro {
    min-height: 280px;
  }

  .credentials-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .compliance-aside svg {
    margin-bottom: 25px;
  }
}

@media (max-width: 760px) {
  .topline {
    font-size: 0.62rem;
  }

  .topline-inner {
    padding: 6px 10px;
  }

  .nav-shell {
    min-height: 70px;
  }

  .brand-logo {
    width: 205px;
    height: 49px;
  }

  .home-hero {
    min-height: 700px;
    background-position: 61% center;
  }

  .home-hero::before {
    background:
      linear-gradient(90deg, rgba(13, 16, 18, 0.91) 0%, rgba(13, 16, 18, 0.63) 100%),
      linear-gradient(0deg, rgba(13, 16, 18, 0.72) 0%, transparent 50%);
  }

  .hero-content {
    padding: 80px 0 120px;
  }

  .hero-proof {
    right: 20px;
    left: 20px;
    bottom: 28px;
    justify-content: center;
  }

  .button-row,
  .button {
    width: 100%;
  }

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

  .trust-item {
    min-height: 120px;
    border-bottom: 1px solid rgba(22, 26, 29, 0.2);
  }

  .section {
    padding: 72px 0;
  }

  .section-header,
  .cta-band-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .advantage-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .advantage {
    min-height: 220px;
  }

  .icon-box {
    margin-bottom: 25px;
  }

  .project-slide.is-active {
    grid-template-columns: 1fr;
  }

  .project-slide img {
    min-height: 330px;
  }

  .project-caption {
    min-height: 310px;
    padding: 28px;
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .split-layout h2 {
    position: static;
  }

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

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

  .service-item,
  .service-item:nth-child(even) {
    border-right: 0;
  }

  .field-full {
    grid-column: auto;
  }

  .credential-table,
  .credential-table tbody,
  .credential-table tr,
  .credential-table th,
  .credential-table td {
    display: block;
    width: 100%;
  }

  .credential-table th {
    padding-bottom: 6px;
    border-bottom: 0;
  }

  .credential-table td {
    padding-top: 6px;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .site-footer {
    padding-bottom: 92px;
  }

  .mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 110;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--ink);
    border-top: 2px solid var(--yellow);
  }

  .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 58px;
    color: var(--white);
    font-size: 0.73rem;
    font-weight: 850;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-actions a + a {
    border-left: 1px solid #454b4f;
  }

  .mobile-actions svg {
    width: 18px;
    height: 18px;
    color: var(--yellow);
  }
}

@media (max-width: 440px) {
  .container,
  .hero-content {
    width: min(calc(100% - 28px), var(--content));
  }

  .brand-logo {
    width: 172px;
    height: 41px;
  }

  .trust-grid,
  .sector-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: auto;
  }

  .gallery-controls {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .gallery-tab {
    min-width: 0;
  }

  .intake-form,
  .contact-panel,
  .statement-box,
  .compliance-aside {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
