:root {
  --bg: #090d12;
  --bg-deep: #05080c;
  --surface: rgba(12, 17, 24, 0.72);
  --surface-strong: rgba(16, 22, 31, 0.92);
  --surface-soft: rgba(255, 255, 255, 0.04);
  --text: #f5f7fb;
  --muted: #98a4b5;
  --muted-strong: #c7d1dd;
  --line: rgba(173, 191, 214, 0.16);
  --line-strong: rgba(186, 206, 232, 0.28);
  --accent: #8fa9c5;
  --accent-soft: rgba(143, 169, 197, 0.18);
  --accent-warm: #cbb38b;
  --accent-warm-soft: rgba(203, 179, 139, 0.16);
  --glow: 0 24px 70px rgba(49, 71, 97, 0.22);
  --glow-soft: 0 16px 40px rgba(28, 40, 55, 0.18);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max-width: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 12%, rgba(143, 169, 197, 0.12), transparent 26%),
    radial-gradient(circle at 24% 72%, rgba(203, 179, 139, 0.08), transparent 22%),
    radial-gradient(circle at 88% 20%, rgba(95, 113, 138, 0.16), transparent 24%),
    linear-gradient(180deg, #0c1118 0%, #070b10 48%, #05080c 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.35) 70%, transparent);
  z-index: -3;
}

body::after {
  background:
    radial-gradient(circle at 50% 0%, rgba(143, 169, 197, 0.08), transparent 34%),
    radial-gradient(circle at 50% 100%, rgba(143, 169, 197, 0.06), transparent 36%);
  z-index: -4;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button,
a,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

.ambient-one {
  top: 8rem;
  right: -8rem;
  width: 18rem;
  height: 18rem;
  background: rgba(124, 151, 182, 0.14);
}

.ambient-two {
  top: 42rem;
  left: -6rem;
  width: 15rem;
  height: 15rem;
  background: rgba(106, 124, 147, 0.12);
}

.section,
.site-header,
.site-footer {
  width: min(var(--max-width), calc(100% - 1.4rem));
  margin: 0 auto;
}

.section {
  padding: 3.6rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 2.95rem;
  height: 2.95rem;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--glow-soft);
}

.brand span {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand strong,
.brand em,
.small-kicker,
.panel-meta,
.compare-head,
.project-type,
.section-label,
figcaption,
.contact-form span,
.value-item,
.hero-tag {
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand strong {
  font-size: 0.75rem;
  font-weight: 700;
}

.brand em {
  color: var(--muted);
  font-size: 0.68rem;
  font-style: normal;
}

.site-nav {
  display: none;
  justify-self: center;
  gap: 1.25rem;
  padding: 0.9rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 13, 19, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.site-nav a {
  color: var(--muted);
  font-size: 0.88rem;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.site-nav a:hover {
  color: var(--text);
  text-shadow: 0 0 18px rgba(143, 169, 197, 0.22);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 600;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 10px 28px rgba(25, 35, 48, 0.26);
}

.section-label {
  margin: 0 0 1rem;
  color: color-mix(in srgb, var(--accent) 78%, white 22%);
  font-size: 0.68rem;
  font-weight: 700;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 7ch;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.94;
}

h2 {
  max-width: 11ch;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 0.98;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.05;
}

p {
  line-height: 1.65;
}

.hero {
  display: grid;
  gap: 2.25rem;
  align-items: center;
  min-height: min(820px, calc(100vh - 92px));
  padding-top: 1.25rem;
}

.hero-copy {
  display: grid;
  gap: 0;
  align-content: center;
  justify-items: start;
}

.hero-subtext {
  max-width: 28rem;
  margin-top: 1rem;
  color: var(--muted-strong);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(143, 169, 197, 0.08), rgba(203, 179, 139, 0.06)),
    rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
  font-size: 0.64rem;
  font-weight: 700;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0 1.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease,
    color 220ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover::after {
  opacity: 1;
}

.button-primary {
  color: #071018;
  background: linear-gradient(135deg, #d8e3ef 0%, #a5bdd6 100%);
  box-shadow: 0 18px 34px rgba(118, 146, 178, 0.18);
}

.button-primary::after {
  box-shadow: 0 0 26px rgba(164, 188, 214, 0.26);
}

.button-secondary {
  border-color: var(--line);
  background:
    linear-gradient(135deg, rgba(143, 169, 197, 0.08), rgba(203, 179, 139, 0.04)),
    rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.button-secondary::after {
  box-shadow: 0 0 24px rgba(143, 169, 197, 0.14);
}

.hero-visual {
  display: grid;
  align-items: center;
  justify-items: center;
}

.floating-panel,
.service-card,
.project-card,
.cta-panel,
.contact-form,
.contact-link {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--surface);
  box-shadow: var(--glow-soft);
  backdrop-filter: blur(14px);
}

.floating-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  transform: translate3d(0, var(--parallax-offset, 0px), 0);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.floating-panel:hover,
.service-card:hover,
.project-card:hover,
.contact-link:hover,
.cta-panel:hover {
  border-color: var(--line-strong);
  box-shadow: var(--glow);
}

.floating-panel:hover {
  transform: translate3d(0, calc(var(--parallax-offset, 0px) - 4px), 0);
}

.service-card:hover,
.project-card:hover,
.contact-link:hover,
.cta-panel:hover {
  transform: translateY(-4px);
}

.service-card:hover {
  transform: translateY(-4px);
}

.floating-panel img,
.project-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, filter 260ms ease;
}

.floating-panel:hover img,
.project-card:hover img {
  transform: scale(1.03);
  filter: saturate(1.05);
}

.panel-meta,
.compare-head,
.small-kicker,
.project-type,
figcaption,
.contact-form span {
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--muted);
}

.panel-meta,
.compare-head {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
}

.visual-main {
  width: min(100%, 46rem);
  display: grid;
  align-content: start;
  padding: 1rem;
  background:
    radial-gradient(circle at 50% 30%, rgba(143, 169, 197, 0.18), transparent 34%),
    radial-gradient(circle at 50% 70%, rgba(203, 179, 139, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--surface);
}

.hero-collage {
  position: relative;
  min-height: clamp(24rem, 48vw, 32rem);
  margin-top: 1rem;
}

.hero-frame {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius-xl) - 8px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(6, 10, 15, 0.76);
  box-shadow: 0 18px 36px rgba(5, 8, 12, 0.28);
}

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

.hero-frame-main {
  inset: 2.2rem 3.2rem 2.2rem 1.2rem;
  z-index: 1;
}

.hero-frame-top {
  top: 0;
  right: 0;
  width: 42%;
  aspect-ratio: 0.9 / 1;
  z-index: 2;
}

.hero-frame-bottom {
  left: 0;
  bottom: 0;
  width: 34%;
  aspect-ratio: 0.92 / 1;
  z-index: 2;
}

.project-pair figure {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--surface-strong);
}

.section-intro {
  display: grid;
  gap: 0.2rem;
  justify-items: center;
  text-align: center;
}

.about-section {
  position: relative;
  padding-top: 2.1rem;
  padding-bottom: 2.8rem;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 24% 38%, rgba(143, 169, 197, 0.08), transparent 28%),
    radial-gradient(circle at 78% 56%, rgba(203, 179, 139, 0.05), transparent 24%);
  z-index: -1;
}

.about-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.reviews-summary,
.review-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--surface);
  box-shadow: var(--glow-soft);
  backdrop-filter: blur(14px);
}

.about-copy-block {
  display: grid;
  gap: 1rem;
  width: 100%;
  justify-items: start;
}

.about-kicker {
  color: color-mix(in srgb, var(--accent) 78%, white 22%);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-lead {
  max-width: 9ch;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.96;
  text-align: left;
}

.about-items {
  display: grid;
  gap: 1.1rem;
  width: 100%;
  max-width: 34rem;
}

.about-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  align-items: start;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-dot {
  width: 0.65rem;
  height: 0.65rem;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
  box-shadow: 0 0 0 6px rgba(143, 169, 197, 0.08);
}

.about-item-copy {
  display: grid;
  gap: 0.35rem;
}

.about-item-copy h3 {
  font-size: 1.04rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.about-item-copy p {
  color: var(--muted-strong);
  font-size: 0.98rem;
  line-height: 1.55;
}

.reviews-section {
  padding-top: 0.35rem;
}

.reviews-layout {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.reviews-summary {
  display: grid;
  gap: 0.7rem;
  align-content: start;
  padding: clamp(1.35rem, 4vw, 1.9rem);
  border-radius: var(--radius-xl);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(143, 169, 197, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--surface);
}

.reviews-stars {
  color: #ead7b2;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: 0.18em;
}

.reviews-score {
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.reviews-note {
  color: var(--muted);
  max-width: 24rem;
  margin: 0 auto;
}

.reviews-grid {
  display: grid;
  gap: 1rem;
}

.review-card {
  display: grid;
  gap: 0.9rem;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  min-height: 12rem;
  align-content: start;
  background:
    radial-gradient(circle at top left, rgba(143, 169, 197, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--surface);
}

.review-stars {
  color: #ead7b2;
  font-size: 1rem;
  letter-spacing: 0.18em;
}

.review-card p {
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.services-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.service-card {
  display: grid;
  gap: 0.8rem;
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.service-icon {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(216, 227, 239, 0.9), rgba(143, 169, 197, 0.16) 46%, rgba(203, 179, 139, 0.08) 72%),
    rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.service-card p {
  max-width: 18rem;
  color: var(--muted);
}

.projects-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.project-card {
  display: grid;
  gap: 1.2rem;
  padding: 1rem;
  border-radius: var(--radius-xl);
  align-content: start;
  transition:
    transform 280ms ease,
    border-color 280ms ease,
    box-shadow 280ms ease;
}

.project-copy {
  display: grid;
  gap: 0.45rem;
  justify-items: center;
  text-align: center;
}

.project-copy h3 {
  max-width: 16ch;
}

.project-pair {
  display: grid;
  gap: 0.9rem;
}

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

.pair-equal figure {
  aspect-ratio: 0.8 / 1;
}

figcaption {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(143, 169, 197, 0.12), rgba(203, 179, 139, 0.08)),
    rgba(7, 10, 16, 0.72);
  color: var(--text);
}

.cta-section {
  padding-top: 0.9rem;
}

.cta-panel {
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border-radius: calc(var(--radius-xl) + 2px);
  justify-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 70% 20%, rgba(143, 169, 197, 0.12), transparent 24%),
    linear-gradient(135deg, rgba(15, 21, 29, 0.95), rgba(10, 14, 20, 0.9)),
    var(--surface);
}

.cta-panel h2 {
  max-width: 14ch;
}

.contact-layout {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.contact-copy {
  max-width: 28rem;
}

.contact-copy p:last-of-type {
  margin-top: 1rem;
  color: var(--muted);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.05rem;
  padding: 0 1rem;
  border-radius: 999px;
  color: var(--text);
  font-size: 0.9rem;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.contact-link-primary {
  background:
    linear-gradient(135deg, rgba(143, 169, 197, 0.18), rgba(203, 179, 139, 0.1)),
    rgba(143, 169, 197, 0.14);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-xl);
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
}


.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(199, 209, 221, 0.42);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(143, 169, 197, 0.48);
  box-shadow: 0 0 0 4px rgba(143, 169, 197, 0.1);
  background: rgba(255, 255, 255, 0.045);
}

.contact-form textarea {
  min-height: 8.4rem;
  resize: vertical;
}

.contact-form .button {
  width: fit-content;
  margin-top: 0.35rem;
}

.site-footer {
  display: grid;
  gap: 1rem;
  padding: 0 0 2.3rem;
}

.brand-footer {
  width: fit-content;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links a {
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--text);
}

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

.reveal-delay-1 {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 190ms;
}

.reveal-delay-3 {
  transition-delay: 280ms;
}

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

@media (min-width: 700px) {
  .section,
  .site-header,
  .site-footer {
    width: min(var(--max-width), calc(100% - 2.4rem));
  }

  .site-nav {
    display: inline-flex;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: minmax(19rem, 0.94fr) minmax(24rem, 1.06fr);
    gap: clamp(2rem, 4vw, 3.75rem);
  }

  .about-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.95fr);
    gap: clamp(2rem, 5vw, 5rem);
    justify-items: stretch;
  }

  .reviews-layout {
    grid-template-columns: minmax(17rem, 0.75fr) minmax(0, 1.25fr);
    align-items: stretch;
  }

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

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .projects-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 0.76fr) minmax(21rem, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1100px) {
  .section {
    padding: 4.5rem 0;
  }

  .hero-copy {
    padding-left: 0.5rem;
  }

  .hero {
    gap: 4rem;
  }

  .services-grid {
    grid-template-columns: 1.05fr 0.95fr 1.05fr 0.95fr;
    align-items: start;
  }

  .project-card {
    padding: 1.15rem;
  }

  .cta-panel {
    min-height: 21rem;
    align-content: center;
  }
}

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

  .header-cta {
    display: none;
  }

  .brand span {
    max-width: 10rem;
  }

  .hero-visual {
    width: 100%;
  }
}

@media (max-width: 519px) {
  .hero {
    gap: 1.4rem;
    min-height: auto;
    padding-top: 0.5rem;
  }

  .hero-copy {
    justify-items: center;
    text-align: center;
  }

  .hero-subtext {
    margin-top: 0.85rem;
  }

  .hero-actions,
  .hero-tags {
    justify-content: center;
  }

  .hero-visual {
    min-height: auto;
  }

  .about-copy-block,
  .about-items {
    max-width: 100%;
  }

  .visual-main {
    width: 100%;
  }

  .hero-collage {
    min-height: 24rem;
  }

  .hero-frame-main {
    inset: 2rem 0.8rem 2rem 0.8rem;
  }

  .hero-frame-top {
    width: 40%;
  }

  .hero-frame-bottom {
    width: 38%;
  }

  .pair-equal {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}
