:root {
  --navy-950: #020b12;
  --navy-900: #061421;
  --navy-850: #092033;
  --navy-800: #0d2a3a;
  --teal-500: #00a99d;
  --teal-300: #46d6cf;
  --orange-500: #ff7a1a;
  --white: #ffffff;
  --mist: #eef4f2;
  --muted: #aab7bd;
  --ink: #0d1621;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  --radius: 8px;
  --container: min(1180px, calc(100% - 40px));
  --font-main: Aptos, "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Aptos Display", Aptos, "Segoe UI", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--navy-950);
  font-family: var(--font-main);
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  min-height: 78px;
  padding: 16px max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(2, 11, 18, 0.78);
  backdrop-filter: blur(18px);
  transition:
    min-height 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(2, 11, 18, 0.94);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  display: block;
  width: clamp(180px, 18vw, 245px);
  height: auto;
  max-height: 54px;
  object-fit: contain;
  filter: invert(1) brightness(1.35);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--navy-950);
  background:
    linear-gradient(135deg, var(--white) 0 46%, transparent 46%),
    linear-gradient(315deg, var(--teal-300) 0 42%, transparent 42%),
    var(--orange-500);
  border-radius: 50%;
  font-weight: 900;
  font-size: 24px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.brand-text {
  display: grid;
  line-height: 1;
  text-transform: uppercase;
}

.brand-text strong {
  font-size: 1.16rem;
  letter-spacing: 0.15em;
}

.brand-text small {
  margin-top: 5px;
  color: var(--teal-300);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.48em;
}

.primary-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 38px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.primary-nav a {
  position: relative;
  padding: 10px 0;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--orange-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current="page"] {
  color: var(--white);
}

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

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(70, 214, 207, 0.62);
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.header-cta::after,
.btn::after {
  content: "→";
  color: var(--orange-500);
  font-size: 1.2rem;
  line-height: 1;
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--navy-950);
  background: var(--teal-300);
  border-color: var(--teal-300);
}

.btn-primary::after {
  color: var(--navy-950);
}

.btn-ghost {
  background: rgba(2, 11, 18, 0.22);
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 760px;
  isolation: isolate;
  overflow: hidden;
  background: var(--navy-950);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(2, 11, 18, 0.98) 0%, rgba(2, 11, 18, 0.78) 38%, rgba(2, 11, 18, 0.24) 76%),
    url("../img/ziganor-hero.png") center right / cover no-repeat;
  filter: saturate(0.86) contrast(1.08) brightness(0.88);
}

.hero-overlay {
  z-index: -1;
  background:
    radial-gradient(circle at 77% 40%, rgba(70, 214, 207, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(2, 11, 18, 0.08) 0%, rgba(2, 11, 18, 0.2) 58%, var(--navy-950) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 164px);
  opacity: 0.78;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px) 1fr;
  align-items: center;
  min-height: 760px;
  padding-top: 96px;
  padding-bottom: 72px;
}

.eyebrow {
  position: relative;
  margin: 0 0 18px;
  color: var(--teal-300);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  margin-bottom: 18px;
  background: var(--orange-500);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 4.35vw, 3.95rem);
  line-height: 1.09;
  font-weight: 720;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  overflow-wrap: break-word;
}

.hero-lead {
  max-width: 600px;
  margin: 20px 0 0;
  color: var(--teal-300);
  font-size: clamp(1.02rem, 1.25vw, 1.2rem);
  line-height: 1.42;
  font-weight: 650;
}

.hero-copy {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.68;
}

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

.contact-hero {
  position: relative;
  min-height: 100vh;
  padding: 148px 0 92px;
  overflow: hidden;
  background: var(--navy-950);
  isolation: isolate;
}

.contact-hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(2, 11, 18, 0.98) 0%, rgba(2, 11, 18, 0.82) 45%, rgba(2, 11, 18, 0.5) 100%),
    linear-gradient(180deg, rgba(2, 11, 18, 0.24), rgba(2, 11, 18, 0.94)),
    url("../img/ziganor-hero.png") center right / cover no-repeat;
  filter: saturate(0.82) brightness(0.78);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.contact-copy h1 {
  max-width: 720px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  line-height: 1.02;
  font-weight: 720;
  text-transform: uppercase;
}

.contact-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.03rem;
  line-height: 1.74;
}

.contact-details {
  display: grid;
  gap: 14px;
  max-width: 520px;
  margin-top: 34px;
}

.contact-details a {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.86);
}

.contact-details span {
  color: var(--teal-300);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(70, 214, 207, 0.22);
  border-radius: var(--radius);
  background: rgba(2, 11, 18, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

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

.form-alert {
  padding: 12px 14px;
  border-radius: 4px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.form-alert.is-success {
  color: #d8fffb;
  background: rgba(70, 214, 207, 0.12);
  border: 1px solid rgba(70, 214, 207, 0.34);
}

.form-alert.is-error {
  color: #ffd8d8;
  background: rgba(255, 106, 106, 0.1);
  border: 1px solid rgba(255, 106, 106, 0.32);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  font: inherit;
  outline: none;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(70, 214, 207, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.form-row select option {
  color: var(--ink);
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
  line-height: 1.55;
}

.services {
  color: var(--ink);
  background: var(--mist);
  padding: 76px 0 70px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.06;
  text-transform: uppercase;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(13, 22, 33, 0.12);
  border-bottom: 1px solid rgba(13, 22, 33, 0.12);
}

.service-card {
  position: relative;
  min-height: 275px;
  padding: 32px 26px;
  border-right: 1px solid rgba(13, 22, 33, 0.12);
}

.service-card:last-child {
  border-right: 0;
}

.icon-wrap {
  width: 48px;
  height: 48px;
  color: var(--teal-500);
}

.icon-wrap.accent {
  color: var(--orange-500);
}

.icon-wrap svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 22px 0 12px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.35;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  color: rgba(13, 22, 33, 0.72);
  line-height: 1.55;
}

.card-arrow {
  position: absolute;
  right: 24px;
  bottom: 22px;
  color: var(--orange-500);
  font-size: 1.6rem;
}

.portfolio {
  padding: 82px 0;
  background:
    linear-gradient(180deg, #061421 0%, #020b12 100%),
    var(--navy-950);
}

.portfolio-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.portfolio-intro h2,
.about-copy h2,
.cta-inner h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  text-transform: uppercase;
}

.portfolio-intro p,
.about-copy p,
.cta-inner p,
.site-footer p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.portfolio-intro .btn {
  margin-top: 18px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  gap: 18px;
}

.work-card {
  min-width: 0;
}

.work-visual {
  position: relative;
  min-height: 150px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background-color: var(--navy-850);
  box-shadow: var(--shadow);
}

/* CSS-made project visuals keep the first release light while real portfolio photos are pending. */
.work-visual::before,
.work-visual::after,
.about-visual::before,
.about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
}

.visual-drone {
  background:
    linear-gradient(150deg, rgba(70, 214, 207, 0.32), transparent 46%),
    linear-gradient(35deg, rgba(255, 122, 26, 0.22), transparent 54%),
    #102737;
}

.visual-drone::before {
  width: 78px;
  height: 18px;
  inset: 48px auto auto 50%;
  translate: -50% 0;
  border-top: 4px solid rgba(255, 255, 255, 0.86);
  border-bottom: 4px solid rgba(255, 255, 255, 0.22);
}

.visual-drone::after {
  width: 180px;
  height: 1px;
  inset: 56px auto auto 50%;
  translate: -50% 0;
  background: rgba(255, 255, 255, 0.56);
  box-shadow:
    -92px 0 0 5px rgba(70, 214, 207, 0.44),
    92px 0 0 5px rgba(255, 122, 26, 0.44);
}

.visual-film {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 2px, transparent 2px 18px),
    linear-gradient(140deg, rgba(255, 255, 255, 0.14), transparent 38%),
    #0c1d2b;
}

.visual-film::after {
  width: 80px;
  height: 52px;
  inset: 45px 38px auto auto;
  border: 2px solid rgba(70, 214, 207, 0.74);
  border-radius: 4px;
  box-shadow: -58px -14px 0 -18px rgba(255, 255, 255, 0.42);
}

.visual-campaign {
  background:
    linear-gradient(135deg, rgba(255, 122, 26, 0.3), transparent 45%),
    linear-gradient(45deg, rgba(70, 214, 207, 0.2), transparent 62%),
    #132636;
}

.visual-campaign::before {
  inset: 36px 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03));
}

.visual-web {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent 44%),
    #102534;
}

.visual-web::before {
  inset: 30px 28px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-top-width: 14px;
  border-radius: 5px;
  box-shadow: 12px 12px 0 rgba(70, 214, 207, 0.18);
}

.visual-app {
  background:
    linear-gradient(135deg, rgba(70, 214, 207, 0.3), transparent 50%),
    linear-gradient(35deg, rgba(255, 122, 26, 0.18), transparent 60%),
    #0b1c29;
}

.visual-app::before {
  inset: 26px auto auto 37px;
  width: 42px;
  height: 94px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  box-shadow:
    54px 0 0 -2px #0b1c29,
    54px 0 0 0 rgba(255, 255, 255, 0.7),
    108px 0 0 -2px #0b1c29,
    108px 0 0 0 rgba(70, 214, 207, 0.7);
}

.work-card h3 {
  margin: 18px 0 8px;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.work-card p {
  margin: 0;
  color: var(--teal-300);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.about {
  padding: 88px 0;
  background: var(--navy-950);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1fr);
  gap: 56px;
  align-items: center;
}

.about-copy p {
  max-width: 640px;
  font-size: 1.04rem;
}

.about-visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(70, 214, 207, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(2, 11, 18, 0.2), rgba(2, 11, 18, 0.78)),
    url("../img/ziganor-hero.png") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.about-visual::before {
  background:
    linear-gradient(120deg, rgba(0, 169, 157, 0.2), transparent 42%),
    repeating-linear-gradient(0deg, transparent 0 27px, rgba(255, 255, 255, 0.08) 28px);
}

.about-visual::after {
  inset: auto 28px 28px auto;
  width: 94px;
  height: 94px;
  border: 1px dashed rgba(255, 255, 255, 0.42);
  border-radius: 50%;
}

.about-visual span {
  position: absolute;
  left: 28px;
  bottom: 28px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.topography {
  position: absolute;
  right: -40px;
  bottom: -30px;
  width: 320px;
  height: 160px;
  opacity: 0.36;
  background:
    repeating-radial-gradient(ellipse at 70% 70%, transparent 0 13px, rgba(70, 214, 207, 0.5) 14px 15px);
}

.cta-band {
  padding: 70px 0;
  border-top: 1px solid rgba(70, 214, 207, 0.24);
  border-bottom: 1px solid rgba(70, 214, 207, 0.24);
  background:
    linear-gradient(90deg, rgba(0, 169, 157, 0.22), transparent 58%),
    var(--navy-900);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-inner p {
  margin-bottom: 0;
}

.site-footer {
  padding: 70px 0 32px;
  background: #02080d;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) minmax(180px, 0.7fr) minmax(180px, 0.7fr);
  gap: 42px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-brand .brand-logo {
  width: 230px;
}

.site-footer h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.site-footer ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a:hover {
  color: var(--teal-300);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

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

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .primary-nav {
    grid-column: 1 / -1;
    justify-self: stretch;
    justify-content: center;
    order: 3;
  }

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

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

  .service-card:nth-child(2n) {
    border-right: 0;
  }

  .service-card:last-child {
    grid-column: 1 / -1;
  }

  .portfolio-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .site-header {
    min-height: 70px;
    grid-template-columns: auto auto;
    padding: 13px 14px;
  }

  .brand-logo {
    width: clamp(150px, 46vw, 190px);
    max-height: 44px;
  }

  .menu-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .primary-nav {
    position: fixed;
    inset: 70px 14px auto;
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(2, 11, 18, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .primary-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .primary-nav a {
    padding: 13px 6px;
  }

  .hero,
  .hero-grid {
    min-height: 760px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(2, 11, 18, 0.68) 0%, rgba(2, 11, 18, 0.95) 64%, rgba(2, 11, 18, 0.98) 100%),
      url("../img/ziganor-hero.png") 58% center / cover no-repeat;
  }

  .hero-grid,
  .section-heading,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    align-content: center;
    padding-top: 92px;
    padding-bottom: 70px;
  }

  .hero h1 {
    font-size: clamp(1.95rem, 8.1vw, 2.72rem);
    line-height: 1.1;
  }

  .hero-actions,
  .cta-inner,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .services,
  .portfolio,
  .about {
    padding: 62px 0;
  }

  .contact-hero {
    padding: 118px 0 68px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 22px;
  }

  .services-grid,
  .portfolio-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:nth-child(2n),
  .service-card:last-child {
    grid-column: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(13, 22, 33, 0.12);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .work-visual {
    min-height: 190px;
  }

  .about-visual {
    min-height: 280px;
  }
}

@media (max-width: 430px) {
  .hero-copy {
    font-size: 0.94rem;
  }

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

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