:root {
  color-scheme: dark;
  --bg: #091010;
  --bg-2: #0e1716;
  --surface: #121d1c;
  --surface-2: #172421;
  --line: rgba(220, 229, 222, 0.14);
  --text: #eef4f0;
  --muted: #a9b6b0;
  --soft: #d8dfd8;
  --accent: #b7a36b;
  --accent-2: #7fb19b;
  --danger: #ffdfaa;
  --radius: 8px;
  --max: 1180px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(9, 16, 16, 0), #091010 92vh),
    radial-gradient(circle at 70% 0%, rgba(183, 163, 107, 0.16), transparent 34rem),
    var(--bg);
  color: var(--text);
  letter-spacing: 0;
}

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

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

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

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--text);
  color: var(--bg);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem clamp(1rem, 3vw, 2rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 12, 12, 0.62);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 12, 12, 0.86);
  border-color: rgba(255, 255, 255, 0.13);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 11rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: linear-gradient(135deg, #d7c992, #5e927f);
  color: #08100f;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.05;
}

.brand small {
  color: var(--muted);
  font-size: 0.68rem;
  margin-top: 0.18rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.25rem);
  color: rgba(238, 244, 240, 0.78);
  font-size: 0.9rem;
}

.site-nav a {
  padding: 0.4rem 0;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  border-color: var(--accent);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 2.85rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.header-cta {
  padding: 0.72rem 1rem;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.header-cta svg,
.btn svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: rgba(183, 163, 107, 0.75);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 1px;
  margin: 0.24rem auto;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 7.5rem clamp(1rem, 4vw, 3rem) 4.5rem;
  border-bottom: 1px solid var(--line);
}

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

.hero-image {
  object-fit: cover;
  object-position: center;
  opacity: 0.86;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 9, 9, 0.93) 0%, rgba(5, 9, 9, 0.7) 42%, rgba(5, 9, 9, 0.2) 100%),
    linear-gradient(180deg, rgba(5, 9, 9, 0.62) 0%, rgba(5, 9, 9, 0.06) 45%, rgba(5, 9, 9, 0.78) 100%);
}

.hero-content {
  position: relative;
  width: min(43rem, 100%);
  z-index: 1;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1.2rem;
  font-size: 7rem;
  line-height: 0.9;
  font-weight: 720;
}

.hero-copy {
  max-width: 40rem;
  margin-bottom: 1.7rem;
  color: rgba(238, 244, 240, 0.82);
  font-size: 1.18rem;
  line-height: 1.65;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  padding: 0.88rem 1.12rem;
  font-weight: 700;
}

.btn-primary {
  background: var(--text);
  color: #07100f;
}

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

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--accent);
  background: rgba(183, 163, 107, 0.12);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  width: min(44rem, 100%);
  margin: 2rem 0 0;
}

.hero-stats div {
  min-height: 6.2rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(9, 16, 16, 0.6);
}

.hero-stats dt {
  margin-bottom: 0.38rem;
  font-size: 1.9rem;
  font-weight: 760;
}

.hero-stats dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.hero-strip {
  position: absolute;
  z-index: 1;
  right: clamp(1rem, 4vw, 3rem);
  bottom: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem;
  max-width: 48rem;
}

.hero-strip span,
.tag {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(238, 244, 240, 0.76);
  background: rgba(9, 16, 16, 0.54);
}

.hero-strip span {
  padding: 0.42rem 0.68rem;
  font-size: 0.76rem;
}

.subpage-main {
  padding-top: 5.25rem;
}

.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem) clamp(2.5rem, 5vw, 4rem);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: rgba(238, 244, 240, 0.66);
  font-size: 0.86rem;
}

.breadcrumbs a {
  border-bottom: 1px solid rgba(183, 163, 107, 0.44);
}

.page-hero h1 {
  max-width: 62rem;
  margin: 0;
  font-size: clamp(2.45rem, 7vw, 5.5rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 46rem;
  margin: 1.2rem 0 0;
  color: var(--soft);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.7;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.section,
.intro-band,
.sources,
.site-footer {
  padding-inline: clamp(1rem, 4vw, 3rem);
}

.intro-band {
  border-bottom: 1px solid var(--line);
  background: #0b1413;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(16rem, 0.85fr) minmax(18rem, 1.15fr);
  gap: clamp(2rem, 6vw, 6rem);
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.4rem 0;
}

.section-grid h2,
.section-heading h2,
.custom-copy h2,
.trust-panel h2,
.contact-copy h2 {
  margin-bottom: 1rem;
  font-size: 3.55rem;
  line-height: 1.02;
}

.section-grid p,
.section-heading p,
.custom-copy p,
.contact-copy p,
.trust-panel p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.section {
  max-width: calc(var(--max) + clamp(2rem, 8vw, 6rem));
  margin: 0 auto;
  padding-top: clamp(4rem, 9vw, 7rem);
  padding-bottom: clamp(4rem, 9vw, 7rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(18rem, 0.95fr) minmax(18rem, 1.05fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end;
  margin-bottom: 2rem;
}

.section-heading.narrow {
  display: block;
  max-width: 48rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.4rem;
}

.filter-btn {
  min-height: 2.45rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(238, 244, 240, 0.74);
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover,
.filter-btn:focus-visible {
  border-color: rgba(183, 163, 107, 0.78);
  color: var(--text);
  background: rgba(183, 163, 107, 0.14);
}

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

.section-link-panel {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  align-items: center;
  margin-top: 1rem;
  padding: 1.2rem;
  border: 1px solid rgba(183, 163, 107, 0.28);
  border-radius: var(--radius);
  background: rgba(183, 163, 107, 0.08);
}

.section-link-panel h3,
.section-link-panel p {
  margin-bottom: 0;
}

.section-link-panel p {
  margin-top: 0.35rem;
  color: var(--muted);
  line-height: 1.62;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.product-card[hidden] {
  display: none;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(183, 163, 107, 0.45);
}

.product-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  background: #071010;
}

.product-body {
  padding: 1.1rem;
}

.tag {
  display: inline-flex;
  width: fit-content;
  padding: 0.32rem 0.58rem;
  margin-bottom: 0.8rem;
  font-size: 0.72rem;
}

.product-card h3,
.service-grid h3 {
  margin-bottom: 0.65rem;
  font-size: 1.2rem;
}

.product-card p,
.service-grid p,
.market-grid span,
.capability-list span {
  color: var(--muted);
  line-height: 1.6;
}

.product-card ul,
.check-list {
  display: grid;
  gap: 0.5rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.product-card li,
.check-list li {
  position: relative;
  padding-left: 1.05rem;
  color: var(--soft);
  font-size: 0.9rem;
  line-height: 1.45;
}

.product-card li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background: var(--accent-2);
}

.custom-section {
  display: grid;
  grid-template-columns: minmax(18rem, 1fr) minmax(18rem, 0.9fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  max-width: none;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, #0d1716, #111d1b 52%, #131811);
}

.custom-media {
  min-height: 32rem;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.custom-media img {
  width: 100%;
  height: 100%;
  min-height: 32rem;
  object-fit: cover;
}

.custom-copy {
  max-width: 38rem;
}

.capability-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.capability-list div {
  display: grid;
  gap: 0.28rem;
  padding-block: 0.85rem;
  border-top: 1px solid var(--line);
}

.capability-list strong,
.market-grid strong {
  color: var(--text);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.service-grid article {
  min-height: 17rem;
  padding: 1.25rem;
  background: var(--surface);
}

.step {
  display: inline-flex;
  margin-bottom: 2.4rem;
  color: var(--accent);
  font-weight: 800;
}

.trust-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  margin-top: 1rem;
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
}

.trust-panel img {
  width: 100%;
  border-radius: calc(var(--radius) - 2px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

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

.market-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.market-grid div {
  display: grid;
  gap: 0.6rem;
  min-height: 11rem;
  padding: 1.1rem;
  background: var(--bg-2);
}

.updates-section {
  border-top: 1px solid var(--line);
}

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

.update-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.update-media {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.update-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 220ms ease;
}

.update-card:hover .update-media img {
  transform: scale(1.035);
}

.update-body {
  display: grid;
  gap: 0.75rem;
  padding: 1.1rem;
}

.update-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 760;
  text-transform: uppercase;
}

.update-meta time {
  color: rgba(238, 244, 240, 0.58);
  font-weight: 650;
}

.update-card h3 {
  margin-bottom: 0;
  font-size: 1.18rem;
}

.update-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.text-link {
  width: fit-content;
  color: var(--text);
  font-weight: 760;
  border-bottom: 1px solid rgba(183, 163, 107, 0.58);
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--accent);
}

.social-follow-panel {
  display: grid;
  grid-template-columns: minmax(14rem, 0.7fr) minmax(18rem, 1.3fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: start;
  margin-top: 1rem;
  padding: 1.2rem;
  border: 1px solid rgba(183, 163, 107, 0.28);
  border-radius: var(--radius);
  background: rgba(183, 163, 107, 0.08);
}

.social-follow-panel h3,
.social-follow-panel p {
  margin-bottom: 0;
}

.social-follow-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.social-follow-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.social-follow-links a {
  min-height: 2.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(183, 163, 107, 0.34);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.84rem;
  font-weight: 760;
}

.social-follow-links a:hover,
.social-follow-links a:focus-visible {
  border-color: rgba(183, 163, 107, 0.72);
  background: rgba(183, 163, 107, 0.12);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(18rem, 0.95fr) minmax(18rem, 1.05fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
  border-top: 1px solid var(--line);
}

.contact-copy {
  position: sticky;
  top: 6rem;
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact-links a {
  display: grid;
  gap: 0.25rem;
  min-height: 5rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.contact-links a:hover,
.contact-links a:focus-visible {
  border-color: rgba(183, 163, 107, 0.65);
}

.contact-links span {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.inquiry-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.inquiry-form label {
  display: grid;
  gap: 0.45rem;
}

.inquiry-form label span {
  color: var(--soft);
  font-size: 0.88rem;
}

.inquiry-form input,
.inquiry-form textarea,
.inquiry-form select {
  width: 100%;
  min-height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: calc(var(--radius) - 2px);
  background: rgba(3, 7, 7, 0.62);
  color: var(--text);
  padding: 0.85rem 0.9rem;
  outline: none;
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus,
.inquiry-form select:focus {
  border-color: rgba(183, 163, 107, 0.75);
  box-shadow: 0 0 0 3px rgba(183, 163, 107, 0.14);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.sources {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 0;
  padding-bottom: 3rem;
  color: rgba(169, 182, 176, 0.82);
  font-size: 0.82rem;
  line-height: 1.6;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  border-top: 1px solid var(--line);
  background: #060b0b;
}

.site-footer div {
  display: grid;
  gap: 0.25rem;
}

.site-footer span,
.site-footer a {
  color: var(--muted);
}

@media (max-width: 980px) {
  h1 {
    font-size: 5.4rem;
  }

  .section-grid h2,
  .section-heading h2,
  .custom-copy h2,
  .trust-panel h2,
  .contact-copy h2 {
    font-size: 3rem;
  }

  .site-header {
    grid-template-columns: auto auto auto;
  }

  .site-nav {
    position: fixed;
    left: 1rem;
    right: 1rem;
    top: 4.75rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.55rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(8, 14, 14, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.9rem;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    justify-self: end;
  }

  .header-cta {
    justify-self: end;
  }

  .section-grid,
  .section-heading,
  .custom-section,
  .trust-panel,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .section-link-panel {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .social-follow-panel {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 0.8rem 1rem;
    gap: 0.75rem;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    padding-inline: 0.82rem;
    font-size: 0.84rem;
  }

  .hero {
    min-height: 92svh;
    padding: 6.5rem 1rem 5rem;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 9, 9, 0.94), rgba(5, 9, 9, 0.66)),
      linear-gradient(180deg, rgba(5, 9, 9, 0.7), rgba(5, 9, 9, 0.18) 40%, rgba(5, 9, 9, 0.84));
  }

  .hero-content {
    width: 100%;
  }

  h1 {
    font-size: 3.55rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-stats dt {
    font-size: 1.55rem;
  }

  .section-grid h2,
  .section-heading h2,
  .custom-copy h2,
  .trust-panel h2,
  .contact-copy h2 {
    font-size: 2.25rem;
  }

  .hero-stats,
  .product-grid,
  .service-grid,
  .market-grid,
  .updates-grid,
  .contact-links {
    grid-template-columns: 1fr;
  }

  .hero-strip {
    left: 1rem;
    right: 1rem;
    justify-content: flex-start;
  }

  .custom-media,
  .custom-media img {
    min-height: 20rem;
  }

  .section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .form-actions .btn {
    width: 100%;
  }

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

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