/* VORENTRA LABS LLC — Global site styles */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@500;600;700;800&family=Source+Sans+3:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --ink: #07111f;
  --navy: #0d2137;
  --slate: #1a334d;
  --teal: #0f8f86;
  --teal-bright: #14b8a6;
  --sand: #e9e2d6;
  --mist: #f3f6f8;
  --white: #ffffff;
  --muted: #5c6b7a;
  --line: rgba(7, 17, 31, 0.12);
  --amber: #d97706;
  --shadow: 0 24px 60px rgba(7, 17, 31, 0.14);
  --radius: 4px;
  --max: 1180px;
  --header-h: 76px;
  --font-display: "Syne", sans-serif;
  --font-body: "Source Sans 3", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--mist);
  line-height: 1.65;
  font-size: 1.05rem;
  overflow-x: hidden;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1em;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.is-scrolled,
.site-header.solid {
  background: rgba(7, 17, 31, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.site-header .nav-wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  height: 44px;
  color: var(--white);
}

.site-header .logo-img {
  display: block;
  width: 40px !important;
  height: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;
  object-fit: contain;
  border-radius: 6px;
  mix-blend-mode: screen;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  line-height: 1;
  white-space: nowrap;
}

.logo-text em {
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.12em;
  font-size: 0.72em;
  color: var(--teal-bright);
  margin-left: 0.15em;
}

.site-footer .logo {
  height: auto;
}

.site-footer .logo-img {
  width: 56px !important;
  height: 56px !important;
  max-width: 56px !important;
  max-height: 56px !important;
  object-fit: contain;
  border-radius: 8px;
  mix-blend-mode: normal;
}

.site-footer .logo-text {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.65rem;
}

.nav a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  font-weight: 600;
  position: relative;
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--white);
}

.nav a.active::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--teal-bright);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: var(--teal);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--teal-bright);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-outline-dark:hover {
  background: var(--ink);
  color: var(--white);
}

.nav-cta {
  padding: 0.65rem 1.1rem;
  font-size: 0.88rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: 0.25s ease;
}

/* —— Hero —— */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--ink);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: kenburns 18s ease-in-out infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(7, 17, 31, 0.88) 0%, rgba(7, 17, 31, 0.62) 48%, rgba(7, 17, 31, 0.35) 100%),
    linear-gradient(to top, rgba(7, 17, 31, 0.75) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: calc(var(--header-h) + 2rem) 0 3rem;
  max-width: 720px;
  margin-left: max(1.25rem, calc((100% - var(--max)) / 2));
}

.brand-lockup {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: 1.25rem;
  animation: rise 0.9s ease both;
}

.brand-lockup em {
  font-style: normal;
  color: var(--teal-bright);
  display: block;
}

.hero h1 {
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  font-weight: 600;
  max-width: 18ch;
  margin-bottom: 1rem;
  animation: rise 0.9s ease 0.12s both;
}

.hero p {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.86);
  max-width: 42ch;
  margin-bottom: 1.8rem;
  animation: rise 0.9s ease 0.22s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: rise 0.9s ease 0.32s both;
}

.page-hero {
  min-height: 62vh;
  align-items: flex-end;
}

.page-hero .hero-content {
  max-width: 760px;
  padding: calc(var(--header-h) + 3rem) 0 3.5rem;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  max-width: none;
  animation: rise 0.8s ease both;
}

.page-hero p {
  animation: rise 0.8s ease 0.1s both;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 0.85rem;
}

/* —— Sections —— */
section {
  padding: 5.5rem 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: 2.75rem;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-head p {
  color: var(--muted);
  font-size: 1.12rem;
}

.bg-ink {
  background: var(--ink);
  color: var(--white);
}

.bg-ink .section-head p,
.bg-navy .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.bg-navy {
  background: linear-gradient(160deg, var(--navy), #12304d 55%, #0a1c2e);
  color: var(--white);
}

.bg-sand {
  background:
    radial-gradient(ellipse at 10% 20%, rgba(15, 143, 134, 0.12), transparent 40%),
    radial-gradient(ellipse at 90% 80%, rgba(217, 119, 6, 0.1), transparent 35%),
    var(--sand);
}

.bg-white {
  background: var(--white);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.split.reverse .split-media {
  order: -1;
}

.split-media {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow);
  min-height: 360px;
}

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

.split-copy h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
}

.split-copy p {
  color: var(--muted);
}

.bg-ink .split-copy p,
.bg-navy .split-copy p {
  color: rgba(255, 255, 255, 0.78);
}

/* —— Grids —— */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-block {
  padding: 1.75rem 1.5rem;
  border-top: 3px solid var(--teal);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.25s ease, background 0.25s ease;
}

.bg-white .service-block,
.bg-sand .service-block,
.bg-mist .service-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--teal);
  box-shadow: 0 10px 30px rgba(7, 17, 31, 0.05);
}

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

.service-block h3 {
  font-size: 1.25rem;
  margin-bottom: 0.55rem;
}

.service-block p {
  color: var(--muted);
  margin: 0;
  font-size: 0.98rem;
}

.bg-ink .service-block p,
.bg-navy .service-block p {
  color: rgba(255, 255, 255, 0.72);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.stat {
  border-left: 2px solid var(--teal-bright);
  padding-left: 1rem;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* —— People —— */
.people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.person {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: var(--navy);
  min-height: 380px;
}

.person img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
  transition: transform 0.6s ease;
}

.person:hover img {
  transform: scale(1.05);
}

.person figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem 1.15rem;
  background: linear-gradient(to top, rgba(7, 17, 31, 0.92), transparent);
  color: var(--white);
}

.person h3 {
  font-size: 1.15rem;
  margin: 0 0 0.2rem;
}

.person p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

/* —— Gallery —— */
.mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 0.85rem;
}

.mosaic figure {
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  position: relative;
}

.mosaic figure:first-child {
  grid-row: span 2;
}

.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.mosaic figure:hover img {
  transform: scale(1.06);
}

.mosaic figcaption {
  position: absolute;
  left: 0.9rem;
  bottom: 0.85rem;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

/* —— Jobs —— */
.job-list {
  display: grid;
  gap: 0.85rem;
}

.job {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.35rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.job:hover {
  border-color: var(--teal);
  transform: translateX(4px);
}

.job h3 {
  margin: 0 0 0.25rem;
  font-size: 1.15rem;
}

.job p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.job .meta {
  color: var(--slate);
  font-weight: 600;
  font-size: 0.95rem;
}

/* —— Blog —— */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.blog-card .thumb {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.blog-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .thumb img {
  transform: scale(1.05);
}

.blog-card .body {
  padding: 1.35rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card .tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.55rem;
}

.blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
}

.blog-card p {
  color: var(--muted);
  font-size: 0.98rem;
  flex: 1;
}

.blog-card .read {
  margin-top: 1rem;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-display);
}

/* —— Forms —— */
.form-panel {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

form {
  display: grid;
  gap: 1rem;
  background: var(--white);
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: 6px;
}

label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  background: var(--mist);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15, 143, 134, 0.18);
  background: var(--white);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-details {
  display: grid;
  gap: 1.25rem;
}

.contact-details .item {
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--line);
}

.contact-details h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

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

/* —— Values / timeline —— */
.value-list {
  display: grid;
  gap: 1.25rem;
}

.value-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  align-items: start;
}

.value-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  background: rgba(15, 143, 134, 0.12);
  color: var(--teal);
}

.timeline {
  display: grid;
  gap: 0;
  border-left: 2px solid rgba(15, 143, 134, 0.35);
  padding-left: 1.5rem;
}

.timeline-item {
  position: relative;
  padding: 0 0 2rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.9rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 143, 134, 0.2);
}

.timeline-item strong {
  display: block;
  font-family: var(--font-display);
  color: var(--teal);
  margin-bottom: 0.25rem;
}

/* —— CTA band —— */
.cta-band {
  padding: 4.5rem 0;
  background:
    linear-gradient(120deg, rgba(7, 17, 31, 0.88), rgba(15, 143, 134, 0.75)),
    url("../images/developers.png") center/cover;
  color: var(--white);
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 16ch;
  margin: 0 auto 0.85rem;
}

.cta-band p {
  max-width: 48ch;
  margin: 0 auto 1.6rem;
  color: rgba(255, 255, 255, 0.86);
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* —— Footer —— */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: 4rem 0 1.75rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.site-footer h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.site-footer a {
  display: block;
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
}

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

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  max-width: 32ch;
  font-size: 0.98rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

/* —— Reveal animations —— */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes kenburns {
  from {
    transform: scale(1.04) translateY(0);
  }
  to {
    transform: scale(1.1) translateY(-1.5%);
  }
}

/* —— Utilities —— */
.muted {
  color: var(--muted);
}

.list-check {
  display: grid;
  gap: 0.65rem;
  margin: 1.25rem 0;
}

.list-check li {
  position: relative;
  padding-left: 1.5rem;
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--teal);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.chip {
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.65);
}

.bg-ink .chip,
.bg-navy .chip {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}

th, td {
  text-align: left;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--line);
}

th {
  font-family: var(--font-display);
  background: var(--mist);
  font-weight: 700;
}

tr:last-child td {
  border-bottom: none;
}

.notice {
  margin-top: 0.75rem;
  padding: 0.85rem 1rem;
  background: rgba(15, 143, 134, 0.1);
  border-left: 3px solid var(--teal);
  font-size: 0.95rem;
  display: none;
}

.notice.show {
  display: block;
}

/* —— Responsive —— */
@media (max-width: 980px) {
  .split,
  .split.reverse,
  .form-panel,
  .footer-grid,
  .grid-3,
  .grid-4,
  .people-grid,
  .blog-grid,
  .stat-row {
    grid-template-columns: 1fr 1fr;
  }

  .split.reverse .split-media {
    order: 0;
  }

  .mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }

  .mosaic figure:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

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

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

@media (max-width: 820px) {
  .logo {
    height: 38px;
    gap: 0.5rem;
  }

  .site-header .logo-img {
    width: 34px !important;
    height: 34px !important;
    max-width: 34px !important;
    max-height: 34px !important;
  }

  .logo-text {
    font-size: 0.92rem;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    background: rgba(7, 17, 31, 0.97);
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 1.5rem 1.75rem;
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
  }

  .nav.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav a.active::after,
  .nav a:hover::after {
    display: none;
  }

  .nav .btn {
    margin-top: 1rem;
    width: 100%;
  }

  .grid-3,
  .grid-2,
  .grid-4,
  .people-grid,
  .blog-grid,
  .stat-row,
  .split,
  .form-panel,
  .footer-grid,
  .job,
  .form-row {
    grid-template-columns: 1fr;
  }

  .mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 210px);
  }

  .mosaic figure:first-child {
    grid-column: auto;
  }

  section {
    padding: 4rem 0;
  }

  .hero-content {
    margin-left: auto;
    margin-right: auto;
  }
}
