:root {
  --ink: #07172f;
  --navy: #082a57;
  --blue: #0f5fa8;
  --cyan: #2aa7b8;
  --line: #dce6f2;
  --muted: #5f6f86;
  --soft: #f4f8fc;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 23, 47, 0.12);
  --site-width: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #eef4f8;
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  width: min(100%, var(--site-width));
  margin: 0 auto;
  padding: 8px clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(244, 250, 255, 0.92), rgba(255, 255, 255, 0.96) 46%, rgba(242, 248, 255, 0.92)),
    rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 230, 242, 0.8);
  box-shadow: 0 10px 30px rgba(7, 23, 47, 0.06);
  backdrop-filter: blur(18px) saturate(145%);
}

main,
.site-footer {
  width: min(100%, var(--site-width));
  margin: 0 auto;
  background: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
  transition: transform 180ms ease, filter 180ms ease;
}

.brand:hover {
  transform: translateY(-1px) scale(1.02);
  filter: brightness(1.05);
}

.brand-logo {
  width: auto;
  height: clamp(58px, 5vw, 66px);
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  line-height: 1;
}

.brand-copy strong {
  color: var(--ink);
  font-size: clamp(1.25rem, 1.55vw, 1.75rem);
  font-weight: 500;
  letter-spacing: 0.12em;
}

.brand-copy small {
  color: #435673;
  font-size: clamp(0.68rem, 0.74vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 32px);
  color: #263e60;
  font-size: 0.95rem;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  transition: color 180ms ease;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  content: "";
  background: var(--cyan);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.main-nav a:hover {
  color: var(--blue);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  min-height: 38px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(8, 42, 87, 0.18);
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
  transition: background 180ms ease, transform 180ms ease;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  color: var(--white);
  background: #0c3972;
  transform: translateY(-1px);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  background: rgba(244, 248, 252, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.lang-button {
  min-width: 42px;
  min-height: 34px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.lang-button.active {
  color: var(--white);
  background: var(--navy);
}

.hero-showcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  height: clamp(520px, 62vh, 560px);
  min-height: 0;
  padding: 0;
  background: var(--white);
}

.showcase-panel {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 0;
  padding: clamp(28px, 3.6vw, 48px) clamp(20px, 2.6vw, 34px);
  border-right: 1px solid rgba(220, 230, 242, 0.8);
}

.showcase-panel-one {
  background: linear-gradient(135deg, #eef9ff 0%, #ffffff 88%);
}

.showcase-panel-one .panel-link {
  position: absolute;
  left: clamp(20px, 2.6vw, 34px);
  bottom: clamp(28px, 3.6vw, 48px);
}

.showcase-panel-two {
  color: var(--white);
  background: #da5a40e7;
}

.showcase-panel-two .panel-link {
  position: absolute;
  left: clamp(20px, 2.6vw, 34px);
  bottom: clamp(28px, 3.6vw, 48px);
}

.showcase-panel-three {
  background: #ffffff;
}

.showcase-panel-three .panel-link {
  position: absolute;
  left: clamp(20px, 2.6vw, 34px);
  bottom: clamp(28px, 3.6vw, 48px);
}

.showcase-panel-three::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
}

.showcase-panel-four {
  background: #fbfbff;
}

.showcase-panel-four .panel-link {
  position: absolute;
  left: clamp(20px, 2.6vw, 34px);
  bottom: clamp(28px, 3.6vw, 48px);
}

.showcase-number,
.showcase-panel h1,
.showcase-panel h2,
.showcase-icon,
.showcase-panel p,
.panel-link {
  position: relative;
  z-index: 2;
}

.showcase-number {
  display: block;
  margin-bottom: 18px;
  color: #06939c;
  font-size: clamp(2rem, 3vw, 3.15rem);
  font-weight: 800;
  line-height: 1;
}

.showcase-panel-two .showcase-number {
  color: #ffd33d;
}

.showcase-panel-four .showcase-number,
.showcase-panel-four .showcase-icon {
  color: #5931c9;
}

.showcase-panel h1,
.showcase-panel h2 {
  max-width: 290px;
  margin-bottom: 30px;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.05vw, 2.45rem);
  line-height: 1.28;
  letter-spacing: 0;
  text-transform: uppercase;
}

.showcase-panel-two h2,
.showcase-panel-two p {
  color: var(--white);
  text-shadow: 0 2px 12px rgba(7, 23, 47, 0.4);
}

.showcase-panel-two p {
  display: inline-block;
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  border-radius: 6px;
  text-shadow: none;
  max-width: 255px;
}

.showcase-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 46px;
  color: #069ca4;
}

.showcase-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.showcase-panel p {
  max-width: 285px;
  margin-bottom: 34px;
  color: var(--ink);
  font-size: clamp(0.94rem, 1.02vw, 1.05rem);
  line-height: 1.75;
  font-weight: 500;
}

.panel-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 44px;
  padding: 0 18px;
  color: #006b7d;
  border: 1px solid #0b9dad;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.panel-link::after {
  content: "->";
  font-size: 1.08rem;
}

.showcase-panel-two .panel-link {
  color: #111c35;
  border-color: #ffc328;
  background: #ffc328;
}

.showcase-panel-three .panel-link {
  color: var(--white);
  border-color: #008c9a;
  background: #909a00;
}

.showcase-panel-four .panel-link {
  color: var(--black);
  border-color: #54816e;
  background: #4da371a6;
}

.showcase-panel .panel-link {
  top: clamp(32px, 3.6vw, 48px);
  bottom: auto;
  left: clamp(94px, 7vw, 128px);
  min-height: 36px;
  padding: 0 12px;
  font-size: 0.74rem;
  box-shadow: 0 10px 24px rgba(7, 23, 47, 0.08);
}

.showcase-panel .panel-link::after {
  font-size: 0.95rem;
}

.panel-orb {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url("assets/PANEL1.png") center / cover no-repeat;
  opacity: 0.3;
}

.panel-photo {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.panel-photo-clinical {
  right: -42px;
  bottom: 0;
  width: clamp(340px, 115%, 520px);
  height: auto;
  max-width: none;
  object-fit: contain;
  object-position: right bottom;
}

.panel-photo-approach {
  right: -4%;
  bottom: 0px;
  width: clamp(500px, 165%, 720px);
  max-width: none;
}

.panel-photo-innovation {
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.5;
}

.showcase-panel-two::after,
.showcase-panel-three::after,
.showcase-panel-four::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
}

.showcase-panel-two::after {
  display: none;
}



.showcase-panel-four::after {
  background: rgba(255, 255, 255, 0.72);
}

.trusted-strip {
  position: relative;
  margin-top: 18px;
  padding: 18px 0 18px;
  text-align: center;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(7, 23, 47, 0.06);
}

.trusted-strip::before {
  position: absolute;
  top: -10px;
  left: 18px;
  right: 18px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(42, 167, 184, 0.42), transparent);
}

.trusted-strip h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(1.15rem, 1.55vw, 1.55rem);
  line-height: 1.2;
}

.trusted-strip p {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
}

.trusted-logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  align-items: center;
  gap: 0;
  max-width: var(--site-width);
  margin: 0 auto;
}

.trusted-logos img {
  width: 100%;
  height: 76px;
  padding: 0 24px;
  object-fit: contain;
  border-right: 1px solid #c8d1de;
}

.trusted-logos .trusted-logo-compact {
  transform: scale(0.84);
}

.trusted-logos img:last-child {
  border-right: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 880px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(2.45rem, 5.4vw, 5.95rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 30px;
  color: #3f526f;
  font-size: clamp(1rem, 1.35vw, 1.24rem);
}

.hero-actions,
.contact-section {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
}

.button-primary {
  color: var(--white);
  background: var(--navy);
}

.button-primary:hover {
  background: #0c3972;
}

.button-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.button-secondary:hover {
  border-color: var(--blue);
}

.hero-image-wrap {
  position: relative;
  min-height: 100%;
  background: var(--navy);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.16) 26%, rgba(7, 23, 47, 0.08));
}

.hero-panel-stat,
.hero-panel-dark {
  min-height: 210px;
  padding: 26px;
}

.hero-panel-stat {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.panel-number {
  display: block;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: clamp(3.6rem, 6vw, 5.4rem);
  font-weight: 800;
  line-height: 0.78;
}

.hero-panel h2 {
  margin-bottom: 10px;
  font-size: clamp(1.2rem, 1.6vw, 1.8rem);
  line-height: 1.12;
}

.hero-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.hero-panel-dark {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #0d477e 68%, #147a95);
  border-color: transparent;
}

.hero-panel-dark p {
  color: rgba(255, 255, 255, 0.78);
}

.metrics {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) repeat(3, minmax(150px, 1fr));
  gap: 14px;
  width: 100%;
  padding: clamp(28px, 4vw, 48px) clamp(18px, 5vw, 72px);
  margin: 0 auto;
  background:
    linear-gradient(135deg, rgba(244, 248, 252, 0.98), rgba(255, 255, 255, 0.94)),
    var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metrics-intro {
  grid-row: span 2;
  align-self: stretch;
  padding: 28px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #0c4b7c);
  border-radius: 8px;
}

.metrics-intro .eyebrow {
  color: #9ce8ef;
}

.metrics-intro h2 {
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 3vw, 3.1rem);
  line-height: 1.05;
}

.metrics-intro p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
}

.metric-card {
  position: relative;
  min-height: 132px;
  padding: 22px 22px 20px 74px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(7, 23, 47, 0.06);
}

.metric-card::before {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--cyan);
  background: #eaf8fb;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 800;
}

.metric-founded::before {
  content: "↗";
}

.metric-employees::before {
  content: "+";
}

.metric-cities::before {
  content: "⌖";
}

.metric-centers::before {
  content: "⌂";
}

.metric-dealers::before {
  content: "•";
}

.metric-hospitals::before {
  content: "H";
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
}

.metrics span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 72px);
}

.split-section,
.timeline-section,
.fields-section,
.partners-section,
.ventures-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(28px, 6vw, 86px);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 540px;
}

.section-heading h2,
.venture-copy h2,
.contact-section h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(2rem, 3.2vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-content > p,
.venture-copy p:not(.eyebrow) {
  color: #3f526f;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.principles article,
.field-card {
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.principles h3,
.field-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.12rem;
}

.principles p,
.field-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline article {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.timeline time {
  color: var(--blue);
  font-weight: 800;
}

.timeline p {
  margin-bottom: 0;
  color: #3f526f;
  font-weight: 600;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field-card {
  min-height: 220px;
  background: var(--white);
}

.field-card span {
  display: block;
  margin-bottom: 44px;
  color: var(--cyan);
  font-weight: 800;
}

.partners-section {
  background: var(--soft);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(110px, 1fr));
  gap: 14px;
  align-items: stretch;
}

.logo-grid img {
  width: 100%;
  height: 128px;
  padding: 18px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.ventures-section {
  align-items: center;
}

.venture-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.venture-logos img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.venture-logos .noviris-card-logo {
  background: #061f3d;
  border-color: #061f3d;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 0.65fr);
  justify-content: stretch;
  align-items: stretch;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(54px, 7vw, 82px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--navy);
}

.contact-copy {
  max-width: 880px;
}

.contact-section h2,
.contact-section .eyebrow {
  color: var(--white);
}

.contact-section .button-primary {
  color: var(--navy);
  background: var(--white);
}

.contact-actions {
  display: grid;
  grid-template-rows: 1fr auto;
  min-width: 0;
  gap: 16px;
  align-content: stretch;
  justify-items: stretch;
}

.address-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}

.contact-actions > .button {
  justify-self: end;
  align-self: end;
}

.address-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.map-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #75d9e5;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

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

.address-card h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.address-card p {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.45;
}

.address-card .address-contact {
  display: flex;
  gap: 8px 14px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.address-card a {
  color: #9ce8ef;
  font-size: 0.86rem;
  font-weight: 800;
}

.address-card a:hover {
  color: var(--white);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1120px) {
  .hero,
  .hero-panel-primary,
  .split-section,
  .timeline-section,
  .fields-section,
  .partners-section,
  .ventures-section {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: auto;
  }

  .showcase-panel {
    min-height: 500px;
  }

  .hero-panel-primary {
    min-height: 0;
  }

  .hero-image-wrap {
    min-height: 420px;
  }

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

  .metrics-intro {
    grid-column: 1 / -1;
    grid-row: auto;
  }

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

  .trusted-logos {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 18px;
  }

  .trusted-logos img {
    border-right: 0;
  }

  .metric-card {
    min-height: 118px;
    padding: 20px 22px;
  }

  .metric-card::before {
    display: none;
  }

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

  .contact-actions {
    width: 100%;
  }

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

  .contact-actions > .button {
    justify-self: end;
  }
}

@media (max-width: 780px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-showcase {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .showcase-panel {
    height: auto;
    min-height: 480px;
  }

  .panel-photo-clinical {
    width: 72%;
  }

  .panel-photo-approach {
    right: -24%;
    width: 118%;
  }

  .hero-copy {
    padding: 28px;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 4.2rem);
  }

  .hero-actions .button,
  .contact-section .button {
    width: 100%;
  }

  .metrics,
  .principles,
  .field-grid,
  .logo-grid,
  .trusted-logos,
  .venture-logos {
    grid-template-columns: 1fr;
  }

  .metrics div {
    padding: 22px;
  }

  .metric-card {
    min-height: 104px;
    padding: 18px;
  }

  .metrics strong {
    font-size: 2.15rem;
  }

  .address-card {
    grid-template-columns: 36px 1fr;
    padding: 14px;
  }

  .map-icon {
    width: 36px;
    height: 36px;
  }

  .address-card p,
  .address-card .address-contact {
    overflow-wrap: anywhere;
  }

  .timeline article {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .venture-logos img {
    height: 180px;
  }

  .contact-section,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-actions {
    width: 100%;
    justify-items: stretch;
  }

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

  .contact-actions > .button {
    justify-self: stretch;
  }
}
