@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --paper: #f2ede3;
  --paper-soft: #eae3d5;
  --white: #fffdf8;
  --ink: #171713;
  --muted: #645f55;
  --green: #2c463a;
  --green-dark: #1e332a;
  --green-light: #dce5de;
  --ochre: #a06d2c;
  --ochre-dark: #79501e;
  --line: rgba(23, 23, 19, 0.14);
  --line-light: rgba(255, 255, 255, 0.2);
  --shadow: 0 16px 48px rgba(35, 31, 25, 0.12);
  --radius: 6px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

:focus-visible {
  outline: 3px solid rgba(160, 109, 44, 0.5);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 16px;
}

.skip-link:focus {
  transform: translateY(0);
}

.utility-bar {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

.utility-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-list {
  display: flex;
  align-items: center;
  gap: 22px;
}

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

.utility-list a:hover {
  color: #fff;
}

.utility-catalogue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 237, 227, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
  text-decoration: none;
}

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

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1.2;
}

.brand-name {
  font-size: 15px;
  font-weight: 700;
}

.brand-meta {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.desktop-nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  position: relative;
  color: #36342e;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--ochre);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: 180ms ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--green);
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 3px;
  background: var(--green);
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
}

.button-large {
  min-height: 52px;
  padding: 0 24px;
}

.button-ochre {
  background: var(--ochre);
}

.button-ochre:hover {
  background: var(--ochre-dark);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.56);
  background: transparent;
  color: #fff;
}

.button-outline:hover {
  border-color: #fff;
  background: #fff;
  color: var(--green-dark);
}

.button-outline-dark {
  border-color: var(--green);
  background: transparent;
  color: var(--green);
}

.button-outline-dark:hover {
  background: var(--green);
  color: #fff;
}

.button-disabled,
.button-disabled:hover {
  background: #aaa398;
  cursor: not-allowed;
  transform: none;
}

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  width: 20px;
  height: 2px;
  display: block;
  background: currentColor;
  content: "";
  transition: 180ms ease;
}

.menu-icon {
  position: relative;
}

.menu-icon::before {
  position: absolute;
  top: -6px;
}

.menu-icon::after {
  position: absolute;
  top: 6px;
}

.menu-button[aria-expanded="true"] .menu-icon {
  background: transparent;
}

.menu-button[aria-expanded="true"] .menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav .nav-list {
  align-items: stretch;
  flex-direction: column;
  gap: 0;
  padding: 12px 0 24px;
}

.mobile-nav .nav-link {
  display: block;
  padding: 12px 0;
  font-size: 15px;
}

.mobile-nav .nav-link::after {
  display: none;
}

.mobile-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.hero {
  min-height: 670px;
  display: grid;
  align-items: end;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--green-dark);
  color: #fff;
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 23, 19, 0.88) 0%, rgba(23, 23, 19, 0.6) 52%, rgba(23, 23, 19, 0.18) 100%),
    url("hero-disaster-relief.png") center / cover;
  content: "";
  transform: scale(1.01);
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 210px;
  background: linear-gradient(transparent, rgba(23, 23, 19, 0.62));
  content: "";
}

.hero-content {
  max-width: 790px;
  padding: 118px 0 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ochre);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.hero .eyebrow {
  color: #dfb878;
}

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

h1,
h2,
h3 {
  line-height: 1.18;
}

.hero h1 {
  max-width: 820px;
  margin: 22px 0 24px;
  font-size: clamp(42px, 6.1vw, 76px);
  font-weight: 700;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.65;
}

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

.credibility-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

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

.credibility-item {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 26px;
  border-right: 1px solid var(--line);
}

.credibility-item:last-child {
  border-right: 0;
}

.credibility-mark {
  color: var(--ochre);
  font-size: 28px;
  font-weight: 700;
}

.credibility-copy strong {
  display: block;
  margin-bottom: 2px;
  color: var(--green);
  font-size: 14px;
}

.credibility-copy span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.section {
  padding: 92px 0;
}

.section-tight {
  padding: 64px 0;
}

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

.section-green {
  background: var(--green);
  color: #fff;
}

.section-head {
  max-width: 740px;
  margin-bottom: 42px;
}

.section-head-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 42px;
}

.section-head-row .section-head {
  margin-bottom: 0;
}

.section h2,
.page-hero h1 {
  margin: 14px 0 18px;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 700;
}

.section-green h2,
.section-green .section-lead {
  color: #fff;
}

.section-lead {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.text-link {
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

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

.service-card {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green-dark);
  color: #fff;
  text-decoration: none;
}

.service-card::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: var(--card-image, linear-gradient(135deg, var(--green), var(--ochre))) center / cover;
  content: "";
  transition: transform 350ms ease;
}

.service-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(transparent 16%, rgba(18, 27, 23, 0.88) 100%);
  content: "";
}

.service-card:hover::before {
  transform: scale(1.035);
}

.service-card-content {
  padding: 28px;
}

.service-card h3 {
  margin-bottom: 9px;
  font-size: 21px;
}

.service-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.service-relief {
  --card-image: url("hero-warehouse.jpg");
}

.service-ict {
  --card-image: url("ict-equipment.jpg");
}

.service-tea {
  --card-image: url("tea-collection.jpg");
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-item {
  min-height: 210px;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.process-item:last-child {
  border-right: 0;
}

.process-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  font-size: 18px;
  font-weight: 700;
}

.process-item h3 {
  margin-bottom: 10px;
  font-size: 17px;
}

.process-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.client-name {
  min-height: 118px;
  display: grid;
  place-items: center;
  padding: 20px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.cta-band {
  padding: 64px 0;
  background: var(--ochre);
  color: #fff;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.cta-copy {
  max-width: 720px;
}

.cta-copy h2 {
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(27px, 3vw, 39px);
}

.cta-copy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.page-hero {
  min-height: 390px;
  display: grid;
  align-items: end;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--green-dark);
  color: #fff;
}

.page-hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(25, 34, 29, 0.94), rgba(25, 34, 29, 0.53)),
    var(--page-image, none) center / cover;
  content: "";
}

.page-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.38), transparent 65%);
  content: "";
}

.page-hero-content {
  max-width: 780px;
  padding: 88px 0 56px;
}

.page-hero h1 {
  margin-bottom: 16px;
  color: #fff;
}

.page-hero p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.page-about {
  --page-image: url("hero-warehouse.jpg");
}

.page-supply {
  --page-image: url("tea-collection.jpg");
}

.page-experience {
  --page-image: url("ict-equipment.jpg");
}

.page-contact,
.page-compliance,
.page-catalogue {
  --page-image: linear-gradient(120deg, rgba(44, 70, 58, 0.5), rgba(160, 109, 44, 0.38));
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 72px;
  align-items: start;
}

.prose h2 {
  margin-bottom: 22px;
}

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

.prose p:last-child {
  margin-bottom: 0;
}

.highlight-panel {
  padding: 32px;
  border-left: 4px solid var(--ochre);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--green);
  color: #fff;
}

.highlight-panel h3 {
  margin-bottom: 14px;
  font-size: 20px;
}

.highlight-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

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

.principle-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.principle-card h3 {
  margin-bottom: 12px;
  color: var(--green);
  font-size: 19px;
}

.principle-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.supply-groups {
  display: grid;
  gap: 22px;
}

.supply-group {
  display: grid;
  grid-template-columns: 260px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.supply-group-head {
  padding: 30px;
  background: var(--green);
  color: #fff;
}

.supply-group-head h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 21px;
}

.supply-group-head p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.supply-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.supply-list li {
  min-height: 70px;
  display: flex;
  align-items: center;
  position: relative;
  padding: 16px 22px 16px 42px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #464239;
  font-size: 14px;
}

.supply-list li::before {
  position: absolute;
  left: 21px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ochre);
  content: "";
}

.supply-list li:nth-child(2n) {
  border-right: 0;
}

.supply-list li:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.record-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.record-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.record-category {
  margin-bottom: 28px;
  color: var(--ochre-dark);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.record-card h3 {
  margin-bottom: 12px;
  color: var(--green);
  font-size: 20px;
}

.record-card p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
}

.record-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}

.record-tag {
  padding: 5px 8px;
  border-radius: 2px;
  background: var(--paper-soft);
  color: #514b41;
  font-size: 10px;
  font-weight: 700;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.compliance-item {
  min-height: 130px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.compliance-label {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.compliance-value {
  color: var(--green);
  font-size: 18px;
  font-weight: 700;
}

.compliance-note {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
}

.contact-panel,
.form-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.contact-panel h2,
.form-panel h2 {
  margin-bottom: 26px;
  font-size: 25px;
}

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

.contact-row {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-row:first-child {
  padding-top: 0;
}

.contact-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-row dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-row dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
}

.contact-row a {
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
}

.contact-row a:hover {
  text-decoration: underline;
}

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

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

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

.field label {
  color: #3e3a33;
  font-size: 12px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(23, 23, 19, 0.22);
  border-radius: 3px;
  background: #fff;
  color: var(--ink);
  padding: 12px 13px;
}

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

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

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.map-section {
  padding-top: 0;
}

.map-frame {
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ddd;
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 470px;
  display: block;
  border: 0;
}

.map-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.catalogue-panel {
  max-width: 850px;
  margin: 0 auto;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-align: center;
}

.catalogue-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  font-size: 25px;
  font-weight: 700;
}

.catalogue-panel h2 {
  margin-bottom: 14px;
}

.catalogue-panel p {
  max-width: 620px;
  margin: 0 auto 28px;
  color: var(--muted);
}

.site-footer {
  background: #161a17;
  color: rgba(255, 255, 255, 0.76);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.1fr;
  gap: 48px;
  padding: 68px 0 48px;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .brand-name {
  color: #fff;
}

.footer-brand .brand-meta {
  color: rgba(255, 255, 255, 0.55);
}

.footer-brand p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.footer-column h2 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li,
.footer-links a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
}

.footer-credit {
  color: inherit;
}

.footer-credit:hover {
  color: #fff;
}

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

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

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

  .credibility-item:nth-child(2) {
    border-right: 0;
  }

  .credibility-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .service-grid,
  .principles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:last-child,
  .principle-card:last-child {
    grid-column: 1 / -1;
  }

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

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 780px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .utility-inner {
    min-height: 34px;
  }

  .utility-list span,
  .utility-list a:first-of-type {
    display: none;
  }

  .hero {
    min-height: 610px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(23, 23, 19, 0.9), rgba(23, 23, 19, 0.5)),
      url("hero-disaster-relief.png") 64% center / cover;
  }

  .hero-content {
    padding: 92px 0 48px;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 58px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .section {
    padding: 68px 0;
  }

  .section-tight {
    padding: 48px 0;
  }

  .section-head-row,
  .cta-inner,
  .map-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-grid,
  .process-grid,
  .two-column,
  .principles-grid,
  .record-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .service-card:last-child,
  .principle-card:last-child {
    grid-column: auto;
  }

  .process-item {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-item:last-child {
    border-bottom: 0;
  }

  .supply-group {
    grid-template-columns: 1fr;
  }

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

  .supply-list li,
  .supply-list li:nth-child(2n),
  .supply-list li:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .supply-list li:last-child {
    border-bottom: 0;
  }

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

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

  .map-frame,
  .map-frame iframe {
    min-height: 390px;
    height: 390px;
  }
}

@media (max-width: 560px) {
  .brand-meta {
    display: none;
  }

  .nav-inner {
    min-height: 68px;
  }

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

  .brand-name {
    max-width: 175px;
    font-size: 13px;
  }

  .mobile-actions {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .credibility-grid,
  .client-grid,
  .compliance-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .credibility-item {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .credibility-item:last-child {
    border-bottom: 0;
  }

  .client-name {
    min-height: 88px;
  }

  .contact-panel,
  .form-panel,
  .catalogue-panel {
    padding: 26px 22px;
  }

  .footer-main {
    gap: 34px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
