:root {
  --brand: #a82209;
  --brand-dark: #8f1c08;
  --brand-deep: #661205;
  --brand-soft: #fff5f1;
  --brand-wash: #fffaf8;
  --ink: #281b18;
  --muted: #726763;
  --line: #efe1dc;
  --white: #ffffff;
  --mint: #c17c24;
  --coral: #d95535;
  --sun: #f3bd6a;
  --footer: #34140d;
  --radius: 8px;
  --shadow: 0 22px 58px rgba(168, 34, 9, 0.12);
  --soft-shadow: 0 12px 30px rgba(168, 34, 9, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(180deg, #ffffff 0, #ffffff 48%, #f8f8f7 100%);
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  background: transparent;
  transition: box-shadow 0.4s ease;
}

.utility-bar,
.navbar,
.section,
.site-footer {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.utility-bar {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 20px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(143, 28, 8, 0.98);
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: width 0.4s ease;
}

.utility-bar p {
  margin: 0;
}

.utility-links,
.nav-menu,
.nav-actions,
.hero-actions,
.footer-links {
  display: flex;
  align-items: center;
}

.utility-links {
  position: relative;
  gap: 18px;
  white-space: nowrap;
}

.order-link {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 4px;
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.94);
  font-weight: 800;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.order-link:hover,
.order-link[aria-expanded="true"] {
  color: var(--brand);
  border-color: var(--white);
  background: var(--white);
}

.program-panel.utility-program-panel {
  top: calc(100% + 84px);
  right: 0;
  z-index: 10;
}

.navbar {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 20px;
  border-radius: 0 0 10px 10px;
  background:
    linear-gradient(135deg, rgba(185, 38, 14, 0.98), rgba(168, 34, 9, 0.98) 58%, rgba(143, 28, 8, 0.98)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent);
  box-shadow: 0 12px 28px rgba(168, 34, 9, 0.12);
  backdrop-filter: blur(14px);
  transition:
    width 0.4s ease,
    border-radius 0.4s ease,
    box-shadow 0.4s ease;
}

.home-header.is-scrolled {
  box-shadow: 0 12px 28px rgba(168, 34, 9, 0.12);
}

.home-header.is-scrolled .utility-bar,
.home-header.is-scrolled .navbar {
  width: 100%;
}

.home-header.is-scrolled .navbar {
  border-radius: 0;
  box-shadow: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--brand);
  background: var(--white);
  border-radius: var(--radius);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo-mark {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: var(--white);
}

.brand-logo-full {
  width: 238px;
  height: auto;
}

.brand strong {
  display: block;
  color: var(--white);
  font-size: 20px;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  line-height: 1.3;
  margin-top: 4px;
}

.nav-menu {
  justify-content: flex-end;
  gap: 18px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.nav-menu > a,
.nav-item > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 76px;
}

.nav-menu > a::after,
.nav-item > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 3px;
  background: var(--white);
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

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

.nav-item {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% - 10px);
  left: 50%;
  min-width: 210px;
  display: grid;
  gap: 4px;
  padding: 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 44px rgba(86, 23, 10, 0.18);
  border: 1px solid rgba(168, 34, 9, 0.12);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--ink);
  white-space: nowrap;
}

.nav-dropdown a::before {
  content: "";
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  background: center / 18px 18px no-repeat;
}

.nav-dropdown a[href$="rental.html"]::before {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 5H11C13.2 5 15 6.8 15 9V12H5V7C5 5.9 5.9 5 7 5Z' stroke='%23A82209' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5 12L3 18M15 12L19 18M8 12V18M12 12V18' stroke='%23A82209' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.nav-dropdown a[href$="products.html"]::before {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8L12 4L20 8V16L12 20L4 16V8Z' stroke='%23A82209' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M4 8L12 12L20 8M12 12V20' stroke='%23A82209' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.nav-dropdown a[href$="digital.html"]::before {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='4' y='5' width='16' height='11' rx='2' stroke='%23A82209' stroke-width='2'/%3E%3Cpath d='M9 20H15M12 16V20' stroke='%23A82209' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.nav-dropdown a[href$="company-overview.html"]::before {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 20V6L12 3L19 6V20' stroke='%23A82209' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M9 10H10M14 10H15M9 14H10M14 14H15M4 20H20' stroke='%23A82209' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.nav-dropdown a[href$="company-info.html"]::before {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 4H15L19 8V20H7V4Z' stroke='%23A82209' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M15 4V8H19M10 12H16M10 16H14' stroke='%23A82209' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.nav-dropdown a[href$="branches.html"]::before {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 10C20 15 12 21 12 21C12 21 4 15 4 10C4 5.6 7.6 2 12 2C16.4 2 20 5.6 20 10Z' stroke='%23A82209' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='12' cy='10' r='2.5' stroke='%23A82209' stroke-width='2'/%3E%3C/svg%3E");
}

.nav-dropdown a:hover {
  color: var(--brand-dark);
  background: var(--brand-soft);
}

.nav-actions {
  position: relative;
  gap: 10px;
  white-space: nowrap;
}

.action-link,
.primary-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
}

.action-link {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.1);
}

button.action-link {
  gap: 8px;
  font: inherit;
  cursor: pointer;
}

.program-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 272px;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(168, 34, 9, 0.14);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 44px rgba(64, 28, 20, 0.2);
  backdrop-filter: blur(14px);
}

.program-panel.is-open {
  display: grid;
}

.program-card {
  display: grid;
  justify-items: center;
  gap: 7px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--brand-wash);
}

.program-card:hover {
  border-color: rgba(168, 34, 9, 0.32);
  box-shadow: var(--soft-shadow);
}

.program-card strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.3;
}

.program-card img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.primary-link,
.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 12px 26px rgba(168, 34, 9, 0.22);
}

.site-header .primary-link {
  color: var(--brand-dark);
  background: var(--white);
  box-shadow: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 520px;
  height: calc(100vh - 114px - 120px);
  overflow: hidden;
  isolation: isolate;
}

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

.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.03);
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 0.8s ease,
    transform 5s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.38) 43%, rgba(255, 255, 255, 0) 66%);
  transition: background 0.5s ease;
}

.hero[data-tone="light"]::before {
  background:
    linear-gradient(90deg, rgba(19, 24, 28, 0.68), rgba(19, 24, 28, 0.24) 45%, rgba(19, 24, 28, 0) 70%),
    linear-gradient(0deg, rgba(19, 24, 28, 0.08), transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  padding-top: 126px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #201c1a;
  transition: color 0.35s ease;
}

.hero[data-tone="light"] .hero-content {
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd2c4;
  font-size: 16px;
  margin-bottom: 16px;
}

.hero h1 {
  width: min(780px, 100%);
  margin: 0;
  font-size: 48px;
  line-height: 1.18;
  letter-spacing: 0;
  text-shadow: 0 2px 16px rgba(255, 255, 255, 0.46);
}

.hero[data-tone="light"] h1 {
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.36);
}

.hero-copy {
  width: min(720px, 100%);
  margin: 18px 0 0;
  font-size: 18px;
  color: currentColor;
  font-weight: 500;
  text-shadow: 0 2px 14px rgba(255, 255, 255, 0.48);
}

.hero[data-tone="light"] .hero-copy {
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.4);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow span {
  display: block;
  margin-top: -3px;
  font-family: Arial, sans-serif;
  font-size: 44px;
  line-height: 1;
  font-weight: 300;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  background: rgba(0, 0, 0, 0.52);
}

.hero-arrow:hover {
  transform: translateY(-50%) scale(1.05);
}

.hero-arrow-prev {
  left: 30px;
}

.hero-arrow-next {
  right: 30px;
}

.hero-actions {
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: var(--radius);
  font-weight: 800;
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.1);
}

.hero-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 34px;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.dot {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.44);
  cursor: pointer;
}

.dot.is-active {
  background: var(--white);
}

.news-feature:hover {
  border-color: rgba(168, 34, 9, 0.32);
  box-shadow: var(--soft-shadow);
}

.section {
  padding: 64px 0;
}

.section-heading {
  width: min(650px, 100%);
  margin-bottom: 24px;
}

.section-heading h2,
.capability-heading h2,
.feature-content h2,
.contact-strip h2 {
  margin: 0;
  color: var(--ink);
  font-size: 36px;
  line-height: 1.22;
  letter-spacing: 0;
}

.services {
  padding-top: 56px;
  padding-bottom: 48px;
}

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

.service-card {
  min-height: 370px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.82) inset;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.service-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  filter: none;
}

.service-card div {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.service-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.35;
}

.service-card:hover {
  border-color: rgba(168, 34, 9, 0.32);
  box-shadow: var(--soft-shadow);
}

.service-card p,
.feature-content p,
.contact-strip p {
  margin: 0;
  color: var(--muted);
}

.service-card a {
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 16px;
  color: var(--brand-dark);
  font-weight: 900;
}

.capability-band {
  width: 100%;
  scroll-margin-top: 114px;
  margin: 0;
  padding: 56px 0;
  background: #f8f8f7;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.capability-heading {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  align-items: end;
  gap: 64px;
}

.capability-heading h2 {
  margin: 0;
}

.capability-heading > p {
  width: 100%;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.capability-delivery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 38px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-delivery article {
  padding: 28px 26px;
  border-right: 1px solid var(--line);
}

.capability-delivery article:last-child {
  border-right: 0;
}

.capability-delivery strong {
  color: var(--ink);
  font-size: 21px;
}

.capability-delivery p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.capability-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 30px;
}

.capability-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
}

.capability-metrics div {
  display: grid;
  gap: 5px;
  padding: 0 28px;
  border-right: 1px solid var(--line);
}

.capability-metrics div:first-child {
  padding-left: 0;
}

.capability-metrics div:last-child {
  border-right: 0;
}

.capability-metrics strong {
  color: var(--brand-dark);
  font-size: 30px;
  line-height: 1;
}

.capability-metrics span {
  color: var(--muted);
  font-size: 13px;
}

.feature {
  padding: 56px 0;
  background:
    linear-gradient(135deg, #fffaf7, #ffffff);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.region-map-wrap {
  width: min(1160px, calc(100% - 40px));
  min-width: 0;
  margin: 0 auto;
}

.region-map {
  position: relative;
  z-index: 0;
  isolation: isolate;
  width: 100%;
  height: min(640px, 72vh);
  min-height: 540px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background-color: #fff9f9;
  background-image:
    linear-gradient(rgba(168, 34, 9, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 34, 9, 0.035) 1px, transparent 1px),
    radial-gradient(ellipse at 50% 40%, rgba(168, 34, 9, 0.1), transparent 62%);
  background-size: 40px 40px, 40px 40px, auto;
  box-shadow: var(--soft-shadow);
}

.region-map-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.region-map-status {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.region-map.is-ready .region-map-status {
  display: none;
}

.region-map-legend {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(40, 27, 24, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.region-map-legend i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #a82209;
  box-shadow: 0 0 8px rgba(168, 34, 9, 0.34);
}

.region-map-review-number {
  position: absolute;
  bottom: 12px;
  left: 18px;
  z-index: 3;
  color: rgba(40, 27, 24, 0.4);
  font-size: 10px;
}

.feature-content {
  width: min(1160px, calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  align-items: end;
  column-gap: 64px;
  row-gap: 18px;
  margin: 0 auto 32px;
}

.feature-content h2,
.feature-content p {
  color: var(--ink);
}

.feature-summary > p {
  width: 100%;
  margin: 0;
  color: var(--muted);
}

.feature-content a {
  color: var(--brand-dark);
  font-weight: 800;
}

.region-tags {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.region-tags span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(168, 34, 9, 0.18);
  border-radius: var(--radius);
  color: var(--brand-dark);
  background: var(--brand-soft);
  font-weight: 900;
}

.link-hub.section {
  width: 100%;
  padding: 60px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.link-hub-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.link-hub-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 28px;
}

.link-hub-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 36px;
  line-height: 1.22;
}

.link-hub-title {
  min-width: 0;
}

.link-hub-heading > p:last-child {
  max-width: 430px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 16px;
}

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

.links-row a {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #302b29;
  transition:
    border-color 0.2s ease;
}

.links-row a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(28, 24, 22, 0.02) 24%, rgba(28, 24, 22, 0.82) 100%);
  transition: background 0.2s ease;
}

.links-row a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.link-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38px;
  gap: 7px 14px;
  align-items: end;
  padding: 24px;
}

.link-copy small {
  grid-column: 1 / -1;
  color: #ffd8cc;
  font-size: 13px;
  font-weight: 900;
}

.link-copy strong {
  color: var(--white);
  font-size: 21px;
  line-height: 1.35;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
}

.link-copy em {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.links-row a:hover {
  border-color: rgba(168, 34, 9, 0.56);
}

.links-row a:hover::after {
  background: linear-gradient(180deg, rgba(28, 24, 22, 0.06) 18%, rgba(75, 25, 15, 0.88) 100%);
}

.links-row a:hover .link-copy em {
  border-color: var(--white);
  background: var(--brand);
}

.news {
  padding-top: 48px;
  padding-bottom: 56px;
}

.section-heading.inline {
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.section-heading.inline a {
  color: var(--brand-dark);
  font-weight: 800;
}

.news-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: stretch;
}

.news-feature,
.news-list {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.86) inset;
}

.news-feature {
  min-height: 0;
  display: grid;
  grid-template-columns: 30% 70%;
  overflow: hidden;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.news-feature > img {
  width: 100%;
  height: 100%;
  min-height: 0;
  align-self: stretch;
  object-fit: cover;
  object-position: center;
  background: #f7f7f6;
  filter: saturate(0.82) contrast(0.98);
}

.news-feature-content {
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 16px 22px;
  border-left: 4px solid var(--brand);
}

.news-feature time,
.news-list time {
  color: var(--brand-dark);
  font-weight: 800;
}

.news-feature strong {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.35;
}

.news-feature p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-feature em {
  justify-self: start;
  margin-top: 0;
  color: var(--brand-dark);
  font-style: normal;
  font-weight: 800;
}

.news-feature em::after {
  content: " ->";
}

.news-list {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  overflow: hidden;
}

.news-list a {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 32px;
  gap: 12px;
  align-items: center;
  min-height: 0;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.news-list a:last-child {
  border-bottom: 0;
}

.news-list a:hover {
  border-color: rgba(168, 34, 9, 0.22);
  background: var(--brand-wash);
}

.news-list time {
  display: grid;
  gap: 3px;
  line-height: 1;
}

.news-list time b {
  color: var(--brand-dark);
  font-size: 18px;
}

.news-list time small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.news-list > a > span {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.news-list span small {
  color: var(--brand-dark);
  font-size: 11px;
  font-weight: 800;
}

.news-list span strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
}

.news-list em {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(168, 34, 9, 0.18);
  border-radius: 50%;
  color: var(--brand-dark);
  font-size: 16px;
  font-style: normal;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.news-list a:hover em {
  color: var(--white);
  border-color: var(--brand);
  background: var(--brand);
}

.contact-strip {
  width: min(1160px, calc(100% - 40px));
  margin: 28px auto 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 42px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, #bd2b12, var(--brand) 62%, var(--brand-dark));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-strip .eyebrow,
.contact-strip h2,
.contact-strip p {
  color: var(--white);
}

.contact-strip .eyebrow,
.contact-strip p {
  opacity: 0.82;
}

.contact-strip .button.primary {
  color: var(--brand-dark);
  background: var(--white);
  box-shadow: none;
}

.contact-strip h2 {
  margin-bottom: 8px;
}

.footer-wrap {
  background:
    radial-gradient(circle at 20% 0, rgba(196, 48, 22, 0.24), transparent 26rem),
    var(--footer);
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  padding: 24px 0 20px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(250px, 1.25fr) minmax(280px, 1fr) minmax(220px, 0.95fr) 132px;
  gap: 36px;
  padding: 28px 0 24px;
}

.footer-brand-logo {
  display: inline-flex;
  width: min(250px, 100%);
}

.footer-brand-logo img {
  width: 100%;
  height: auto;
}

.footer-brand p {
  max-width: 380px;
  margin: 18px 0 0;
}

.footer-slogan {
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-nav {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
}

.footer-nav h3 {
  grid-column: 1 / -1;
}

.footer-column h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 16px;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-column a:hover {
  color: #ffd2c4;
}

.footer-contact {
  min-width: 0;
}

.footer-qrcode {
  justify-self: end;
}

.footer-qrcode img {
  width: 132px;
  aspect-ratio: 1;
  object-fit: contain;
  border: 6px solid rgba(255, 255, 255, 0.96);
  border-radius: var(--radius);
  background: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

@media (max-width: 1040px) {
  .feature {
    padding: 50px 0;
  }

  .navbar {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .nav-menu,
  .nav-actions {
    display: none;
  }

  .nav-menu.is-open {
    grid-column: 1 / -1;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding-bottom: 16px;
  }

  .nav-menu.is-open + .nav-actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    padding-bottom: 16px;
  }

  .nav-menu.is-open + .nav-actions .action-link,
  .nav-menu.is-open + .nav-actions .primary-link {
    min-height: 44px;
  }

  .program-panel {
    position: static;
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 2px;
  }

  .program-panel.utility-program-panel {
    position: absolute;
    top: calc(100% + 84px);
    right: 0;
    width: 272px;
    margin-top: 0;
  }

  .nav-menu.is-open > a,
  .nav-menu.is-open .nav-item > a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    min-height: auto;
  }

  .nav-dropdown {
    position: static;
    min-width: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    margin: 4px 0 10px;
    box-shadow: none;
  }

  .hero {
    min-height: 520px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .capability-heading {
    grid-template-columns: 1fr;
  }

  .capability-heading {
    gap: 18px;
  }

  .capability-heading > p,
  .feature-summary > p {
    margin-top: 0;
  }

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

  .news-layout {
    grid-template-columns: 1fr;
  }

  .news-list a {
    min-height: 86px;
    padding: 16px 22px;
  }

  .region-map-wrap {
    width: min(100% - 80px, 1160px);
  }

  .region-map {
    height: 540px;
    min-height: 0;
  }

  .feature-content {
    width: min(100% - 80px, 1160px);
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

@media (max-width: 720px) {
  .feature {
    padding: 36px 0;
  }

  .utility-bar,
  .navbar,
  .section,
  .site-footer,
  .capability-inner,
  .contact-strip {
    width: min(100% - 28px, 1160px);
  }

  .utility-bar {
    display: none;
  }

  .home-header .utility-bar {
    width: min(100% - 28px, 1160px);
    min-height: auto;
    display: flex;
    padding: 8px 14px;
  }

  .home-header .navbar {
    padding-right: 14px;
    padding-left: 14px;
  }

  .home-header.is-scrolled .utility-bar,
  .home-header.is-scrolled .navbar {
    width: 100%;
  }

  .home-header .utility-bar > p {
    display: none;
  }

  .home-header .utility-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .home-header .order-link {
    min-width: 0;
    min-height: 38px;
    padding: 5px 8px;
    text-align: center;
    white-space: normal;
    line-height: 1.35;
  }

  .home-header .program-panel.utility-program-panel {
    top: calc(100% + 76px);
    width: 100%;
  }

  .navbar {
    min-height: 68px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-logo-mark {
    width: 40px;
    height: 40px;
  }

  .brand-logo-full {
    width: min(206px, calc(100vw - 112px));
  }

  .brand strong {
    font-size: 18px;
  }

  .hero {
    min-height: 520px;
    height: auto;
  }

  .hero-content {
    min-height: 520px;
    padding-top: 123px;
    padding-right: 44px;
    padding-bottom: 70px;
    padding-left: 44px;
  }

  .hero-slide {
    object-position: 65% center;
  }

  .hero h1 {
    font-size: 32px;
  }

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

  .hero::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.45) 68%, rgba(255, 255, 255, 0.18));
  }

  .hero[data-tone="light"]::before {
    background: linear-gradient(90deg, rgba(19, 24, 28, 0.62), rgba(19, 24, 28, 0.32) 68%, rgba(19, 24, 28, 0.1));
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
  }

  .hero-arrow span {
    font-size: 36px;
  }

  .hero-arrow-prev {
    left: 12px;
  }

  .hero-arrow-next {
    right: 12px;
  }

  .hero-actions,
  .metrics,
  .service-grid,
  .news-layout,
  .news-list a,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .contact-strip {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 40px 0;
  }

  .services {
    padding-top: 36px;
    padding-bottom: 32px;
  }

  .link-hub.section {
    padding: 38px 0;
  }

  .link-hub-inner {
    width: min(100% - 28px, 1160px);
  }

  .link-hub-heading {
    display: block;
    margin-bottom: 24px;
  }

  .link-hub-heading h2 {
    font-size: 28px;
  }

  .link-hub-heading > p:last-child {
    margin-top: 14px;
  }

  .links-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .links-row a {
    aspect-ratio: 16 / 9;
  }

  .link-copy strong {
    font-size: 18px;
  }

  .link-copy {
    padding: 20px;
  }

  .link-copy em {
    width: 32px;
    height: 32px;
  }

  .section-heading h2,
  .capability-heading h2,
  .feature-content h2,
  .contact-strip h2 {
    font-size: 28px;
  }

  .service-card {
    min-height: auto;
  }

  .service-card h3 {
    min-height: 0;
  }

  .capability-band {
    scroll-margin-top: 68px;
    padding: 38px 0;
    margin-bottom: 0;
  }

  .capability-delivery {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .capability-delivery article {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .capability-delivery article:last-child {
    border-bottom: 0;
  }

  .capability-footer {
    align-items: stretch;
    flex-direction: column;
    margin-top: 26px;
  }

  .capability-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .capability-metrics div {
    padding: 0 8px;
    text-align: center;
  }

  .capability-metrics strong {
    font-size: 26px;
  }

  .capability-metrics span {
    font-size: 12px;
    line-height: 1.45;
  }

  .capability-footer .button {
    width: 100%;
  }

  .region-map-wrap {
    width: min(100% - 28px, 1160px);
  }

  .region-map {
    height: 390px;
  }

  .feature-content {
    width: min(100% - 28px, 1160px);
    margin-bottom: 20px;
  }

  .news {
    padding-top: 36px;
    padding-bottom: 40px;
  }

  .news-list a {
    grid-template-columns: 58px minmax(0, 1fr) 32px;
    gap: 12px;
    align-items: center;
    min-height: 100px;
    padding: 18px;
  }

  .news-feature {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: 180px 1fr;
  }

  .news-feature > img {
    height: 180px;
    aspect-ratio: auto;
  }

  .news-feature-content {
    padding: 22px;
    border-top: 4px solid var(--brand);
    border-left: 0;
  }

  .news-feature strong {
    font-size: 21px;
  }

  .news-list time b {
    font-size: 17px;
  }

  .news-list span strong {
    font-size: 15px;
  }

  .contact-strip {
    flex-direction: column;
    padding: 28px 22px;
    margin-bottom: 40px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 0 30px;
  }

  .footer-bottom div {
    justify-content: flex-start;
  }
}
