@font-face {
  font-family: "Unbounded";
  src: url(../fonts/unbounded.ttf);
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --blue-color: #042552;
  --green-color: #00ff3c;
  --page-bg: #edf3f8;
  --page-bg-deep: #e6edf4;
  --surface-color: #ffffff;
  --surface-soft: #f6f8fb;
  --ink-color: #0b1c35;
  --muted-color: #6b7a91;
  --line-color: rgba(4, 37, 82, 0.12);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow-soft: 0 24px 80px rgba(4, 37, 82, 0.08);
  --shadow-panel: 0 18px 60px rgba(0, 0, 0, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: radial-gradient(circle at top left, #f7fbff 0%, var(--page-bg) 42%, var(--page-bg-deep) 100%);
  color: var(--ink-color);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Unbounded";
  font-weight: 600;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

.nhl-page {
  position: relative;
}

.nhl-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 0 12px;
  background: rgba(237, 243, 248, 0.86);
  backdrop-filter: blur(18px);
}

.nhl-nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 40px rgba(4, 37, 82, 0.05);
}

.brandmark {
  display: flex;
  flex-direction: column;
  min-width: 0;
  color: var(--blue-color);
}

.brandmark-kicker,
.footer-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brandmark-title {
  font-family: "Unbounded";
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0;
}

.nhl-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted-color);
  font-size: 0.95rem;
}

.nhl-menu a {
  transition: color 0.24s ease;
}

.nhl-menu a:hover,
.text-link:hover,
.footer-meta a:hover {
  color: var(--blue-color);
}

.cta-button,
.form-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--green-color);
  color: var(--blue-color);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease,
    border-color 0.24s ease,
    color 0.24s ease;
}

.cta-button:hover,
.form-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 255, 60, 0.24);
}

.cta-button-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}

.cta-button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: none;
}

.cta-button-small {
  min-height: 46px;
  padding-inline: 22px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 34px;
  color: var(--blue-color);
  font-weight: 700;
  transition: color 0.24s ease;
}

.section-copy + .cta-button,
.section-copy-compact + .cta-button,
.final-line + .cta-button {
  margin-top: 34px;
}

.text-link::after {
  content: "↗";
  font-size: 1rem;
}

.nhl-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 116px);
  padding: 56px 0 148px;
  background: var(--page-bg);
  color: #ffffff;
  overflow: hidden;
}

.nhl-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 17, 40, 0) 48%, rgba(2, 17, 40, 0.52) 100%),
    linear-gradient(90deg, rgba(2, 17, 40, 0.88) 0%, rgba(2, 17, 40, 0.74) 45%, rgba(2, 17, 40, 0.4) 100%),
    linear-gradient(180deg, rgba(2, 17, 40, 0.12) 0%, rgba(2, 17, 40, 0.38) 100%);
  z-index: 1;
}

.nhl-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(300px, 32vh, 420px);
  background: linear-gradient(
    180deg,
    rgba(237, 243, 248, 0) 0%,
    rgba(237, 243, 248, 0) 38%,
    rgba(237, 243, 248, 0.18) 58%,
    rgba(237, 243, 248, 0.64) 82%,
    var(--page-bg) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.nhl-hero-media {
  position: absolute;
  inset: 0;
}

.nhl-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

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

.section-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--green-color);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-kicker-light {
  color: var(--green-color);
}

.hero-title {
  max-width: 12ch;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.03;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-title span {
  color: rgba(255, 255, 255, 0.92);
}

.hero-copy,
.section-copy {
  max-width: 62ch;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  overflow-wrap: break-word;
}

.hero-copy {
  margin-top: 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.hero-emphasis {
  margin-top: 28px;
  max-width: 44ch;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.02rem;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  margin-top: 34px;
  list-style: none;
}

.trust-list li {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
}

.hero-panel {
  margin-top: 180px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow-panel);
  backdrop-filter: blur(20px);
}

.hero-panel h2 {
  font-size: 1.45rem;
  line-height: 1.28;
}

.panel-kicker {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.panel-divider {
  width: 100%;
  height: 1px;
  margin: 22px 0;
  background: rgba(255, 255, 255, 0.14);
}

.panel-list {
  list-style: none;
  display: grid;
  gap: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.panel-list li {
  position: relative;
  padding-left: 20px;
}

.panel-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green-color);
}

.nhl-section,
.nhl-contact,
.nhl-footer {
  position: relative;
}

.nhl-section {
  padding: 104px 0;
}

.nhl-hero + .nhl-section {
  margin-top: -1px;
  padding-top: 126px;
  background: linear-gradient(180deg, var(--page-bg) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.nhl-section-soft {
  background: rgba(255, 255, 255, 0.48);
}

.nhl-section-dark {
  background:
    radial-gradient(circle at top right, rgba(0, 255, 60, 0.08), transparent 28%),
    linear-gradient(180deg, #031a3a 0%, #042552 100%);
  color: #ffffff;
}

.section-intro {
  max-width: 66ch;
}

.section-intro-center {
  margin: 0 auto;
  text-align: center;
  max-width: 980px;
}

.section-heading {
  max-width: 14ch;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
  color: var(--blue-color);
}

.section-intro-center .section-heading {
  max-width: 920px;
  margin-inline: auto;
}

.section-heading-light {
  color: #ffffff;
}

.section-copy {
  margin-top: 22px;
  color: var(--muted-color);
  text-wrap: pretty;
}

.section-copy-light {
  color: rgba(255, 255, 255, 0.78);
}

.section-copy-compact {
  margin-top: 24px;
}

.section-note,
.section-footnote {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.96rem;
}

.section-footnote {
  color: var(--muted-color);
}

.signal-stack {
  display: grid;
  gap: 16px;
}

.signal-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--line-color);
}

.signal-item span,
.solution-layer span,
.problem-index,
.service-tile span,
.timeline-item span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--green-color);
  font-family: "Unbounded";
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.signal-item h3,
.problem-item h3,
.solution-layer h3,
.service-tile h3,
.system-step h3,
.timeline-item h3 {
  font-size: 1.2rem;
  line-height: 1.34;
}

.problem-grid,
.services-grid,
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}

.problem-grid {
  margin-top: 48px;
}

.problem-item {
  min-height: 240px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.problem-item p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.74);
}

.sticky-copy {
  position: sticky;
  top: 128px;
}

.solution-layers {
  display: grid;
  gap: 14px;
}

.solution-layer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 20px 22px;
  border: 1px solid var(--line-color);
  border-left: 3px solid var(--green-color);
  border-radius: 0 22px 22px 0;
  background: rgba(255, 255, 255, 0.74);
}

.solution-layer p,
.service-tile p,
.timeline-item p {
  margin-top: 10px;
  color: var(--muted-color);
}

.media-frame {
  overflow: hidden;
  border-radius: 32px;
  background: var(--surface-color);
  box-shadow: var(--shadow-soft);
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.office-gallery {
  display: grid;
  gap: 22px;
}

.office-gallery-item {
  overflow: hidden;
  height: clamp(300px, 34vw, 430px);
  border-radius: 32px;
  background: var(--surface-color);
  box-shadow: var(--shadow-soft);
}

.office-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.address-block {
  display: grid;
  gap: 4px;
  margin-top: 30px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-soft);
  font-weight: 600;
  color: var(--blue-color);
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.feature-list-tight {
  gap: 14px;
}

.feature-list li {
  position: relative;
  padding-left: 26px;
  color: var(--muted-color);
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green-color);
}

.services-grid {
  margin-top: 48px;
}

.service-tile,
.timeline-item {
  padding: 28px;
  border: 1px solid var(--line-color);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 40px rgba(4, 37, 82, 0.05);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.service-tile:hover,
.timeline-item:hover {
  transform: translateY(-4px);
  border-color: rgba(4, 37, 82, 0.2);
  box-shadow: 0 22px 60px rgba(4, 37, 82, 0.09);
}

.section-cta {
  margin-top: 42px;
  text-align: center;
}

.system-flow {
  position: relative;
  display: grid;
  gap: 0;
}

.system-flow::before {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 12px;
  width: 2px;
  background: rgba(0, 255, 60, 0.26);
}

.system-step {
  position: relative;
  padding: 0 0 28px 52px;
}

.system-step:last-child {
  padding-bottom: 0;
}

.system-step::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(0, 255, 60, 0.2);
  box-shadow: inset 0 0 0 7px var(--green-color);
}

.system-step p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.timeline-grid {
  margin-top: 48px;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 16px;
}

.check-list li {
  position: relative;
  padding: 18px 18px 18px 60px;
  border-radius: 22px;
  border: 1px solid var(--line-color);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink-color);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 22px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(0, 255, 60, 0.18);
}

.check-list li::after {
  content: "";
  position: absolute;
  top: 24px;
  left: 31px;
  width: 8px;
  height: 12px;
  border-right: 2px solid var(--blue-color);
  border-bottom: 2px solid var(--blue-color);
  transform: rotate(45deg);
}

.final-promise {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 255, 60, 0.08), transparent 30%),
    linear-gradient(135deg, #031a3a 0%, #042552 54%, #0a346b 100%);
  color: #ffffff;
}

.final-promise::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/corner-shapes.png");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 680px;
  opacity: 0.08;
  pointer-events: none;
}

.final-promise-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 42%);
  align-items: center;
  gap: 52px;
}

.final-promise-shell {
  position: relative;
  max-width: 70ch;
}

.final-promise-media {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: 32px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.final-promise-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.final-line {
  margin-top: 24px;
  color: var(--green-color);
  font-weight: 700;
  font-size: 1.05rem;
}

.nhl-contact {
  padding: 112px 0;
}

.contact-shell {
  overflow: hidden;
  border-radius: 34px;
  background: var(--surface-color);
  box-shadow: var(--shadow-soft);
}

.contact-panel,
.nhl-form-panel {
  height: 100%;
  padding: 52px;
}

.contact-panel {
  background:
    linear-gradient(135deg, rgba(0, 255, 60, 0.08), transparent 32%),
    linear-gradient(180deg, #031a3a 0%, #042552 100%);
  color: #ffffff;
}

.contact-panel h2,
.nhl-form-panel h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  line-height: 1.14;
}

.contact-panel p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
}

.contact-details {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.contact-details div {
  padding-top: 18px;
  border-top: 1px solid var(--line-light);
}

.contact-details span {
  display: block;
  color: var(--green-color);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-details p,
.contact-details a {
  margin-top: 8px;
  color: #ffffff;
  font-weight: 500;
}

.contact-panel img {
  margin-top: 36px;
  border-radius: 24px;
}

.nhl-form-panel {
  background: var(--surface-color);
}

.nhl-form-panel .nhform {
  margin-top: 42px !important;
}

.nhl-form-panel label,
.group-label {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-color);
  font-size: 0.9rem;
  font-weight: 700;
}

.input-row .form-control,
textarea.form-control {
  min-height: 56px;
}

.form-control {
  border: 1px solid rgba(4, 37, 82, 0.14);
  border-radius: 18px;
  padding: 14px 18px;
  color: var(--ink-color);
  box-shadow: none;
}

.form-control::placeholder {
  color: #8a96a9;
}

.form-control:focus {
  border-color: rgba(4, 37, 82, 0.34);
  box-shadow: 0 0 0 4px rgba(0, 255, 60, 0.12);
}

.form-services {
  margin-bottom: 8px;
}

.service-choice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  padding: 16px 18px;
  border: 1px solid var(--line-color);
  border-radius: 18px;
  transition:
    border-color 0.24s ease,
    background 0.24s ease,
    transform 0.24s ease;
  cursor: pointer;
}

.service-choice:hover {
  transform: translateY(-2px);
  border-color: rgba(4, 37, 82, 0.22);
  background: var(--surface-soft);
}

.service-choice span {
  color: var(--ink-color);
  font-size: 0.96rem;
  font-weight: 500;
}

.form-check-input {
  margin-top: 0.2rem;
  border-color: rgba(4, 37, 82, 0.26);
}

.form-check-input:checked {
  background-color: var(--green-color);
  border-color: var(--green-color);
}

.form-button {
  border: none;
}

.nhl-footer {
  padding: 0 0 64px;
}

.nhl-footer-shell {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line-color);
}

.footer-copy {
  margin-top: 12px;
  max-width: 44ch;
  color: var(--muted-color);
}

.footer-meta {
  display: grid;
  gap: 8px;
  text-align: right;
  color: var(--muted-color);
}

.float-socials {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 120;
}

.float-socials ul {
  list-style: none;
}

.float-socials a {
  display: inline-flex;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(4, 37, 82, 0.16);
  transition: transform 0.24s ease;
}

.float-socials a:hover {
  transform: translateY(-3px);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.thank-you {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 32px 0;
}

.thank-you-shell {
  width: 100%;
  padding: 64px 40px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(0, 255, 60, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f5f8fb 100%);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.thank-you-shell h1 {
  color: var(--blue-color);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.08;
}

.thank-you-shell p {
  max-width: 40ch;
  margin: 22px auto 0;
  color: var(--muted-color);
  font-size: 1.02rem;
}

.thank-you-shell .cta-button {
  margin-top: 30px;
}

.thank-you-brand {
  margin-top: 26px;
  color: var(--blue-color);
  font-family: "Unbounded";
  font-size: 1rem;
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.1) translate3d(-1.5%, -1.5%, 0);
  }
}

@media (max-width: 1199px) {
  .hero-panel {
    margin-top: 120px;
  }
}

@media (max-width: 991px) {
  .nhl-nav {
    padding-top: 12px;
  }

  .nhl-nav-shell {
    padding: 16px 18px;
    border-radius: 20px;
  }

  .nhl-nav-shell .cta-button {
    display: none;
  }

  .nhl-hero {
    min-height: auto;
    padding: 38px 0 112px;
  }

  .hero-title,
  .section-heading {
    max-width: none;
  }

  .hero-panel {
    margin-top: 36px;
  }

  .trust-list {
    grid-template-columns: 1fr;
  }

  .sticky-copy {
    position: static;
  }

  .contact-panel,
  .nhl-form-panel {
    padding: 36px 28px;
  }

  .final-promise-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .final-promise-media,
  .final-promise-media img {
    min-height: 320px;
  }

  .nhl-footer-shell,
  .footer-meta {
    text-align: left;
  }

  .nhl-footer-shell {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .nhl-section {
    padding: 78px 0;
  }

  .nhl-hero + .nhl-section {
    padding-top: 92px;
  }

  .nhl-contact {
    padding: 78px 0;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .service-choice {
    margin-bottom: 10px;
  }

  .thank-you-shell {
    padding: 48px 24px;
  }
}

@media (max-width: 575px) {
  .nhl-section {
    padding: 64px 0;
  }

  .nhl-hero {
    padding: 32px 0 92px;
  }

  .nhl-hero .row {
    margin-inline: 0;
  }

  .nhl-hero .row > * {
    min-width: 0;
    padding-inline: 0;
  }

  .nhl-hero .reveal,
  .hero-copy,
  .hero-emphasis,
  .trust-list {
    max-width: 100%;
  }

  .nhl-hero .reveal {
    width: 100%;
    max-width: 340px;
  }

  .hero-title {
    max-width: min(100%, 11.5ch);
    font-size: 2.08rem;
    line-height: 1.08;
  }

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

  .section-heading {
    font-size: 2rem;
    line-height: 1.12;
  }

  .nhl-nav-shell,
  .contact-shell,
  .media-frame,
  .hero-panel,
  .address-block,
  .office-gallery-item,
  .final-promise-media,
  .service-tile,
  .timeline-item,
  .check-list li,
  .thank-you-shell {
    border-radius: 22px;
  }

  .office-gallery {
    gap: 16px;
  }

  .office-gallery-item {
    height: 240px;
  }

  .final-promise-media,
  .final-promise-media img {
    min-height: 260px;
  }

  .contact-panel,
  .nhl-form-panel {
    padding: 30px 20px;
  }

  .contact-panel h2,
  .nhl-form-panel h2 {
    font-size: 1.8rem;
    line-height: 1.18;
  }

  .float-socials {
    right: 10px;
    bottom: 10px;
  }
}

@media (max-width: 390px) {
  .nhl-hero .reveal {
    max-width: 320px;
  }

  .hero-title {
    font-size: 1.95rem;
  }

  .section-heading {
    font-size: 1.86rem;
  }

  .cta-button,
  .form-button {
    padding-inline: 18px;
  }
}

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

  .reveal,
  .reveal.is-visible,
  .cta-button,
  .form-button,
  .service-tile,
  .timeline-item,
  .service-choice,
  .float-socials a,
  .nhl-hero-media img {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
