:root {
  --background: #0b1014;
  --background-light: #10171d;
  --panel: #151d24;
  --panel-light: #1b252d;
  --border: #2c3942;
  --text: #f3f6f8;
  --muted: #a7b2ba;
  --steel: #7f8d97;
  --orange: #ff7817;
  --orange-light: #ff9a4e;
  --blue: #2cbcff;
  --green: #66da91;
  --container: 1180px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--background);
  background-size: 48px 48px;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(
      circle at 10% 5%,
      rgba(255, 120, 23, 0.08),
      transparent 28%
    ),
    radial-gradient(
      circle at 88% 20%,
      rgba(44, 188, 255, 0.06),
      transparent 25%
    );
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.3rem);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

ul {
  margin: 0;
  padding: 0;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 105px 0;
}

.dark-section {
  background:
    radial-gradient(
      circle at 80% 30%,
      rgba(44, 188, 255, 0.06),
      transparent 28%
    ),
    var(--background-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 14px;
  color: #000;
  background: #fff;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.status-light {
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(102, 218, 145, 0.9);
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  color: #081015;
  background: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 2px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 160ms ease,
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  color: #061017;
  background: var(--orange-light);
  border-color: var(--orange-light);
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--text);
  background: transparent;
  border-color: var(--border);
}

.button-secondary:hover {
  color: var(--text);
  background: var(--panel-light);
  border-color: var(--steel);
}

.button-small {
  min-height: 40px;
  padding-inline: 16px;
  font-size: 0.88rem;
}

.text-link {
  display: inline-flex;
  color: var(--orange-light);
  font-weight: 850;
  text-decoration: none;
}

.text-button,
.email-button {
  padding: 0;
  color: var(--orange-light);
  background: transparent;
  border: 0;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 16, 20, 0.9);
  border-bottom: 1px solid rgba(127, 141, 151, 0.22);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 76px;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--text);
  text-decoration: none;
}

.brand > span:last-child {
  display: grid;
  line-height: 1.05;
}

.brand strong {
  font-size: 1.22rem;
  letter-spacing: 0.12em;
}

.brand small {
  margin-top: 5px;
  color: var(--steel);
  font-size: 0.66rem;
  letter-spacing: 0.05em;
}

.brand-icon {
  display: grid;
  width: 39px;
  height: 39px;
  padding: 6px;
  gap: 4px;
  background: var(--panel);
  border: 1px solid var(--border);
}

.brand-icon i {
  position: relative;
  display: block;
  background: #26323b;
}

.brand-icon i::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 3px;
  height: 3px;
  content: "";
  background: var(--orange);
  border-radius: 50%;
  transform: translateY(-50%);
}

.brand-icon i:nth-child(2)::after {
  background: var(--blue);
}

.main-navigation {
  display: flex;
  gap: 26px;
  align-items: center;
}

.main-navigation > a:not(.button) {
  color: #c7cfd4;
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

.main-navigation > a:not(.button):hover {
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 10px;
  background: var(--panel);
  border: 1px solid var(--border);
  cursor: pointer;
}

.nav-toggle i {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
}

/* Home hero */

.hero {
  position: relative;
  min-height: 810px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(
      90deg,
      rgba(11, 16, 20, 0.99) 0%,
      rgba(11, 16, 20, 0.88) 44%,
      rgba(11, 16, 20, 0.42) 100%
    ),
    linear-gradient(180deg, transparent 72%, var(--background) 100%);
}

.grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.6;
  background-image:
    linear-gradient(rgba(44, 188, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44, 188, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 760px;
  padding: 90px 0 100px;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 55px;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.hero h1 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px #7a8790;
}

.hero-summary {
  max-width: 700px;
  margin-top: 28px;
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
}

.hero-buttons {
  display: flex;
  margin-top: 34px;
  gap: 12px;
  flex-wrap: wrap;
}

.feature-list {
  display: flex;
  margin-top: 30px;
  gap: 25px;
  list-style: none;
  flex-wrap: wrap;
}

.feature-list li {
  position: relative;
  padding-left: 16px;
  color: #c5ced4;
  font-size: 0.88rem;
  font-weight: 750;
}

.feature-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 2px;
  content: "";
  background: var(--orange);
}

.datacenter-art {
  position: relative;
  min-height: 540px;
  perspective: 900px;
}

.node-label {
  position: absolute;
  top: 15px;
  right: 5px;
  z-index: 3;
  display: grid;
  min-width: 145px;
  padding: 11px 14px;
  background: rgba(11, 16, 20, 0.9);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.node-label span {
  color: var(--steel);
  font-size: 0.62rem;
  letter-spacing: 0.17em;
}

.node-label strong {
  margin-top: 4px;
  color: var(--orange);
  letter-spacing: 0.1em;
}

.rack {
  position: absolute;
  bottom: 84px;
  width: 190px;
  padding: 20px 14px;
  background:
    linear-gradient(
      90deg,
      #141b20,
      #303b43 8%,
      #11171c 16%,
      #1b242b 84%,
      #303b43 92%,
      #11171c
    );
  border: 2px solid #394650;
  box-shadow:
    0 45px 65px rgba(0, 0, 0, 0.58),
    inset 0 0 0 5px rgba(0, 0, 0, 0.35);
}

.rack-one {
  right: 195px;
  height: 405px;
  transform: rotateY(8deg);
}

.rack-two {
  right: -15px;
  height: 460px;
  transform: rotateY(-8deg);
}

.rack-unit {
  position: relative;
  height: 48px;
  margin-bottom: 10px;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 8px,
      rgba(0, 0, 0, 0.25) 8px 10px
    ),
    linear-gradient(180deg, #28333b, #151c21);
  border: 1px solid #42505a;
  box-shadow: inset 0 0 13px rgba(0, 0, 0, 0.65);
}

.rack-unit::after {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 7px;
  height: 7px;
  content: "";
  background: #56636c;
  border-radius: 50%;
  transform: translateY(-50%);
}

.rack-unit.active::after {
  background: var(--orange);
  box-shadow: 0 0 12px rgba(255, 120, 23, 0.9);
}

.rack-unit.active.blue::after {
  background: var(--blue);
  box-shadow: 0 0 12px rgba(44, 188, 255, 0.9);
}

.rack-unit.tall {
  height: 76px;
}

.skyline {
  position: absolute;
  right: -45px;
  bottom: 0;
  width: 650px;
  overflow: visible;
  fill: none;
  stroke: rgba(255, 120, 23, 0.7);
  stroke-width: 2;
  filter: drop-shadow(0 0 9px rgba(255, 120, 23, 0.3));
}

.skyline-ground {
  stroke: rgba(127, 141, 151, 0.4);
}

.service-strip {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  background: #0c1216;
  border-top: 1px solid var(--border);
}

.service-strip .container {
  display: flex;
  min-height: 50px;
  gap: 38px;
  align-items: center;
  white-space: nowrap;
}

.service-strip span {
  color: #75828b;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-strip span::before {
  margin-right: 38px;
  color: var(--orange);
  content: "//";
}

/* Services */

.section-heading {
  display: grid;
  margin-bottom: 50px;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: end;
}

.section-heading > p {
  max-width: 520px;
  justify-self: end;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.service-card {
  position: relative;
  min-height: 385px;
  padding: 34px;
  overflow: hidden;
  background: rgba(21, 29, 36, 0.75);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.service-card::after {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 160px;
  height: 160px;
  content: "";
  border: 1px solid rgba(127, 141, 151, 0.13);
  transform: rotate(45deg);
}

.featured-card {
  background:
    linear-gradient(
      145deg,
      rgba(255, 120, 23, 0.14),
      transparent 52%
    ),
    var(--panel);
}

.card-number {
  position: absolute;
  top: 24px;
  right: 25px;
  color: #5d6b74;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-icon {
  display: flex;
  width: 54px;
  height: 54px;
  margin-bottom: 30px;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  background: #0d1216;
  border: 1px solid #3b4851;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.blue-icon {
  color: var(--blue);
}

.service-card h3 {
  margin-bottom: 16px;
}

.service-card p {
  font-size: 0.94rem;
}

.service-card ul {
  display: grid;
  margin-top: 23px;
  gap: 7px;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 16px;
  color: #c4cdd2;
  font-size: 0.82rem;
}

.service-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 1px;
  content: "";
  background: var(--orange);
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(
      135deg,
      rgba(44, 188, 255, 0.08),
      transparent 60%
    ),
    #0e1419;
}

.contact-card .text-link {
  margin-top: 12px;
}

/* Why RCS */

.why-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}

.large-copy {
  margin-top: 25px;
  font-size: 1.05rem;
}

.why-layout .large-copy {
  max-width: 560px;
  margin-bottom: 32px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.value-grid article {
  min-height: 215px;
  padding: 28px;
  background: rgba(21, 29, 36, 0.72);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.value-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--steel);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.value-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--orange-light);
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.value-grid p {
  margin: 0;
  font-size: 0.85rem;
}

/* Callout */

.callout-section {
  padding: 70px 0;
}

.callout {
  display: flex;
  min-height: 230px;
  padding: 42px 48px;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  background:
    linear-gradient(
      120deg,
      rgba(255, 120, 23, 0.15),
      transparent 38%
    ),
    var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.callout-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* About page */

.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(
      90deg,
      rgba(11, 16, 20, 0.98),
      rgba(11, 16, 20, 0.62)
    );
}

.page-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 510px;
  padding: 85px 0;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.page-hero h1 {
  max-width: 850px;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
}

.location-panel {
  position: relative;
  min-height: 270px;
  padding: 32px;
  overflow: hidden;
  background:
    linear-gradient(
      145deg,
      rgba(255, 120, 23, 0.1),
      transparent 55%
    ),
    var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.location-panel > span,
.location-panel > small {
  display: block;
  color: var(--steel);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.location-panel strong {
  display: block;
  margin: 18px 0 6px;
  color: var(--orange);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.location-panel svg {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  fill: none;
  stroke: rgba(44, 188, 255, 0.6);
  stroke-width: 2;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 90px;
  align-items: start;
}

.about-layout h2 {
  margin-bottom: 28px;
}

.profile-panel {
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.profile-heading {
  display: flex;
  padding: 18px 20px;
  align-items: center;
  justify-content: space-between;
  background: #0d1216;
  border-bottom: 1px solid var(--border);
}

.profile-heading span {
  color: var(--steel);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.profile-heading strong {
  color: var(--orange);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.profile-panel dl {
  margin: 0;
}

.profile-panel dl div {
  display: grid;
  padding: 22px 24px;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 20px;
  border-bottom: 1px solid var(--border);
}

.profile-panel dl div:last-child {
  border-bottom: 0;
}

.profile-panel dt {
  color: var(--steel);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.profile-panel dd {
  margin: 0;
  color: var(--text);
  font-weight: 750;
}

/* Contact */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(290px, 0.7fr);
  gap: 28px;
  align-items: start;
}

.contact-form {
  padding: 38px;
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-form label {
  display: grid;
  margin-bottom: 20px;
  gap: 9px;
  color: #dce2e6;
  font-size: 0.82rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: var(--text);
  background: #0d1216;
  border: 1px solid #35424b;
  border-radius: 1px;
  outline: none;
}

.contact-form input,
.contact-form select {
  min-height: 48px;
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 150px;
  padding: 13px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 120, 23, 0.12);
}

.form-footer {
  display: flex;
  margin-top: 8px;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.form-footer p {
  max-width: 390px;
  margin: 0;
  font-size: 0.78rem;
}

.contact-sidebar {
  display: grid;
  gap: 14px;
}

.info-card,
.urgent-card {
  padding: 25px;
  background: var(--panel);
  border: 1px solid var(--border);
}

.info-card > span {
  display: block;
  margin-bottom: 12px;
  color: var(--steel);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-value {
  display: block;
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 850;
  text-decoration: none;
}

.contact-value:hover {
  color: var(--orange-light);
}

.info-card small {
  display: block;
  margin-top: 8px;
  color: var(--steel);
}

.email-result {
  margin: 10px 0 0;
  font-size: 0.8rem;
}

.email-result a {
  color: var(--orange-light);
  font-weight: 850;
  word-break: break-word;
}

.urgent-card {
  background:
    linear-gradient(
      145deg,
      rgba(255, 120, 23, 0.11),
      transparent 62%
    ),
    var(--panel);
}

.urgent-card p {
  margin: 8px 0 14px;
  font-size: 0.86rem;
}

/* Footer */

.site-footer {
  padding: 70px 0 26px;
  background: #080c0f;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  padding-bottom: 50px;
  grid-template-columns: 1.6fr 0.8fr 0.8fr;
  gap: 60px;
}

.footer-grid p {
  margin: 12px 0 0;
  font-size: 0.85rem;
}

.footer-grid a {
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--orange-light);
}

.footer-bottom {
  display: flex;
  padding-top: 24px;
  gap: 20px;
  justify-content: space-between;
  color: #6b7780;
  border-top: 1px solid #202a31;
  font-size: 0.72rem;
}

/* Tablet */

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .main-navigation {
    position: absolute;
    top: 76px;
    right: 20px;
    left: 20px;
    display: none;
    padding: 20px;
    gap: 18px;
    align-items: stretch;
    flex-direction: column;
    background: #0d1216;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .main-navigation.open {
    display: flex;
  }

  .main-navigation .button {
    width: 100%;
  }

  .hero-layout {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .datacenter-art {
    min-height: 455px;
  }

  .rack-one {
    right: 49%;
  }

  .rack-two {
    right: 13%;
  }

  .skyline {
    right: 0;
    width: 100%;
  }

  .section-heading,
  .why-layout,
  .page-hero-layout,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .section-heading > p {
    justify-self: start;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-hero-layout {
    min-height: 0;
  }

  .location-panel {
    max-width: 620px;
  }
}

/* Mobile */

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 76px 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    padding: 68px 0 125px;
    gap: 20px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 14vw, 4.3rem);
  }

  .hero-buttons,
  .hero-buttons .button {
    width: 100%;
  }

  .feature-list {
    display: grid;
    gap: 10px;
  }

  .datacenter-art {
    min-height: 375px;
    margin-inline: -20px;
    transform: scale(0.88);
    transform-origin: center bottom;
  }

  .rack {
    width: 160px;
  }

  .rack-one {
    right: 45%;
    height: 340px;
  }

  .rack-two {
    right: 2%;
    height: 385px;
  }

  .service-strip .container {
    overflow-x: auto;
  }

  .section-heading {
    margin-bottom: 38px;
    gap: 20px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .callout {
    padding: 32px 24px;
    align-items: flex-start;
    flex-direction: column;
  }

  .callout-buttons,
  .callout-buttons .button {
    width: 100%;
  }

  .page-hero-layout {
    padding: 72px 0;
  }

  .page-hero h1 {
    font-size: 2.7rem;
  }

  .profile-panel dl div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 24px;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .form-footer .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}