:root {
  --charcoal: #171a1f;
  --coal: #222831;
  --steel: #68717c;
  --line: #d7dde4;
  --mist: #f4f7f8;
  --white: #ffffff;
  --green: #02380d;
  --green-dark: #012407;
  --gold: #d8a31f;
  --red: #b52b32;
  --shadow: 0 20px 50px rgba(20, 31, 43, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--coal);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: var(--white);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 24px rgba(11, 19, 31, 0.08);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 6px clamp(18px, 5vw, 72px);
  color: var(--white);
  font-size: 0.8rem;
  background:
    linear-gradient(90deg, var(--green-dark) 0 36%, var(--green) 36% 70%, var(--charcoal) 70% 100%);
}

.topbar p {
  margin: 0;
  font-weight: 700;
  white-space: nowrap;
}

.topbar__controls {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.language-selector {
  position: relative;
}

.language-selector::before {
  content: "";
  width: 1px;
  height: 18px;
  margin-left: -8px;
  background: rgba(255, 255, 255, 0.34);
}

.country-selector,
.language-selector {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  min-height: 28px;
  padding: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.control-label {
  padding: 0 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.country-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 24px;
  padding: 3px 6px;
  border: 1px solid transparent;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.72rem;
  font-weight: 800;
  background: transparent;
  cursor: pointer;
  border-radius: 3px;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.country-option img {
  width: 19px;
  height: 13px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.country-name--short {
  display: none;
}

.country-option:hover,
.country-option:focus,
.country-option.is-active {
  color: var(--charcoal);
  background: var(--white);
}

.country-option.is-active {
  border-color: var(--gold);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.language-selector {
  gap: 4px;
  padding-left: 6px;
}

.language-select {
  min-height: 24px;
  border: 0;
  padding: 2px 22px 2px 7px;
  color: var(--charcoal);
  font-size: 0.72rem;
  font-weight: 800;
  background: var(--white);
  cursor: pointer;
  border-radius: 3px;
}

.language-select:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.topbar__details {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  font-size: 0.78rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 16px clamp(18px, 5vw, 72px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 280px;
}

.brand__logo {
  width: 206px;
  height: auto;
  max-height: 62px;
  object-fit: contain;
  object-position: center;
  box-shadow: 0 8px 22px rgba(11, 31, 43, 0.12);
}

.brand small {
  display: block;
}

.brand small {
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 8px;
  border-left: 3px solid var(--gold);
  background: var(--mist);
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav__links > li {
  position: relative;
}

.nav__links a {
  display: block;
  padding: 10px 14px;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav__links a:hover,
.nav__links a:focus {
  color: var(--green);
}

.nav__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  padding: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 180ms ease;
}

.nav__dropdown:hover .nav__submenu,
.nav__dropdown:focus-within .nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__submenu a {
  padding: 10px 12px;
  text-transform: none;
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--white);
}

.nav__toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--charcoal);
}

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

.hero__slides,
.hero__slide {
  position: absolute;
  inset: 0;
}

.hero__slide {
  opacity: 0;
  transition: opacity 800ms ease;
}

.hero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 22, 30, 0.92), rgba(16, 22, 30, 0.42), rgba(16, 22, 30, 0.7)),
    linear-gradient(180deg, rgba(2, 56, 13, 0.3), transparent 42%);
}

.hero__slide.is-active {
  opacity: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 8vw, 110px);
  padding-block: 90px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.contact h2 {
  margin: 0;
  line-height: 1.08;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(2.15rem, 5vw, 4.8rem);
  letter-spacing: 0;
}

.hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 2px solid transparent;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.button--primary {
  color: var(--charcoal);
  background: var(--gold);
}

.button--primary:hover,
.button--primary:focus {
  background: #efbd3a;
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.68);
}

.button--ghost:hover,
.button--ghost:focus {
  border-color: var(--gold);
  color: var(--gold);
}

.hero__dots {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 5vw, 72px);
  bottom: 42px;
  display: flex;
  gap: 10px;
}

.hero__dots button {
  width: 42px;
  height: 5px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

.hero__dots button.is-active {
  background: var(--gold);
}

.section {
  padding: clamp(64px, 9vw, 110px) clamp(18px, 5vw, 72px);
}

.section__intro {
  max-width: 760px;
  margin-bottom: 38px;
}

.section__intro--center {
  max-width: 840px;
  margin-inline: auto;
  text-align: center;
}

.section h2,
.contact h2 {
  color: var(--charcoal);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section__intro p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--steel);
  font-size: 1.05rem;
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
}

.about__copy p {
  margin: 0 0 18px;
  color: #3d4650;
}

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

.about__list li {
  padding: 12px 14px;
  border-left: 4px solid var(--green);
  background: var(--mist);
}

.about__image {
  height: min(620px, 78vh);
  min-height: 420px;
  margin: 0;
  box-shadow: var(--shadow);
}

.products {
  background: var(--mist);
}

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

.product-card {
  display: grid;
  grid-template-rows: 220px 1fr;
  min-height: 470px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(20, 31, 43, 0.08);
}

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

.product-card h3 {
  margin: 0 0 12px;
  color: var(--charcoal);
  font-size: 1.35rem;
}

.product-card p {
  margin: 0;
  color: var(--steel);
}

.detail-strip {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(23, 26, 31, 0.96), rgba(2, 56, 13, 0.88)),
    url("assets/optimized/karam-industries-hero.jpg") center/cover;
}

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

.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.detail-grid article {
  min-height: 330px;
  padding: 28px;
  background: rgba(23, 26, 31, 0.78);
  backdrop-filter: blur(4px);
}

.detail-grid span {
  display: block;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

.detail-grid h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 1.25rem;
}

.detail-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

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

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

.catalogue-card {
  display: grid;
  grid-template-rows: 210px 1fr;
  min-height: 520px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(20, 31, 43, 0.07);
}

.catalogue-card--wide {
  grid-column: span 3;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.35fr);
  grid-template-rows: auto;
  min-height: 420px;
}

.catalogue-card__media {
  min-height: 210px;
  background: var(--charcoal);
}

.catalogue-card__body {
  padding: 24px;
}

.catalogue-card__label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalogue-card h3,
.process-panel h3 {
  margin: 0 0 14px;
  color: var(--charcoal);
  font-size: 1.45rem;
  line-height: 1.2;
}

.catalogue-card h4 {
  margin: 0 0 10px;
  color: var(--charcoal);
  font-size: 1rem;
}

.catalogue-card p {
  margin: 0 0 18px;
  color: var(--steel);
}

.catalogue-card ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.catalogue-card li {
  position: relative;
  padding-left: 18px;
  color: #3d4650;
}

.catalogue-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  background: var(--gold);
}

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

.catalogue-note {
  margin-top: 22px;
  padding: 16px;
  color: #3d4650;
  background: var(--mist);
  border-left: 4px solid var(--green);
}

.catalogue-note strong {
  color: var(--charcoal);
}

.process-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 28px;
  align-items: center;
  margin-top: 24px;
  padding: 28px;
  color: var(--white);
  background: var(--charcoal);
}

.process-panel h3 {
  color: var(--white);
}

.process-panel ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: process;
}

.process-panel li {
  min-height: 120px;
  padding: 18px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  counter-increment: process;
}

.process-panel li::before {
  content: counter(process, decimal-leading-zero);
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
}

.capacity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1px;
  background: var(--line);
}

.capacity-grid div {
  display: grid;
  gap: 8px;
  min-height: 132px;
  align-content: center;
  padding: 20px;
  background: var(--mist);
}

.capacity-grid strong {
  color: var(--charcoal);
  font-size: 1.55rem;
  line-height: 1.1;
}

.capacity-grid span {
  color: var(--steel);
  font-weight: 800;
}

.gallery__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.gallery__filters button {
  min-height: 42px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  color: var(--charcoal);
  background: var(--white);
  cursor: pointer;
}

.gallery__filters button.is-active,
.gallery__filters button:hover {
  color: var(--white);
  border-color: var(--green);
  background: var(--green);
}

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

.gallery__grid figure {
  position: relative;
  height: 270px;
  margin: 0;
  overflow: hidden;
  background: var(--charcoal);
}

.gallery__grid figure.is-hidden {
  display: none;
}

.gallery__grid figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  color: var(--white);
  font-weight: 900;
  background: rgba(23, 26, 31, 0.82);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(2, 56, 13, 0.94), rgba(1, 36, 7, 0.94)),
    url("assets/optimized/copper-cables.jpg") center/cover;
}

.metrics div {
  min-height: 210px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.metrics strong {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1;
}

.metrics span {
  font-weight: 800;
  text-transform: uppercase;
}

.contact {
  background: linear-gradient(180deg, var(--white), var(--mist));
}

.contact__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
  padding: clamp(28px, 5vw, 60px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact__panel p:not(.eyebrow) {
  color: var(--steel);
}

.contact__details {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  color: var(--charcoal);
  font-weight: 800;
  padding: 20px;
  background: var(--mist);
  border-left: 4px solid var(--green);
}

.contact__details a {
  color: var(--green);
}

.contact__details strong {
  color: var(--charcoal);
}

.contact__details small {
  color: var(--steel);
  font-weight: 700;
}

.regional-company {
  color: var(--green-dark);
  letter-spacing: 0.08em;
}

.whatsapp-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  margin-top: 8px;
  padding: 7px 11px;
  color: var(--white) !important;
  font-size: 0.84rem;
  font-weight: 900;
  background: #02380d;
  border: 1px solid rgba(2, 56, 13, 0.28);
  border-radius: 3px;
  box-shadow: 0 8px 18px rgba(2, 56, 13, 0.14);
}

.whatsapp-link:hover,
.whatsapp-link:focus {
  background: #012c09;
}

.whatsapp-link__icon {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  color: #02380d;
  font-size: 0.58rem;
  font-weight: 900;
  background: var(--white);
  border-radius: 50%;
}

.whatsapp-link--footer {
  min-height: 32px;
  margin: 4px 0 10px;
  padding: 7px 10px;
  font-size: 0.8rem;
}

.quote-form {
  display: grid;
  gap: 16px;
}

.quote-form label {
  display: grid;
  gap: 6px;
  color: var(--charcoal);
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 12px 14px;
  color: var(--charcoal);
  background: var(--mist);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 3px solid rgba(216, 163, 31, 0.35);
  border-color: var(--gold);
}

.destination-field {
  position: relative;
}

.destination-combobox {
  position: relative;
}

.destination-results {
  position: absolute;
  z-index: 30;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  display: none;
  max-height: 286px;
  overflow-y: auto;
  border: 1px solid rgba(2, 56, 13, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(23, 26, 31, 0.16);
}

.destination-results.is-open {
  display: block;
}

.destination-results__summary {
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 9px 12px;
  color: rgba(23, 26, 31, 0.68);
  background: #f7f8f5;
  border-bottom: 1px solid rgba(23, 26, 31, 0.08);
  font-size: 0.76rem;
  font-weight: 900;
}

.destination-option {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  border-bottom: 1px solid rgba(23, 26, 31, 0.08);
  padding: 10px 12px;
  color: var(--charcoal);
  background: var(--white);
  text-align: left;
  cursor: pointer;
}

.destination-option:last-child {
  border-bottom: 0;
}

.destination-option:hover,
.destination-option:focus {
  color: var(--white);
  background: var(--green);
  outline: none;
}

.destination-option span {
  min-width: 0;
  font-weight: 800;
}

.destination-option small {
  flex: 0 0 auto;
  color: rgba(23, 26, 31, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
}

.destination-option:hover small,
.destination-option:focus small {
  color: rgba(255, 255, 255, 0.74);
}

.destination-results__empty {
  padding: 12px;
  color: rgba(23, 26, 31, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
}

.destination-coverage,
.destination-help {
  margin-top: -1px;
  color: rgba(23, 26, 31, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.45;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(170px, 0.7fr));
  gap: 38px;
  padding: 54px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--charcoal);
}

.subpage-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  padding: clamp(64px, 9vw, 110px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(3, 57, 47, 0.96), rgba(23, 26, 31, 0.9)),
    url("assets/optimized/karam-industries-hero.jpg") center/cover;
}

.subpage-hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(2.15rem, 4.6vw, 4.4rem);
  line-height: 1.08;
}

.subpage-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
}

.subpage-hero__media {
  min-height: 360px;
  margin: 0;
  box-shadow: var(--shadow);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--gold);
}

.seo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.seo-copy {
  display: grid;
  gap: 24px;
}

.seo-copy article,
.seo-aside,
.search-panel {
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(20, 31, 43, 0.06);
}

.seo-copy h2,
.seo-copy h3,
.seo-aside h2,
.search-panel h2 {
  margin: 0 0 12px;
  color: var(--charcoal);
  line-height: 1.18;
}

.seo-copy p,
.seo-aside p,
.search-card p {
  margin: 0 0 14px;
  color: var(--steel);
}

.seo-copy ul,
.seo-aside ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.seo-copy li,
.seo-aside li {
  position: relative;
  padding-left: 18px;
  color: #3d4650;
}

.seo-copy li::before,
.seo-aside li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  background: var(--gold);
}

.seo-copy .button--ghost {
  color: var(--green);
  border-color: var(--green);
}

.seo-copy .button--ghost:hover,
.seo-copy .button--ghost:focus {
  color: var(--charcoal);
  border-color: var(--gold);
}

.faq-block {
  display: grid;
  gap: 10px;
}

.faq-block details {
  border: 1px solid var(--line);
  background: var(--mist);
}

.faq-block summary {
  padding: 14px 16px;
  color: var(--charcoal);
  font-weight: 900;
  cursor: pointer;
}

.faq-block details p {
  margin: 0;
  padding: 0 16px 16px;
}

.seo-aside {
  position: sticky;
  top: 128px;
}

.seo-aside a {
  display: block;
  margin-top: 9px;
  color: var(--green);
  font-weight: 900;
}

.fact-list {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
}

.fact-list div {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.fact-list dt {
  margin-bottom: 2px;
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fact-list dd {
  margin: 0;
  color: var(--steel);
  font-weight: 700;
}

.search-tools {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) repeat(3, minmax(150px, 0.32fr));
  gap: 12px;
  margin-top: 22px;
}

.search-tools input,
.search-tools select {
  min-height: 48px;
  border: 1px solid var(--line);
  padding: 10px 12px;
  background: var(--mist);
}

.search-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.search-summary {
  margin: 16px 0 0;
  color: var(--green-dark);
  font-weight: 900;
}

.search-card {
  display: grid;
  grid-template-rows: 160px 1fr;
  border: 1px solid var(--line);
  background: var(--white);
}

.search-card__body {
  padding: 18px;
}

.search-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  line-height: 1.22;
}

.search-card a {
  color: var(--green);
  font-weight: 900;
}

.search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.search-tags span {
  padding: 4px 7px;
  color: var(--charcoal);
  font-size: 0.72rem;
  font-weight: 900;
  background: var(--mist);
}

.footer h3 {
  margin: 0 0 14px;
  color: var(--white);
}

.footer a,
.footer span {
  display: block;
  margin-bottom: 8px;
}

.footer .footer-time {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
}

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

.brand--footer {
  color: var(--white);
  margin-bottom: 18px;
}

.brand--footer .brand__logo {
  box-shadow: none;
}

.brand--footer small {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 980px) {
  .topbar,
  .topbar__details {
    justify-content: center;
    text-align: center;
  }

  .topbar {
    flex-direction: column;
    gap: 6px;
    padding-block: 6px;
  }

  .topbar__controls {
    width: 100%;
    gap: 10px;
  }

  .country-selector {
    width: auto;
    max-width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .control-label {
    width: auto;
    padding-block: 0;
  }

  .country-option {
    flex: 0 0 auto;
    justify-content: center;
  }

  .language-selector {
    width: auto;
  }

  .language-select {
    width: 112px;
  }

  .nav {
    align-items: flex-start;
  }

  .nav__toggle {
    display: block;
  }

  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 18px 20px;
    background: var(--white);
    box-shadow: 0 20px 32px rgba(11, 19, 31, 0.12);
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav > .brand + .nav__links {
    position: static;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    box-shadow: none;
  }

  .nav__links a {
    padding: 12px 0;
  }

  .nav__submenu {
    position: static;
    display: grid;
    min-width: 0;
    padding: 0 0 0 18px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .hero {
    min-height: 660px;
  }

  .about__grid,
  .contact__panel,
  .subpage-hero,
  .seo-layout {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .gallery__grid,
  .detail-grid,
  .catalogue__grid,
  .capacity-grid,
  .process-panel ol,
  .search-results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalogue-card--wide,
  .process-panel {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

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

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

  .seo-aside {
    position: static;
  }

  .search-tools {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .nav {
    flex-wrap: wrap;
    gap: 12px;
    padding-block: 12px;
  }

  .nav > .brand > span {
    display: none;
  }

  .nav > .brand + .nav__links {
    width: 100%;
    justify-content: flex-start;
    gap: 2px 8px;
  }

  .nav > .brand + .nav__links a {
    padding: 6px 6px;
    font-size: 0.76rem;
    line-height: 1.1;
  }

  .country-name--full {
    display: none;
  }

  .country-name--short {
    display: inline;
  }

  .country-option {
    min-width: 52px;
  }

  .brand {
    min-width: 0;
  }

  .brand__logo {
    width: 152px;
    max-height: 48px;
  }

  .brand small {
    font-size: 0.65rem;
    padding: 4px 6px;
  }

  .destination-option {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .destination-option small {
    flex: initial;
  }

  .hero {
    min-height: 640px;
  }

  .hero__content {
    width: calc(100% - 36px);
    margin-inline: 18px;
    padding-block: 72px 96px;
  }

  .hero h1 {
    max-width: 440px;
    font-size: 2.35rem;
    line-height: 1.12;
  }

  .hero p:not(.eyebrow) {
    max-width: 420px;
    font-size: 1rem;
  }

  .hero__dots {
    left: 18px;
    right: auto;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .product-grid,
  .gallery__grid,
  .detail-grid,
  .catalogue__grid,
  .spec-columns,
  .process-panel,
  .capacity-grid,
  .process-panel ol,
  .metrics,
  .search-results {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 0;
    grid-template-rows: 210px 1fr;
  }

  .gallery__grid figure {
    height: 240px;
  }
}
