:root {
  --ink: #14242d;
  --muted: #5c6d76;
  --line: #d8e4e5;
  --paper: #ffffff;
  --soft: #f4f8f7;
  --teal: #147d7b;
  --teal-dark: #0d5658;
  --green: #4f8061;
  --amber: #b36a32;
  --slate: #536b7b;
  --navy: #183342;
  --shadow: 0 22px 55px rgba(20, 36, 45, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 228, 229, 0.8);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand strong {
  display: block;
  font-size: 1.03rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.2;
}

.brand-mark {
  position: relative;
  width: 36px;
  height: 36px;
  border: 1px solid #8cc4bd;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 22%, #147d7b 0 4px, transparent 5px),
    radial-gradient(circle at 50% 78%, #b36a32 0 4px, transparent 5px),
    linear-gradient(120deg, transparent 43%, #147d7b 44% 48%, transparent 49% 55%, #b36a32 56% 60%, transparent 61%);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 30px);
  color: #334852;
  font-size: 0.94rem;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a[aria-current="page"] {
  color: var(--teal-dark);
  font-weight: 700;
}

.nav-contact {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

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

.hero-media {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.98), rgba(255,255,255,0.84) 42%, rgba(255,255,255,0.22) 100%),
    radial-gradient(circle at 78% 28%, rgba(20, 125, 123, 0.16), transparent 28%),
    linear-gradient(135deg, #f7fbfa 0%, #e9f2f1 52%, #dfe9eb 100%);
}

.lab-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.lab-visual::before {
  content: "";
  position: absolute;
  right: -10%;
  top: 0;
  width: 70%;
  height: 100%;
  opacity: 0.55;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(20, 125, 123, 0.12) 18% 18.4%, transparent 18.4% 42%, rgba(20, 125, 123, 0.1) 42% 42.4%, transparent 42.4%),
    linear-gradient(rgba(20, 125, 123, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 125, 123, 0.08) 1px, transparent 1px);
  background-size: auto, 56px 56px, 56px 56px;
}

.lab-panel,
.dna-line,
.vial,
.scope,
.bench {
  position: absolute;
  display: block;
}

.lab-panel {
  right: clamp(22px, 8vw, 126px);
  border: 1px solid rgba(20, 125, 123, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 24px 60px rgba(20, 36, 45, 0.08);
}

.panel-a {
  top: 18%;
  width: clamp(170px, 22vw, 330px);
  height: clamp(120px, 16vw, 220px);
}

.panel-b {
  top: 39%;
  right: clamp(54px, 15vw, 260px);
  width: clamp(140px, 17vw, 260px);
  height: clamp(92px, 12vw, 160px);
}

.panel-c {
  bottom: 18%;
  width: clamp(230px, 30vw, 470px);
  height: clamp(74px, 9vw, 128px);
}

.dna-line {
  right: 8%;
  top: 18%;
  width: min(440px, 42vw);
  height: min(440px, 42vw);
  border-radius: 50%;
  border: 1px solid rgba(20, 125, 123, 0.18);
  background:
    radial-gradient(circle at 28% 28%, #147d7b 0 5px, transparent 6px),
    radial-gradient(circle at 44% 42%, #b36a32 0 4px, transparent 5px),
    radial-gradient(circle at 60% 58%, #147d7b 0 5px, transparent 6px),
    radial-gradient(circle at 76% 72%, #536b7b 0 4px, transparent 5px),
    linear-gradient(135deg, transparent 0 35%, rgba(20, 125, 123, 0.28) 35% 35.7%, transparent 35.7% 47%, rgba(179, 106, 50, 0.24) 47% 47.7%, transparent 47.7%);
}

.line-b {
  top: 34%;
  right: 22%;
  width: min(260px, 28vw);
  height: min(260px, 28vw);
  opacity: 0.58;
}

.bench {
  right: 0;
  bottom: 14%;
  width: 58%;
  height: 16px;
  background: linear-gradient(90deg, transparent, rgba(24, 51, 66, 0.28));
}

.vial {
  bottom: 16%;
  width: 26px;
  height: 88px;
  border: 2px solid rgba(20, 125, 123, 0.42);
  border-radius: 5px 5px 12px 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.76) 0 55%, rgba(20, 125, 123, 0.18) 55% 100%);
}

.vial::before {
  content: "";
  position: absolute;
  left: 5px;
  top: -13px;
  width: 12px;
  height: 12px;
  border-radius: 3px 3px 0 0;
  background: rgba(83, 107, 123, 0.7);
}

.vial-a { right: 23%; }
.vial-b { right: 28%; height: 72px; }

.scope {
  right: 12%;
  bottom: 17%;
  width: 116px;
  height: 138px;
  border-bottom: 18px solid rgba(24, 51, 66, 0.6);
  border-left: 18px solid rgba(24, 51, 66, 0.55);
  border-radius: 0 0 8px 12px;
}

.scope::before {
  content: "";
  position: absolute;
  right: 24px;
  top: -10px;
  width: 28px;
  height: 96px;
  border-radius: 14px;
  background: rgba(20, 125, 123, 0.62);
  transform: rotate(34deg);
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 36%, rgba(255, 255, 255, 0.3) 68%, rgba(255, 255, 255, 0.06) 100%),
    radial-gradient(circle at 18% 64%, rgba(20, 125, 123, 0.13), transparent 32%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 86px);
  padding: 86px 0 132px;
}

.eyebrow,
.label {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 5.9rem);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: 0;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: 0;
}

h3 {
  font-size: 1.1rem;
  line-height: 1.35;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  color: #334852;
  font-size: clamp(1.05rem, 1.8vw, 1.27rem);
}

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

.science-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 26px;
}

.science-tags span {
  padding: 8px 10px;
  border: 1px solid rgba(20, 125, 123, 0.26);
  border-radius: 999px;
  color: #244750;
  background: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

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

.button.secondary {
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.72);
  border-color: #a6c9c5;
}

.section-pad,
.intro-section {
  padding: clamp(68px, 8vw, 118px) clamp(18px, 5vw, 76px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(150px, 0.36fr) minmax(0, 1fr);
  gap: clamp(28px, 7vw, 92px);
  max-width: 1180px;
  margin: 0 auto;
}

.section-kicker span {
  display: inline-block;
  padding-top: 10px;
  color: var(--teal-dark);
  border-top: 2px solid var(--teal);
  font-weight: 800;
  font-size: 0.85rem;
}

.section-body p,
.section-head p,
.text-columns p,
.statement p,
.program-card p,
.program-note,
.model-card p,
.process-grid p,
.operating-grid p,
.core-matrix p,
.assurance-list p,
.contact-info p {
  color: var(--muted);
}

.section-head {
  max-width: 870px;
  margin: 0 auto 36px;
  text-align: center;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.area-card,
.program-feature,
.model-card,
.statement,
.contact-form,
.contact-info {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 28px rgba(20, 36, 45, 0.06);
}

.area-card {
  min-height: 250px;
  padding: 26px;
}

.biotech-core {
  position: relative;
}

.core-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 26px;
  align-items: start;
}

.core-copy {
  padding: clamp(22px, 3vw, 34px);
  border-left: 3px solid var(--teal);
  background: rgba(255, 255, 255, 0.72);
}

.core-copy h2 {
  font-size: clamp(1.85rem, 3vw, 2.8rem);
}

.core-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.core-matrix article {
  min-height: 190px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.core-matrix span {
  display: block;
  margin-bottom: 18px;
  color: var(--amber);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
}

.core-matrix strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.icon-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 18px 0 0 #b9d8d4, 36px 0 0 #dbe9e7;
}

.icon-dot.amber { background: var(--amber); }
.icon-dot.slate { background: var(--slate); }
.icon-dot.green { background: var(--green); }

.featured,
.muted {
  background: var(--soft);
}

.program-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.program-feature {
  padding: 28px;
}

.schedule {
  background:
    linear-gradient(90deg, rgba(20, 125, 123, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(20, 125, 123, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

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

.timeline article {
  padding: 0 0 22px 28px;
  border-left: 2px solid var(--line);
}

.timeline time {
  color: var(--amber);
  font-weight: 800;
  font-size: 0.86rem;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  max-width: 1180px;
  margin: 0 auto;
}

.partner-grid span {
  display: grid;
  min-height: 84px;
  place-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #40535c;
  background: white;
  text-align: center;
  font-weight: 800;
}

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

.discipline-item {
  padding: clamp(30px, 5vw, 58px) clamp(18px, 5vw, 76px);
  background: #fbfdfc;
}

.discipline-item span {
  display: block;
  margin-bottom: 12px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.discipline-item strong {
  display: block;
  max-width: 660px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 1.16;
  font-weight: 500;
}

.contact-band {
  justify-content: space-between;
  padding: clamp(38px, 5vw, 62px) clamp(18px, 5vw, 76px);
  color: white;
  background: var(--navy);
}

.contact-band h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
}

.contact-band .eyebrow {
  color: #9ed5ce;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 76px);
  border-top: 1px solid var(--line);
  color: #4b5e67;
  background: white;
}

.site-footer p {
  margin: 4px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer a {
  text-decoration: none;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(84px, 12vw, 148px) clamp(18px, 5vw, 76px);
  background: linear-gradient(180deg, #f7fbfa 0%, #ffffff 100%);
}

.page-hero.compact {
  padding-bottom: clamp(68px, 9vw, 110px);
}

.contact-hero {
  padding-top: clamp(28px, 4vw, 56px);
  padding-bottom: clamp(12px, 2vw, 24px);
}

.contact-hero .page-hero-inner {
  max-width: 760px;
  text-align: left;
}

.contact-hero h1 {
  max-width: 720px;
  font-size: clamp(2.15rem, 3.6vw, 3.15rem);
  line-height: 1.02;
}

.contact-hero p {
  max-width: 640px;
}

.partnerships-hero h1 {
  max-width: 840px;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.12rem;
}

.molecule-field {
  position: absolute;
  inset: 0;
  opacity: 0.7;
  background:
    radial-gradient(circle at 80% 24%, rgba(20, 125, 123, 0.2) 0 5px, transparent 6px),
    radial-gradient(circle at 88% 42%, rgba(179, 106, 50, 0.18) 0 4px, transparent 5px),
    radial-gradient(circle at 74% 56%, rgba(83, 107, 123, 0.16) 0 6px, transparent 7px),
    linear-gradient(125deg, transparent 0 70%, rgba(20, 125, 123, 0.08) 70% 70.4%, transparent 70.4%),
    linear-gradient(32deg, transparent 0 64%, rgba(179, 106, 50, 0.08) 64% 64.4%, transparent 64.4%);
}

.text-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  max-width: 1060px;
  margin: 0 auto;
}

.mission-vision,
.partner-models {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.statement,
.model-card {
  padding: clamp(24px, 3vw, 36px);
}

.operating-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.operating-grid article {
  padding: 24px;
  border-top: 3px solid var(--teal);
  background: white;
  box-shadow: 0 10px 28px rgba(20, 36, 45, 0.05);
}

.operating-grid h3 {
  margin-bottom: 10px;
}

.glance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.glance-grid article {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 28px rgba(20, 36, 45, 0.05);
}

.glance-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.glance-grid strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.45;
}

.programs-list {
  max-width: 1120px;
  margin: 0 auto;
}

.program-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 24px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.program-card:last-child {
  border-bottom: 1px solid var(--line);
}

.program-card span,
.process-grid span {
  color: var(--amber);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.program-card h2 {
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
}

.program-note {
  margin: 12px 0 0;
  padding: 12px 14px;
  border-left: 2px solid #9ccbc6;
  background: #f7fbfa;
  font-size: 0.95rem;
}

.domain-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 1180px;
  margin: 0 auto;
}

.domain-grid span {
  display: flex;
  min-height: 82px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: #40535c;
  font-weight: 800;
}

.model-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: #40535c;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.process-grid div {
  padding: 22px;
  border-left: 2px solid #9ccbc6;
  background: white;
}

.assurance-list {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.assurance-list article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.assurance-list article h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.assurance-list ul {
  margin: 0;
  padding: 24px 24px 24px 42px;
  border-left: 3px solid var(--amber);
  color: #40535c;
  background: #fbfdfc;
}

.assurance-list li + li {
  margin-top: 12px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 26px;
  max-width: 1180px;
  margin: 0 auto;
  margin-top: -8px;
  padding-top: clamp(4px, 1vw, 18px);
}

.contact-form,
.contact-info {
  padding: clamp(24px, 3vw, 34px);
}

.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form label {
  font-weight: 800;
  color: #324751;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cbdadc;
  border-radius: 6px;
  padding: 11px 12px;
  color: var(--ink);
  font: inherit;
  background: white;
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  min-height: 24px;
  margin: 4px 0 0;
  color: var(--teal-dark);
}

.form-note.is-success {
  color: var(--green);
}

.form-note.is-error {
  color: #9e4d3a;
}

.contact-info dl {
  margin: 0;
}

.contact-info div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-info dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-info dd {
  margin: 5px 0 0;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }

  .site-nav {
    position: absolute;
    inset: 76px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 12px;
  }

  .hero {
    min-height: 650px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.86) 58%, rgba(255, 255, 255, 0.38) 100%);
  }

  .hero-content {
    margin: 0 auto;
    padding-top: 62px;
  }

  .area-grid,
  .program-strip,
  .partner-grid,
  .process-grid,
  .operating-grid,
  .domain-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-grid,
  .contact-layout,
  .core-panel,
  .assurance-list {
    grid-template-columns: 1fr;
  }

  .mission-vision,
  .partner-models,
  .text-columns,
  .glance-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 68px;
  }

  .brand small {
    display: none;
  }

  .site-nav {
    inset-top: 68px;
  }

  h1 {
    font-size: clamp(2.45rem, 14vw, 3.6rem);
  }

  .area-grid,
  .program-strip,
  .partner-grid,
  .process-grid,
  .operating-grid,
  .domain-grid,
  .core-matrix,
  .discipline-band {
    grid-template-columns: 1fr;
  }

  .program-card {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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