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

:root {
  --blue: #0033c3;
  --blue-dark: #071b57;
  --orange: #df511d;
  --ink: #172033;
  --muted: #667085;
  --line: #e6eaf0;
  --paper: #f5f7fb;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
  --radius: 8px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  padding-block: 14px;
  color: var(--white);
  background: rgba(7, 27, 87, 0.78);
  backdrop-filter: blur(10px);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  padding-block: 8px;
  background: rgba(7, 27, 87, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

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

.brand img {
  width: 130px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  isolation: isolate;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 27, 87, 0.94) 0%, rgba(7, 27, 87, 0.78) 48%, rgba(7, 27, 87, 0.2) 100%),
    url("images/naslovna.png") center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 160px;
  background: linear-gradient(180deg, transparent, rgba(7, 27, 87, 0.22));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: 48px;
  padding-block: 160px 80px;
}

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

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

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

h1 {
  max-width: 10ch;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  line-height: 1.04;
  letter-spacing: 0;
}

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

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.25;
}

.hero-copy p {
  max-width: 62ch;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

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

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--orange);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #c94514;
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.1);
}

.modernization .btn-secondary {
  color: var(--blue-dark);
  border-color: var(--line);
  background: var(--white);
}

.hero-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.years-badge {
  display: flex;
  width: min(100%, 230px);
  aspect-ratio: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  border: 7px solid #f3b543;
  border-radius: 50%;
  color: #f3b543;
}

.years-badge strong {
  display: block;
  width: 100%;
  font-size: clamp(6rem, 19vw, 8.3rem);
  line-height: 0.76;
  text-align: center;
}

.years-badge span {
  display: block;
  width: 78%;
  margin-top: 16px;
  color: var(--white);
  font-size: clamp(0.9rem, 2.5vw, 1.18rem);
  font-weight: 800;
  line-height: 0.95;
  text-align: center;
  text-transform: uppercase;
}

.hero-panel dl {
  margin: 0;
  display: grid;
  gap: 18px;
}

.hero-panel div {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-panel dt {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.hero-panel dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.section {
  padding-block: 100px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.services {
  background: var(--paper);
}

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 42px rgba(15, 23, 42, 0.08);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card div {
  padding: 24px;
}

.service-card p,
.feature p,
.machine-copy p,
.retail p {
  color: var(--muted);
}

.service-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--orange);
  font-weight: 700;
}

.feature-dark {
  color: var(--white);
  background: var(--blue-dark);
}

.feature-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 58px;
}

.feature-grid img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.modernization {
  background: linear-gradient(180deg, var(--white) 0%, var(--paper) 100%);
}

.machine-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 38px;
  align-items: center;
}

.machine-copy {
  padding: 34px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--blue);
}

.machine-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.machine-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-items: center;
}

.machine-images img {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 52px rgba(15, 23, 42, 0.1);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.stats-row div {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-align: center;
}

.stats-row strong {
  display: block;
  color: var(--orange);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1;
}

.stats-row span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

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

.principles {
  color: var(--white);
  background: #232323;
}

.principles-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
}

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

.principles li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.18rem;
  line-height: 1.45;
}

.principles li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}

.partners {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 18px;
  margin-top: 42px;
}

.partners img {
  width: 100%;
  height: 92px;
  max-height: none;
  object-fit: contain;
  padding: 20px 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: #151515;
}

.technology-logo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 42px);
  width: min(100%, 820px);
  margin: 44px auto 0;
}

.technology-logo-card {
  display: grid;
  min-height: 150px;
  place-items: center;
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
}

.technology-logo-card img {
  width: min(100%, 190px);
  max-height: 82px;
  object-fit: contain;
}

.service-page-content {
  text-align: left;
}

.service-page-content > p {
  max-width: 86ch;
  color: #1f2937;
  text-align: justify;
}

.service-switcher {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 760px);
  margin: 0 auto 42px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.service-switcher a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: var(--radius);
  color: var(--blue-dark);
  font-weight: 600;
  text-align: center;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.service-switcher a:hover,
.service-switcher a:focus-visible {
  background: var(--white);
}

.service-switcher a.active {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(0, 51, 195, 0.18);
}

.service-intro {
  display: grid;
  gap: 16px;
  max-width: 86ch;
  margin-bottom: 34px;
}

.service-intro p {
  margin: 0;
  color: #1f2937;
  text-align: justify;
}

.subservice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.subservice-card {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 26px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.subservice-card h2 {
  margin-bottom: 14px;
  color: var(--blue-dark);
  font-size: clamp(1.65rem, 3vw, 2.45rem);
}

.subservice-card p {
  margin-bottom: 0;
  color: var(--muted);
  text-align: left;
}

.subservice-kicker {
  margin-bottom: 10px !important;
  color: var(--orange) !important;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.capacity-card,
.capacity-band {
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(0, 51, 195, 0.1), rgba(0, 51, 195, 0.03));
}

.capacity-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 6px 18px;
  padding: 22px;
  border: 1px solid rgba(0, 51, 195, 0.16);
}

.capacity-card span,
.capacity-band span {
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 600;
}

.capacity-card small,
.capacity-band small {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 400;
}

.capacity-card strong {
  grid-row: span 2;
  color: var(--blue);
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 0.9;
}

.capacity-card em {
  grid-column: 2;
  color: var(--blue);
  font-style: normal;
  font-weight: 700;
  text-align: right;
}

.capacity-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 48px 0;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(0, 51, 195, 0.16);
}

.capacity-band strong {
  color: var(--blue);
  font-size: clamp(3.4rem, 8vw, 6rem);
  line-height: 0.95;
  white-space: nowrap;
}

.capacity-band em {
  color: var(--blue);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-style: normal;
  font-weight: 700;
}

.director-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: end;
  margin-top: 56px;
  padding: clamp(28px, 5vw, 56px);
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.director-copy {
  position: relative;
  z-index: 1;
}

.director-kicker {
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.director-card h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.director-title {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.director-card blockquote {
  position: relative;
  margin: 0;
  padding-left: 24px;
  border-left: 4px solid var(--orange);
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.1rem, 2vw, 1.42rem);
  line-height: 1.55;
  text-align: left;
}

.director-card figure {
  align-self: end;
  margin: 0;
}

.director-card img {
  width: min(100%, 430px);
  margin-inline: auto;
  filter: drop-shadow(0 22px 38px rgba(0, 0, 0, 0.22));
}

.related-page-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 44px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  text-align: left;
}

.related-page-card h2 {
  max-width: 720px;
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(1.55rem, 3vw, 2.4rem);
}

.related-page-kicker {
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-section {
  position: relative;
  background: #eef1f3;
}

.arel-map {
  width: 100%;
  height: 360px;
  z-index: 1;
  overflow: hidden;
}

.arel-map .leaflet-pane,
.arel-map .leaflet-tile,
.arel-map .leaflet-marker-icon,
.arel-map .leaflet-marker-shadow,
.arel-map .leaflet-tile-container,
.arel-map .leaflet-pane > svg,
.arel-map .leaflet-pane > canvas {
  position: absolute;
  left: 0;
  top: 0;
}

.arel-map .leaflet-container,
.arel-map.leaflet-container {
  overflow: hidden;
}

.arel-map .leaflet-control-container {
  position: relative;
  z-index: 800;
}

.arel-map .leaflet-top,
.arel-map .leaflet-bottom {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
}

.arel-map .leaflet-top {
  top: 10px;
}

.arel-map .leaflet-left {
  left: 10px;
}

.arel-map .leaflet-control {
  position: relative;
  z-index: 1000;
  pointer-events: auto;
}

.arel-map .leaflet-control-zoom a {
  color: var(--blue-dark);
}

.arel-map .leaflet-popup-content-wrapper {
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.18);
}

.arel-map-popup strong {
  display: block;
  color: var(--blue);
  font-size: 1rem;
  margin-bottom: 4px;
}

.arel-map-popup span {
  display: block;
  color: var(--muted);
}

.arel-map-popup a {
  display: inline-flex;
  margin-top: 10px;
  padding: 7px 10px;
  border-radius: 6px;
  color: var(--white);
  background: var(--blue);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.arel-map-marker {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 50% 50% 50% 0;
  background: var(--orange);
  box-shadow: 0 10px 26px rgba(223, 81, 29, 0.38);
  transform: rotate(-45deg);
}

.arel-map-marker::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
}

.site-footer {
  color: var(--white);
  background: var(--blue);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  gap: 36px;
  padding-block: 64px;
}

.footer-grid address {
  font-style: normal;
}

.footer-grid strong {
  display: block;
  margin-bottom: 12px;
}

.footer-grid a {
  display: block;
  width: max-content;
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid a + a {
  margin-top: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.18);
}

.footer-bottom .container {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding-block: 16px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

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

.back-top-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 15;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
  background: var(--orange);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}

.back-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 96px 16px auto;
    display: grid;
    gap: 4px;
    padding: 14px;
    border-radius: var(--radius);
    background: var(--blue-dark);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 13px 14px;
  }

  .hero-grid,
  .feature-grid,
  .machine-grid,
  .principles-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-block: 150px 64px;
  }

  .hero-panel {
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: center;
  }

  .years-badge {
    width: min(100%, 220px);
    margin-bottom: 0;
  }

  .hero-panel dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .hero-panel div {
    padding: 0 22px;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }

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

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .brand img {
    width: 68px;
  }

  .site-nav {
    inset-top: 82px;
  }

  .hero-grid {
    gap: 28px;
    padding-block: 128px 52px;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .years-badge {
    min-height: 0;
  }

  .hero-panel dl {
    grid-template-columns: 1fr;
  }

  .hero-panel div {
    padding: 16px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  h1 {
    font-size: 3.5rem;
  }

  .section {
    padding-block: 68px;
  }

  .hero-actions,
  .footer-bottom .container {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .machine-images,
  .stats-row,
  .partners {
    grid-template-columns: 1fr;
  }

  .partners img {
    max-width: 220px;
    height: 92px;
    margin-inline: auto;
  }

  .technology-logo-grid {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .technology-logo-card {
    min-height: 130px;
    padding: 34px;
  }

  .service-switcher,
  .subservice-grid {
    grid-template-columns: 1fr;
  }

  .service-switcher {
    margin-bottom: 30px;
  }

  .capacity-card {
    grid-template-columns: 1fr;
  }

  .capacity-card strong,
  .capacity-card em {
    grid-column: auto;
    grid-row: auto;
    text-align: left;
  }

  .capacity-band {
    display: grid;
    gap: 18px;
  }

  .capacity-band strong {
    white-space: normal;
  }

  .director-card {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .director-card figure {
    order: -1;
  }

  .director-card img {
    max-width: 280px;
  }

  .related-page-card {
    display: grid;
  }

  .arel-map {
    height: 300px;
  }
}

/* Inner-page support */
.site-header ~ .hero {
  min-height: 560px;
  padding-block: 145px 60px;
  background-size: cover;
  background-position: center;
}

.about-hero {
  overflow: hidden;
  background-position: center;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 27, 87, 0.28), rgba(7, 27, 87, 0.02));
  pointer-events: none;
}

.about-hero-inner {
  position: relative;
  min-height: 560px;
}

.about-hero-inner > .container {
  display: none !important;
}

.about-hero-person {
  position: absolute;
  left: 56px;
  bottom: -80px;
  z-index: 2;
  width: min(600px, 32vw);
}

.about-hero-card {
  position: absolute;
  right: 0;
  bottom: 54px;
  z-index: 3;
  width: min(590px, 58vw);
  padding: 34px;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(7, 27, 87, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  text-align: left;
}

.about-hero-card h1 {
  margin-bottom: 12px;
  max-width: none;
  color: var(--white);
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.98;
}

.about-hero-label,
.about-hero-lead,
.about-hero-title {
  margin: 0;
}

.about-hero-label {
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-hero-lead {
  max-width: 28ch;
  color: var(--white);
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  font-weight: 700;
  line-height: 1.18;
}

.about-hero-title {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.retail-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 27, 87, 0.08) 0%, rgba(7, 27, 87, 0.18) 52%, rgba(7, 27, 87, 0.5) 100%);
  pointer-events: none;
}

.retail-page-hero-title {
  z-index: 3;
  padding-bottom: 42px;
}

.retail-page-hero-title .hero-title {
  display: inline-flex;
  width: auto;
  max-width: 100%;
  margin: 0;
  padding: 20px 28px;
  border-radius: var(--radius);
  color: var(--white) !important;
  background: rgba(7, 27, 87, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.h1,
.h2,
.h3,
.h4 {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.15;
}

.h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.h3 {
  font-size: 1.45rem;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  color: var(--white);
}

.hero-text,
.section-text {
  color: inherit;
}

.section-divider {
  position: relative;
}

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

.w-100 {
  width: 100%;
}

@media (max-width: 980px) {
  .site-header ~ .hero {
    min-height: 440px;
    padding-block: 120px 50px;
  }

  .about-hero-inner {
    min-height: 500px;
  }

  .about-hero-person {
    width: min(290px, 44vw);
  }

  .about-hero-card {
    right: 0;
    bottom: 34px;
    width: min(520px, 66vw);
    padding: 26px;
  }
}

@media (max-width: 680px) {
  .site-header ~ .hero {
    min-height: 360px;
    padding-block: 104px 42px;
  }

  .site-header ~ .hero .hero-title {
    font-size: 3rem;
  }

  .about-hero {
    background-position: 58% center;
  }

  .about-hero-inner {
    min-height: 460px;
  }

  .about-hero-person {
    left: -46px;
    width: 220px;
  }

  .about-hero-card {
    right: 0;
    bottom: 24px;
    width: calc(100% - 96px);
    padding: 22px;
  }

  .about-hero-card h1 {
    font-size: 2.5rem;
  }

  .about-hero-lead {
    font-size: 1.15rem;
  }

  .retail-page-hero-title {
    padding-bottom: 26px;
  }

  .retail-page-hero-title .hero-title {
    padding: 16px 20px;
    font-size: 2.7rem;
  }
}
