:root {
  --navy-950: #041d3a;
  --navy-900: #062a55;
  --navy-800: #09376d;
  --navy-700: #0d4a89;
  --orange: #ff6a00;
  --orange-dark: #df5700;
  --ice: #eef4f6;
  --mist: #dbe7eb;
  --paper: #f8faf9;
  --white: #ffffff;
  --ink: #0b2239;
  --muted: #5a6c7c;
  --line: #d8e1e5;
  --shadow: 0 24px 60px rgba(4, 29, 58, 0.13);
  --shell: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
}

img,
svg {
  display: block;
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(255, 106, 0, 0.8);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 84px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(6, 42, 85, 0.08);
  transition: box-shadow 0.25s ease, height 0.25s ease;
}

.site-header.is-scrolled {
  height: 72px;
  box-shadow: 0 8px 28px rgba(4, 29, 58, 0.1);
}

.header-inner {
  width: var(--shell);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.brand {
  display: flex;
  align-items: center;
  width: 190px;
  height: 68px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  color: var(--navy-900);
  font-size: 0.85rem;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.22s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

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

.button-small {
  min-height: 44px;
  padding-inline: 20px;
}

.button-small svg {
  width: 17px;
}

.header-cta {
  margin-left: 4px;
}

.hero {
  position: relative;
  min-height: 760px;
  height: 92vh;
  max-height: 930px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 50% 53%;
  filter: saturate(0.88) contrast(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(2, 21, 43, 0.92) 0%, rgba(4, 31, 62, 0.72) 46%, rgba(5, 37, 68, 0.22) 78%),
    linear-gradient(0deg, rgba(2, 20, 40, 0.5) 0%, transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 82px;
}

.eyebrow {
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-700);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

.eyebrow-light {
  color: rgba(255, 255, 255, 0.82);
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(4rem, 7.3vw, 7rem);
  font-weight: 850;
  letter-spacing: -0.065em;
  line-height: 0.93;
}

.hero h1 span,
.capacity-copy h2 span {
  color: var(--orange);
}

.hero-intro {
  max-width: 660px;
  margin: 28px 0 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.65;
}

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

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.48);
}

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

.hero-scroll {
  position: absolute;
  z-index: 2;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-scroll svg {
  width: 24px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
}

.facts {
  position: relative;
  z-index: 5;
  color: var(--white);
  background: var(--navy-900);
}

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

.fact {
  min-height: 125px;
  padding: 30px 36px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.fact:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.fact-icon {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.fact div {
  display: flex;
  flex-direction: column;
}

.fact strong {
  font-size: 1.02rem;
}

.fact div span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
}

.section {
  padding: 118px 0;
}

.services-section {
  background:
    linear-gradient(rgba(6, 42, 85, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 42, 85, 0.025) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
}

.section-heading {
  margin-bottom: 56px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 80px;
}

.section-heading h2,
.environment-copy h2,
.about-title h2,
.contact-info h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(2.4rem, 4.4vw, 4.2rem);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.section-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1.03rem;
}

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

.service-card {
  position: relative;
  min-height: 340px;
  padding: 34px 28px;
  background: rgba(255, 255, 255, 0.72);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.service-card:hover {
  z-index: 2;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.service-number {
  color: #91a0aa;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 38px 0 28px;
  display: grid;
  place-items: center;
  color: var(--navy-700);
  background: var(--ice);
  border-radius: 50%;
}

.service-icon svg {
  width: 40px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.capacity-list h3 {
  margin: 0 0 10px;
  color: var(--navy-900);
  font-size: 1.18rem;
  line-height: 1.25;
}

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

.service-card-featured {
  color: var(--white);
  background: var(--navy-900);
}

.service-card-featured:hover {
  background: var(--navy-800);
}

.service-card-featured .service-number,
.service-card-featured p {
  color: rgba(255, 255, 255, 0.64);
}

.service-card-featured .service-icon {
  color: var(--white);
  background: var(--orange);
}

.service-card-featured h3 {
  color: var(--white);
}

.operations-section {
  padding-top: 104px;
  background: var(--white);
}

.operations-heading {
  margin-bottom: 42px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 80px;
}

.operations-heading h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(2.4rem, 4.4vw, 4.2rem);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.operations-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1.03rem;
}

.operations-gallery {
  width: min(920px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.operations-gallery figure {
  position: relative;
  height: 390px;
  margin: 0;
  overflow: hidden;
  background: var(--ice);
}

.operations-gallery figure:nth-child(2) {
  margin-top: 34px;
}

.operations-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.operations-gallery figure:hover img {
  transform: scale(1.025);
}

.capacity-section {
  padding: 126px 0;
  color: var(--white);
  background:
    linear-gradient(130deg, rgba(6, 42, 85, 0.98), rgba(3, 23, 47, 0.98)),
    var(--navy-950);
  overflow: hidden;
}

.capacity-grid {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 110px;
}

.capacity-copy h2 {
  margin: 0;
  font-size: clamp(3rem, 5.4vw, 5.35rem);
  font-weight: 850;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.capacity-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 30px 0 28px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.04rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 850;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 5px;
}

.text-link svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.capacity-list article {
  padding: 23px 0;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.capacity-list article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.capacity-list article > span {
  padding-top: 3px;
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.capacity-list h3 {
  color: var(--white);
}

.capacity-list p {
  color: rgba(255, 255, 255, 0.62);
}

.environment-section {
  background: var(--ice);
}

.environment-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  align-items: center;
  gap: 100px;
}

.environment-mark {
  width: min(340px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--navy-700);
  background: var(--mist);
  border-radius: 50%;
}

.environment-mark svg {
  width: 47%;
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.environment-copy p:last-child {
  max-width: 700px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.07rem;
}

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

.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 110px;
}

.about-copy {
  padding-top: 4px;
}

.about-copy p {
  margin: 0 0 20px;
  color: var(--muted);
}

.about-copy .about-lead {
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.55;
}

.contact-section {
  padding: 120px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 4% 90%, rgba(13, 74, 137, 0.65), transparent 32%),
    var(--navy-950);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: 90px;
}

.contact-info h2 {
  color: var(--white);
}

.contact-intro {
  max-width: 480px;
  margin: 24px 0 36px;
  color: rgba(255, 255, 255, 0.67);
}

.contact-links {
  display: grid;
  gap: 10px;
}

.contact-links a {
  padding: 11px 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-link-icon {
  width: 42px;
  height: 42px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--orange);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-link-icon svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-links a > span:last-child {
  display: flex;
  flex-direction: column;
}

.contact-links small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-links strong {
  font-size: 0.98rem;
}

.hours {
  margin-top: 30px;
  padding: 20px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.hours span {
  grid-row: 1 / 3;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hours strong {
  font-size: 1.05rem;
  text-align: right;
}

.hours small {
  color: rgba(255, 255, 255, 0.55);
  text-align: right;
}

.form-card {
  padding: 42px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.form-heading {
  margin-bottom: 28px;
}

.form-heading > span {
  color: var(--navy-900);
  font-size: 1.35rem;
  font-weight: 850;
}

.form-heading p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

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

form label {
  margin-bottom: 16px;
  display: block;
}

form label > span {
  margin-bottom: 7px;
  display: block;
  color: var(--navy-900);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

input,
select,
textarea {
  width: 100%;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #cad5da;
  border-radius: 2px;
  outline: none;
  transition: background 0.2s ease, border 0.2s ease, box-shadow 0.2s ease;
}

input,
select {
  height: 49px;
  padding: 0 13px;
}

textarea {
  min-height: 118px;
  padding: 11px 13px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  background: var(--white);
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(13, 74, 137, 0.12);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  margin: 12px 0 0;
  color: #768690;
  font-size: 0.73rem;
  line-height: 1.45;
  text-align: center;
}

.form-note a {
  color: var(--navy-700);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.bot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

footer {
  padding: 36px 0;
  color: rgba(255, 255, 255, 0.64);
  background: #02162b;
}

.footer-inner {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 42px;
}

.footer-brand {
  height: 60px;
  overflow: hidden;
  background: var(--white);
}

.footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: 0.77rem;
}

.footer-meta a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.back-to-top svg {
  width: 18px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
}

.simple-page,
.policy-page {
  min-height: 100vh;
  padding: 48px 24px;
}

.simple-page {
  display: grid;
  place-items: center;
  color: var(--white);
  text-align: center;
  background: var(--navy-950);
}

.simple-page-photo {
  background:
    linear-gradient(rgba(4, 29, 58, 0.88), rgba(4, 29, 58, 0.95)),
    url("assets/bumek-slipp-anlegg.jpg") center / cover;
}

.simple-card {
  width: min(650px, 100%);
  padding: 54px 42px;
  background: rgba(4, 29, 58, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
}

.simple-logo {
  width: 220px;
  height: 84px;
  margin: 0 auto 34px;
  display: block;
  overflow: hidden;
  background: var(--white);
}

.simple-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.simple-card .eyebrow {
  justify-content: center;
}

.simple-card h1,
.policy-card h1 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 1;
}

.simple-card > p:not(.eyebrow) {
  max-width: 480px;
  margin: 24px auto 30px;
  color: rgba(255, 255, 255, 0.72);
}

.simple-card p a {
  color: var(--white);
  font-weight: 800;
}

.policy-page {
  background: var(--ice);
}

.policy-card {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: 56px 64px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.policy-logo {
  width: 190px;
  height: 88px;
  margin: 0 0 42px;
}

.policy-card h1 {
  color: var(--navy-900);
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.policy-card h2 {
  margin: 34px 0 8px;
  color: var(--navy-900);
  font-size: 1.16rem;
}

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

.policy-card a:not(.simple-logo):not(.button) {
  color: var(--navy-700);
  font-weight: 750;
}

.policy-card .policy-lead {
  margin-top: 24px;
  color: var(--ink);
  font-size: 1.16rem;
}

.policy-updated {
  margin-top: 40px;
  font-size: 0.8rem;
}

.policy-back {
  margin-top: 16px;
}

@media (max-width: 1020px) {
  :root {
    --shell: min(100% - 40px, 900px);
  }

  .main-nav {
    gap: 20px;
  }

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

  .capacity-grid,
  .contact-grid {
    gap: 60px;
  }

  .environment-grid {
    gap: 60px;
  }

  .about-grid {
    gap: 70px;
  }
}

@media (max-width: 800px) {
  html {
    scroll-padding-top: 72px;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 72px;
  }

  .brand {
    width: 155px;
    height: 58px;
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    margin-left: auto;
  }

  .hero {
    min-height: 700px;
    height: 88vh;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(2, 21, 43, 0.91) 0%, rgba(4, 31, 62, 0.68) 75%, rgba(5, 37, 68, 0.36) 100%),
      linear-gradient(0deg, rgba(2, 20, 40, 0.55), transparent 48%);
  }

  .hero h1 {
    font-size: clamp(3.6rem, 13vw, 6rem);
  }

  .hero-scroll {
    display: none;
  }

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

  .fact {
    min-height: 94px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .fact:first-child {
    border-left: 0;
  }

  .section {
    padding: 90px 0;
  }

  .section-heading,
  .operations-heading,
  .capacity-grid,
  .environment-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 22px;
  }

  .operations-heading {
    gap: 22px;
  }

  .operations-gallery figure {
    height: 320px;
  }

  .capacity-section,
  .contact-section {
    padding: 95px 0;
  }

  .environment-mark {
    width: 240px;
  }

  .environment-grid,
  .about-grid,
  .contact-grid {
    gap: 54px;
  }

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

  .back-to-top {
    grid-column: 2;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .header-inner {
    gap: 16px;
  }

  .brand {
    width: 132px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 15px;
  }

  .header-cta svg {
    display: none;
  }

  .hero {
    min-height: 660px;
  }

  .hero-content {
    padding-top: 68px;
  }

  .eyebrow {
    font-size: 0.64rem;
    letter-spacing: 0.14em;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 15.5vw, 4.8rem);
  }

  .hero-intro {
    margin-top: 22px;
    font-size: 1rem;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .fact {
    padding: 24px 20px;
  }

  .section-heading h2,
  .operations-heading h2,
  .environment-copy h2,
  .about-title h2,
  .contact-info h2 {
    font-size: 2.35rem;
  }

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

  .operations-gallery {
    width: calc(100% + 16px);
    grid-auto-flow: column;
    grid-auto-columns: 78vw;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .operations-gallery figure,
  .operations-gallery figure:nth-child(2) {
    height: 380px;
    margin-top: 0;
    scroll-snap-align: start;
  }

  .service-card {
    min-height: auto;
    padding: 28px 24px 34px;
  }

  .service-icon {
    margin: 26px 0 22px;
  }

  .capacity-copy h2 {
    font-size: 3.25rem;
  }

  .environment-mark {
    width: 190px;
  }

  .form-card {
    margin-inline: -4px;
    padding: 28px 22px;
  }

  .simple-page,
  .policy-page {
    padding: 20px 12px;
  }

  .simple-card,
  .policy-card {
    padding: 38px 24px;
  }

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

  .contact-links strong {
    font-size: 0.86rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-brand {
    width: 170px;
  }

  .back-to-top {
    grid-column: 1;
  }
}

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

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