@font-face {
  font-family: "Casper";
  src: url("./fonts/casper.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Casper";
  src: url("./fonts/casper_b.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Casper";
  src: url("./fonts/casper_it.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --deep: #000f1d;
  --ink: #0a2634;
  --blue: #0d6293;
  --blue-deep: #0a5180;
  --teal: #32afb6;
  --green: #89c491;
  --gold: #e69e20;
  --paper: #ffffff;
  --mist: #f3f6f7;
  --line: #d5dce0;
  --pale-text: #dbe7ea;
  --grid-dark: #163445;
  --grid-darker: #173646;
  --field-line: #6b818c;
  --footer-line: #254758;
  --footer-muted: #b9c8cf;
  --muted: #56646b;
  --shadow: 0 24px 60px rgba(0, 15, 29, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(135deg, rgba(13, 98, 147, 0.06) 0, rgba(13, 98, 147, 0) 30rem),
    var(--mist);
  color: var(--ink);
  font-family: "Casper", Verdana, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--paper);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--blue-deep);
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0, 15, 29, 0.06);
}

.nav-inner {
  width: min(100% - 40px, var(--max));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  min-width: 176px;
}

.brand-link img {
  width: 176px;
  height: auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 11px), calc(100% - 11px) 100%, 0 100%);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.primary-nav a {
  position: relative;
  padding: 12px 12px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 7px;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  margin-left: 8px;
  background: var(--blue);
  color: var(--paper) !important;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
}

.nav-cta::after {
  background: var(--gold) !important;
}

.page-main {
  background: var(--paper);
}

.wrap {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 96px 0;
}

.section.tight {
  padding: 64px 0;
}

.section.dark {
  background: var(--deep);
  color: var(--paper);
}

.section.blue {
  background: var(--blue-deep);
  color: var(--paper);
}

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

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  gap: 18px;
  align-items: start;
  margin-bottom: 46px;
}

.section-head.single {
  grid-template-columns: minmax(0, 760px);
}

.section-head .rule {
  margin-bottom: 0;
}

.section-title,
.page-title,
.hero-title {
  margin: 0;
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: normal;
  hyphens: manual;
}

.hero-title {
  max-width: 760px;
  font-size: 4.85rem;
}

.page-title {
  max-width: 860px;
  font-size: 4.9rem;
}

.section-title {
  max-width: 760px;
  font-size: 3.8rem;
}

.lead,
.section-copy,
.body-copy {
  max-width: 70ch;
  margin: 0;
  color: var(--muted);
}

.dark .lead,
.dark .section-copy,
.dark .body-copy,
.blue .lead,
.blue .section-copy,
.blue .body-copy {
  color: var(--pale-text);
}

.lead {
  font-size: 1.28rem;
  line-height: 1.45;
}

.rule {
  width: 136px;
  height: 3px;
  margin: 28px 0 32px;
  background: var(--gold);
}

.dark .rule,
.blue .rule {
  background: var(--teal);
}

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

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}

.button {
  background: var(--blue);
  color: var(--paper);
  box-shadow: 0 12px 26px rgba(10, 81, 128, 0.22);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
}

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

.button.dark {
  background: var(--ink);
  color: var(--paper);
}

.button:active,
.nav-toggle:active {
  transform: translateY(1px);
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-2px);
  }
}

.text-link {
  color: var(--blue);
  padding-left: 0;
  padding-right: 0;
}

.dark .text-link {
  color: var(--teal);
}

.text-link::before {
  content: "";
  width: 30px;
  height: 3px;
  margin-right: 10px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 700px;
  display: grid;
  align-items: stretch;
  background:
    linear-gradient(90deg, var(--paper) 0 56%, var(--deep) 56% 100%);
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(58% - 44px);
  width: 120px;
  height: 100%;
  background: var(--blue);
  transform: skewX(-16deg);
  transform-origin: top;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.68fr);
  gap: 58px;
  align-items: center;
  padding: 70px 0;
}

.hero-copy {
  position: relative;
  padding: 12px 0 0;
}

.hero-copy .lead {
  max-width: 540px;
}

.route-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: 620px;
  margin-top: 36px;
  border: 1px solid var(--line);
  background: var(--line);
}

.route-board a {
  min-height: 98px;
  padding: 18px;
  background: var(--paper);
  text-decoration: none;
  display: grid;
  align-content: space-between;
  transition: background 180ms ease, color 180ms ease;
}

.route-board a strong {
  display: block;
  font-size: 1.05rem;
  color: var(--ink);
}

.route-board a span {
  color: var(--muted);
  font-size: 0.95rem;
}

.route-board a:hover,
.route-board a:first-child {
  background: var(--ink);
  color: var(--paper);
}

.route-board a:hover strong,
.route-board a:hover span,
.route-board a:first-child strong,
.route-board a:first-child span {
  color: var(--paper);
}

.hero-visual {
  color: var(--paper);
  align-self: stretch;
  display: grid;
  align-items: center;
}

.image-stack {
  position: relative;
  min-height: 560px;
}

.hero-photo {
  position: absolute;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--deep);
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 0 100%);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo.primary {
  top: 34px;
  right: 0;
  width: 94%;
  height: 276px;
}

.hero-photo.secondary {
  left: 0;
  bottom: 88px;
  width: 74%;
  height: 210px;
  border: 10px solid var(--deep);
}

.hero-photo.tertiary {
  right: 36px;
  bottom: 0;
  width: 56%;
  height: 154px;
  border: 8px solid var(--paper);
}

.hero-stamp {
  position: absolute;
  left: 20px;
  top: 0;
  width: 178px;
  height: 178px;
  display: grid;
  place-items: center;
  padding: 20px;
  background: var(--gold);
  color: var(--deep);
  font-weight: 700;
  text-align: center;
  line-height: 1.08;
  box-shadow: 0 20px 40px rgba(0, 15, 29, 0.24);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%);
}

.command-strip {
  background: var(--deep);
  color: var(--paper);
  border-top: 3px solid var(--blue);
}

.command-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--grid-dark);
}

.command-item {
  min-height: 150px;
  padding: 28px;
  background: var(--deep);
}

.command-item strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 1.12rem;
}

.command-item span {
  color: var(--pale-text);
}

.service-rows {
  display: grid;
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr) 240px;
  gap: 34px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.service-row h2,
.service-row h3 {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.05;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.service-row p {
  max-width: 70ch;
  margin: 0;
  color: var(--muted);
}

.service-row img {
  width: 100%;
  height: 128px;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
}

.service-row.medical h2,
.service-row.medical h3 {
  color: var(--blue);
}

.medical-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.48fr);
  gap: 52px;
  align-items: center;
}

.medical-panel::before {
  content: "";
  position: absolute;
  left: -80px;
  top: -54px;
  width: 180px;
  height: 92px;
  background: var(--blue);
  clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%);
  z-index: 0;
}

.medical-panel > * {
  position: relative;
  z-index: 1;
}

.medical-proof {
  display: grid;
  gap: 16px;
}

.proof-photo {
  position: relative;
  overflow: hidden;
  min-height: 164px;
  background: var(--deep);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%);
}

.proof-photo img {
  width: 100%;
  height: 100%;
  min-height: 164px;
  object-fit: cover;
}

.proof-photo strong {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 12px 14px;
  background: var(--gold);
  color: var(--deep);
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 0.38fr);
  min-height: 520px;
}

.split-image {
  position: relative;
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-copy {
  position: relative;
  display: grid;
  align-content: center;
  padding: 72px 64px;
  background: var(--ink);
  color: var(--paper);
}

.split-copy::before {
  content: "";
  position: absolute;
  left: -58px;
  top: 0;
  width: 116px;
  height: 100%;
  background: var(--blue);
  transform: skewX(-13deg);
}

.split-copy > * {
  position: relative;
  z-index: 1;
}

.split-copy .body-copy {
  color: var(--pale-text);
}

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

.project-card {
  background: var(--paper);
  box-shadow: var(--shadow);
}

.project-card img {
  width: 100%;
  aspect-ratio: 22 / 7;
  object-fit: cover;
}

.project-card .project-body {
  padding: 26px;
}

.project-card h2,
.project-card h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
  line-height: 1.08;
  text-transform: uppercase;
}

.project-card p {
  margin: 0;
  color: var(--muted);
}

.project-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 0.54fr) minmax(0, 0.46fr);
}

.project-card.featured img {
  height: 100%;
  min-height: 330px;
  aspect-ratio: auto;
}

.quote-band {
  position: relative;
  background: var(--mist);
  border-top: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(260px, 0.3fr);
  gap: 50px;
  align-items: center;
}

.quote-text {
  margin: 0;
  font-size: 2.5rem;
  line-height: 1.12;
  font-weight: 700;
  text-transform: uppercase;
}

.quote-meta {
  margin: 0;
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 1px;
  background: var(--grid-darker);
}

.timeline-step {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 32px;
  padding: 30px;
  background: var(--deep);
}

.timeline-step strong {
  color: var(--teal);
  font-size: 1.22rem;
  text-transform: uppercase;
}

.timeline-step p {
  margin: 0;
  color: var(--pale-text);
}

.owner-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

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

.owner,
.value-block {
  padding: 26px;
  background: var(--paper);
}

.owner h3,
.value-block h3 {
  margin: 0 0 12px;
  font-size: 1.32rem;
  text-transform: uppercase;
}

.owner p,
.value-block p {
  margin: 0;
  color: var(--muted);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.feature {
  padding: 30px;
  background: var(--paper);
}

.feature h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  text-transform: uppercase;
}

.feature p {
  margin: 0;
  color: var(--muted);
}

.practice-scope {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(300px, 0.38fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.practice-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  background: var(--paper);
}

.practice-feature img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}

.practice-feature div,
.scope-row {
  padding: 32px;
}

.practice-feature h3,
.scope-row h3 {
  margin: 0 0 12px;
  font-size: 1.34rem;
  line-height: 1.08;
  text-transform: uppercase;
}

.practice-feature p,
.scope-row p {
  margin: 0;
  color: var(--muted);
}

.practice-stack {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.scope-row {
  background: var(--paper);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(360px, 0.52fr);
  gap: 44px;
  align-items: start;
}

.contact-panel {
  padding: 34px;
  background: var(--deep);
  color: var(--paper);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%);
}

.contact-panel h2 {
  margin-top: 0;
  font-size: 2.2rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.contact-list a,
.contact-list address {
  color: var(--paper);
  font-style: normal;
  text-decoration: none;
}

.contact-list strong {
  display: block;
  color: var(--gold);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 34px;
  background: var(--mist);
  border-top: 3px solid var(--blue);
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--field-line);
  background: var(--paper);
  color: var(--ink);
  padding: 12px 14px;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  min-height: 24px;
  color: var(--blue-deep);
  font-weight: 700;
}

.page-hero {
  position: relative;
  padding: 92px 0 72px;
  background: var(--paper);
  overflow: hidden;
}

.page-hero.dark {
  background: var(--deep);
  color: var(--paper);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -96px;
  top: 0;
  width: 260px;
  height: 100%;
  background: var(--blue);
  transform: skewX(-15deg);
  z-index: 0;
}

.page-hero .wrap {
  position: relative;
  z-index: 1;
}

.page-hero .lead {
  margin-top: 28px;
}

.wide-image {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%);
  box-shadow: var(--shadow);
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.gallery-strip img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.site-footer {
  background: var(--deep);
  color: var(--paper);
  padding: 56px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(210px, 0.45fr) minmax(0, 0.55fr);
  gap: 42px;
  align-items: start;
}

.footer-logo {
  width: 160px;
  height: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-grid p {
  max-width: 62ch;
  margin: 0;
  color: var(--pale-text);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--paper);
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--footer-line);
  color: var(--footer-muted);
  font-size: 0.94rem;
}

.reveal {
  transform: none;
  opacity: 1;
}

.reveal.is-visible {
  transform: none;
  opacity: 1;
}

@media (max-width: 1080px) {
  .hero {
    background: var(--paper);
  }

  .hero::after {
    left: auto;
    right: -80px;
    width: 180px;
  }

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

  .hero-visual {
    color: var(--ink);
  }

  .image-stack {
    min-height: 430px;
  }

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

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

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

@media (max-width: 900px) {
  body {
    font-size: 16px;
  }

  .nav-inner {
    min-height: 74px;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    inset: 74px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 12px 20px 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 34px rgba(0, 15, 29, 0.18);
    transform: translateY(-120%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 220ms ease;
  }

  body.nav-open .primary-nav {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

  .primary-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 8px;
  }

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

  .page-title {
    font-size: 3.75rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .section-head,
  .medical-panel,
  .split-band,
  .quote-layout,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

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

  .service-row img {
    height: 180px;
  }

  .split-copy::before {
    left: 0;
    top: -28px;
    width: 100%;
    height: 56px;
    transform: skewY(-4deg);
  }

  .command-grid,
  .feature-list,
  .practice-scope {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-card.featured {
    grid-column: auto;
    display: block;
  }

  .project-card.featured img {
    height: auto;
    min-height: 0;
    aspect-ratio: 22 / 7;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .wrap,
  .nav-inner,
  .hero-grid {
    width: min(100% - 28px, var(--max));
  }

  .brand-link img {
    width: 150px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    gap: 36px;
    padding: 58px 0 68px;
  }

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

  .page-title {
    font-size: 2.35rem;
  }

  .section-title {
    font-size: 2.08rem;
  }

  .lead {
    font-size: 1.12rem;
  }

  .route-board,
  .command-grid,
  .project-grid,
  .owner-grid,
  .value-grid,
  .feature-list,
  .practice-scope,
  .practice-feature,
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .practice-feature img {
    min-height: 220px;
  }

  .image-stack {
    min-height: 360px;
  }

  .hero-photo.primary {
    width: 100%;
    height: 180px;
  }

  .hero-photo.secondary {
    width: 76%;
    height: 150px;
    bottom: 70px;
  }

  .hero-photo.tertiary {
    width: 58%;
    height: 120px;
    right: 0;
  }

  .hero-stamp {
    width: 132px;
    height: 132px;
    font-size: 0.9rem;
  }

  .hero::after {
    display: none;
  }

  .page-hero::after {
    display: none;
  }

  .medical-panel::before {
    left: 0;
    top: -40px;
    width: 112px;
    height: 50px;
  }

  .split-copy,
  .contact-panel,
  .contact-form {
    padding: 28px;
  }

  .timeline-step {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 360px) {
  .hero-title,
  .page-title {
    font-size: 2rem;
    line-height: 0.96;
  }

  .section-title {
    font-size: 1.85rem;
    line-height: 0.98;
  }

  .service-row h2,
  .service-row h3,
  .project-card h2,
  .project-card h3 {
    font-size: 1.28rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    transform: none;
    opacity: 1;
  }
}
