
:root {
  --color-primary: #ffffff;
  --color-headings: #111111;
  --color-body: #3f3f46;
  --color-secondary: #6b7280;
  --color-accent: #0f766e;

  --fs-display: clamp(2.375rem, calc(1.309rem + 4.737vw), 4.625rem);
  --fs-h2: clamp(1.625rem, calc(1.211rem + 1.842vw), 2.5rem);
  --fs-h3: clamp(1.125rem, calc(0.947rem + 0.789vw), 1.5rem);
  --fs-body: clamp(0.938rem, calc(0.908rem + 0.132vw), 1rem);
  --fs-over: clamp(0.688rem, calc(0.658rem + 0.132vw), 0.75rem);
  --fs-lead: clamp(1rem, calc(0.92rem + 0.35vw), 1.25rem);

  --lh-tight: 1.02;
  --lh-title: 1.1;
  --lh-body: 1.45;

  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;

  --topbar-h: 72px;
}
  
/* =========================
   BASE
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--color-primary);
  color: var(--color-body);
  line-height: var(--lh-body);
}

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

h1,
h2,
h3 {
  color: var(--color-headings);
  margin: 0 0 1rem;
}
}

p {
  margin: 0;
  text-wrap: balance;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--color-accent) 35%, transparent);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

/* Typography hooks already in your design */
.hero__title {
  font-size: var(--fs-display);
  line-height: var(--lh-tight);
}

body,
.hero__subtitle,
.solutions__subtitle,
.cred__text,
.footer__text {
  font-size: var(--fs-lead);
}

/* =========================
   HERO
========================= */
.site-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  min-height: clamp(540px, 70vh, 720px);
  padding: 16px 0 24px;
  /* make room for fixed topbar so hero text doesn't sit under it */
  padding-top: calc(var(--topbar-h) + 28px);
}

.site-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/hero-architecture.webp");
  background-size: cover;
  background-position: 55% 30%;
  transform: scale(1.03) scaleX(-1);
}

.site-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(255, 255, 255, 0.52) 38%,
    rgba(255, 255, 255, 0.64) 100%
  );
}

.site-hero .container {
  position: relative;
  z-index: 2;
}

.topbar {
  position: fixed;
  inset: 20px 0 auto 0;
  z-index: 999;
  display: flex;
  align-items: center;
  height: var(--topbar-h);
  width: 100%;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}
.sub__topbar {
  display: flex;
  align-items: center;
  width: 100%;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 6px 0;
}

.brand__name {
  display: block;
  width: 120px;
  object-fit: contain;
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle-label {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.nav-toggle-icon {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-headings);
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-headings);
  transition: transform 180ms ease, top 180ms ease, opacity 180ms ease;
}

.nav-toggle-icon::before {
  top: -6px;
}

.nav-toggle-icon::after {
  top: 6px;
}

.nav {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.nav__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.nav__panel {
  position: fixed;
  top: calc(var(--topbar-h) + 10px);
  right: 16px;
  left: 16px;
  max-width: 520px;
  margin-left: auto;
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 6px 6px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav__panel-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-secondary);
}

.nav__panel-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.06);
  color: rgba(0, 0, 0, 0.72);
  cursor: pointer;
}

.nav__link {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-body);
  white-space: nowrap;
  transition: background-color 160ms ease, color 160ms ease,
    transform 160ms ease;
}

.nav__link:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--color-headings);
}

.nav__link--button {
  justify-content: center;
  margin-top: 6px;
  background: var(--color-headings);
  color: var(--color-headings);
  border: 1px solid transparent;
  border-radius: 10px;
}

.nav__link--button:hover {
  background: #1d1d1d;
  color: #fff;
}

.nav__panel-foot {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.nav__meta {
  margin: 0;
  font-size: 12.5px;
  color: var(--color-secondary);
}

.nav-toggle:checked ~ .nav .nav__backdrop {
  opacity: 1;
  pointer-events: auto;
}

.nav-toggle:checked ~ .nav .nav__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.nav-toggle:checked + .nav-toggle-label .nav-toggle-icon {
  background: transparent;
}

.nav-toggle:checked + .nav-toggle-label .nav-toggle-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle:checked + .nav-toggle-label .nav-toggle-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

@media (min-width: 860px) {
  .topbar {
    padding: 40px 28px;
    justify-content: center;
  }
  
  .sub__topbar {
    width: min(1120px, calc(100% - 32px));
  }
  
  .brand__name {
    width: 140px;
    max-width: 220px;
  }

  .nav-toggle-label {
    display: none;
  }

  .nav {
    position: static;
    inset: auto;
    pointer-events: auto;
    margin-left: auto;
    flex: 0 0 auto;
    padding-left: 1rem;
  }

  .nav__backdrop {
    display: none;
  }

  .nav__panel {
    position: static;
    display: flex;
    align-items: center;
    gap: 6px;
    max-width: none;
    margin: 0;
    padding: 0 2px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav__panel-head,
  .nav__panel-foot {
    display: none;
  }

  .nav__link {
    display: inline-flex;
    width: auto;
    padding: 9px 12px;
    border-radius: 10px;
    font-size: 13px;
  }

  .nav__link--button {
    margin-top: 0;
    margin-left: 6px;
    padding: 10px 15px;
    border-radius: 10px;
  }
}

 /* =========================
   HERO CONTENT
========================= */
.hero-container {
    margin-inline: auto;
}
.hero {
  padding-top: 32px;
  padding-bottom: 24px;
  max-width: 720px;
}


.hero__title {
  margin: 0 0 14px;
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: var(--color-headings);
  max-width: 11ch;
}

.hero__title--light {
  color: var(--color-secondary);
  font-weight: 700;
  display: block;
}

.hero__accent {
  width: 52px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 999px;
  margin: 12px 0 18px;
  display: inline-block;
}

.hero__subtitle {
  margin: 0 0 28px;
  color: var(--color-body);
  max-width: 56ch;
  font-size: var(--fs-lead);
  font-style: normal;

}

.hero__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap:1rem; 
  margin-bottom: 12px;
  max-width: 360px;
  justify-items: center;
}

  @media (min-width: 640px) {
  .hero__actions {
    justify-content: flex-start;
    align-items: center;
  }

  .btn {
    width: auto;
    cursor: pointer;
    min-width: 220px;
  }
}
@media (min-width: 860px) {
  .hero {
    padding-top: 56px;
    padding-bottom: 40px;
    max-width: 760px;
  }

  .hero__title {
    max-width: 12ch;
  }

  .hero__subtitle {
    max-width: 54ch;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: 100%;
  min-height: 44px;
  padding: 12px 14px;

  border-radius: 10px;
  font-weight: 680;
  font-size: 13px;

  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-headings);
}

.btn__arrow {
  font-weight: 850;
}

.btn--primary {
  background: var(--color-headings);
  color: #fff;
  border-color: transparent;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(0, 0, 0, 0.1);
}



/* =========================
   CREDIBILITY BAND
========================= */

.cred-band {
  padding: 2.75rem 0;
  background: #6b7280;
}

.cred-band__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.cred {
  position: relative;
  padding-bottom: 1.25rem;
  border-bottom: 3px solid var(--color-accent);
}
.cred-band__head {
  margin-bottom: 1.75rem;
  max-width: 32rem;
}

.cred-band__title {
  margin: 0;
  font-size: var(--fs-h2);
  line-height: 1.25;
  color: #f5f5f5;
}
.cred:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.cred__kicker {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3a8;
}

.cred__title {
  margin: 0 0 0.65rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  color: #f5f5f5;
  }

.cred__lead {
  margin: 0 0 0.5rem;
  max-width: 28ch;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.55;
  color: #e1e4e5;
}

.cred__text {
  margin: 0;
  max-width: 34ch;
  font-size: 0.96rem;
  line-height: 1.7;
  color: #c0c5c7;
}

/* =========================
   TABLET AND UP
========================= */

@media (min-width: 48rem) {
  .cred-band {
    padding: 3.25rem 0;
  }

  .cred-band__grid {
    grid-template-columns: repeat(3, minmax(16rem, 1fr));
    gap: 1.5rem;
  }

  .cred {
    padding: 0 1.25rem 0 0;
    border-bottom: 0;
  }

  .cred:not(:last-child) {
    border-right: 3px solid var(--color-accent);
  }

  .cred-band__title {
    white-space: nowrap;
  }
}

/* =========================
   DESKTOP
========================= */

@media (min-width: 64rem) {
  .cred-band {
    padding: 3.75rem 0;
  }

  .cred-band__grid {
    gap: 2rem;
  }

  .cred {
    padding-right: 1.5rem;
  }

  .cred-band__title {

    white-space: nowrap;
  }

  .cred__lead {
    font-size: 1.02rem;
  }
}
/* =========================
   JOPAD SOLUTIONS GRID
   Mobile-first
========================= */

.solutions-grid {
  padding: 56px 0;
  background: #f5f6f7;
  scroll-margin-top: 80px;
}

.solutions-grid__container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto; 
}

/* Header stays left-aligned */
.solutions-grid__header{
  max-width: 760px;
  margin: 0 0 24px;
  text-align: left;
  
}

.solutions-grid__label {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(15, 20, 23, 0.56);
}

.solutions-grid__title {
  margin: 0 0 10px;
  font-size: var(--fs-h2);
  line-height: 1.25;
  
}

.solutions-grid__intro {
  margin: 0;
  width:100%; 
  font-size: 15px;
  line-height: 1.65;
  color: rgba(15, 20, 23, 0.72);
}

/* Grid */
.solutions-grid__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 24px;
}

.solutions-grid__card {
  position: relative;
  display: block;
  padding: 20px 18px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 20, 23, 0.08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease,
    border-color 180ms ease;
}

.solutions-grid__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    900px 280px at -10% -30%,
    rgba(30, 167, 155, 0.12),
    transparent 52%
  );
  pointer-events: none;
}

.solutions-grid__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.09);
  border-color: rgba(15, 20, 23, 0.12);
}

.solutions-grid__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  background: rgba(30, 167, 155, 0.12);
  border: 1px solid rgba(30, 167, 155, 0.18);
  color: #0f5f58;
}

.solutions-grid__icon svg {
  width: 20px;
  height: 20px;
}

.solutions-grid__card-title {
  position: relative;
  z-index: 1;
  margin: 14px 0 8px;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  font-weight: 700;
  color: #0f1417;
}

.solutions-grid__card-text {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(15, 20, 23, 0.68);
}
  
/* =========================
   Wider screens
========================= */

/* Tablet */
@media (min-width: 700px) {
  .solutions-grid {
    padding: 68px 0;
  }

  .solutions-grid__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .solutions-grid__card {
    padding: 22px 20px 20px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .solutions-grid {
    padding: 84px 0;
  }

  /* Keep heading left, but allow more width and cleaner spacing */
  .solutions-grid__header {
    max-width: 820px;
    margin: 0 0 30px;
    text-align: left;
  }

  .solutions-grid__items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
  }

  .solutions-grid__card {
    min-height: 200px;
  }
}/* =========================
   INTAKE SECTION
========================= */

.intake {
  padding: 3.5rem 0;
  background: #f7f8f8;
  scroll-margin-top: 50px;
}

.intake__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.intake__context {
  display: grid;
  gap: 1.25rem;
}

.intake__media {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 1.125rem;
  background: #e9eded;
}

.intake__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.20) 100%
  );
}

.intake__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.intake__copy {
  max-width: 38rem;
}

.intake__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5f6d70;
}

.intake__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.625rem, calc(1.211rem + 1.842vw), 2.5rem);
  line-height: 1.15;
  color: #132224;
}

.intake__text {
  margin: 0 0 1rem;
  max-width: 36ch;
  font-size: 1rem;
  line-height: 1.7;
  color: #4e5d60;
}

.intake__meta {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.intake__meta-item {
  position: relative;
  padding-left: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #334547;
}

.intake__meta-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: #5f6d70;
}

.intake__panel {
  background: #ffffff;
  border: 1px solid rgba(19, 34, 36, 0.08);
  border-radius: 1.125rem;
  box-shadow: 0 14px 34px rgba(19, 34, 36, 0.06);
}

.intake__form {
  display: grid;
  gap: 1rem;
  padding: 1.375rem;
}

.intake__field {
  display: grid;
  gap: 0.4rem;
}

.intake__label,
#status {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  color: #243638;
}

.intake__input,
.intake__textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  font: inherit;
  line-height: 1.5;
  color: #132224;
  background: #ffffff;
  border: 1px solid rgba(19, 34, 36, 0.14);
  border-radius: 0.75rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.intake__input::placeholder,
.intake__textarea::placeholder {
  color: #7b8a8d;
}

.intake__input:focus,
.intake__textarea:focus {
  outline: none;
  border-color: rgba(19, 34, 36, 0.3);
  box-shadow: 0 0 0 4px rgba(19, 34, 36, 0.06);
}

.intake__textarea {
  min-height: 10rem;
  resize: vertical;
}

.intake__actions {
  margin-top: 0.25rem;
}

.intake__actions .btn {
  width: 100%;
  justify-content: center;
}

.intake__note {
  margin: 0.25rem 0 0;
  font-size: 0.82rem;
  line-height: 1.6;
  color: #6a787b;
}

/* =========================
   TABLET
========================= */

@media (min-width: 48rem) {
  .intake {
    padding: 4rem 0;
  }

  .intake__grid {
    gap: 2.25rem;
  }

  .intake__form {
    padding: 1.75rem;
  }
}

/* =========================
   DESKTOP
========================= */

@media (min-width: 64rem) {
  .intake {
    padding: 4.75rem 0;
  }

  .intake__grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(20rem, 0.98fr);
    gap: 3rem;
    align-items: start;
  }

  .intake__context {
    gap: 1.5rem;
  }

  .intake__media {
    border-radius: 1.25rem;
  }

  .intake__image {
    aspect-ratio: 5 / 4;
  }

  .intake__panel {
    top: 1.5rem;
  }

  .intake__form {
    padding: 2rem;
  }

  .intake__title {
    max-width: 12ch;
  }

  .intake__text {
    max-width: 40ch;
  }
}
/* =========================
   FOOTER
========================= */

.footer {
  padding: 3rem 0 1.5rem;
  scroll-margin-top: 80px;
  background: #6b7280;
  color: rgba(255, 255, 255, 0.86);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}


.footer__logo-link {
  display: inline-block;
  width: fit-content;
  margin-bottom: 20px;
}

.footer__logo {
  display: block;
  max-width: 9rem;
  height: auto;
  filter: invert(1);
}

.footer__brand {
  margin: -1.25rem .25rem 40px 0;
}

.footer__heading {
  margin: 0 0 0.25rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 20px 0;
  text-transform: uppercase;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.64);
}
p.footer__text {
  margin: 0;
}
.chevron {
  width: 0.82rem;
  fill: rgba(255, 255, 255, 0.64);
  transition: transform 0.2s ease-out;
}

.chevron.active {
  transform: rotate(180deg);
}

.footer__header {
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  justify-content: space-between;
  align-items: center;
}

.footer__link-container {
  max-height: 0;
  overflow: clip;
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 0.75rem;
  transition: max-height 0.2s ease-out;
}

.footer__link-container > p:last-child,
.footer__link-container a:last-child {
  padding-bottom: 15px;
}
.footer__bottom {
  display: block;
}
.con {
  display: block;
  margin-bottom: 0.75rem;
}
.con a,
.con p{
  margin-bottom: -0.75rem;
}
.footer__link,
.footer__text,
.footer__fine,
.footer__copy,
.footer__brand,
.footer__social-link
{
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.footer__link,
.footer__social-link {
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer__link:hover,
.footer__link:focus-visible,
.footer__social-link:hover,
.footer__social-link:focus-visible {
  opacity: 0.72;
}

.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.footer__bottom {
  padding-top: 1.25rem;
  display: grid;
  text-align: center;
  gap: 1rem;
}

/* =========================
   TABLET
========================= */

@media (min-width: 48rem) {
  .footer {
    padding: 3.5rem 0 1.75rem;
  }

  .footer__grid {
    grid-template-columns: 1.2fr 0.8fr 0.9fr;
    gap: 2rem;
    padding-bottom: 2rem;
    align-items: start;
  }
  
  .footer__col {
    align-content: start;
    display: grid;
    gap: 0.75rem;
  }
  
  .footer__col--nav,
  .footer__col--contact {
    justify-items: start;
  }
  
  .footer__heading {
    padding: 0;
    cursor: initial;
  }
  
  .chevron {
    display: none;
  }
  
  .footer__logo-link {
    margin-bottom: none;
  }
  
  .footer__header {
    display: initial;
    border: none;
  }
  
  .footer__link-container {
    max-height: initial;
  }
  .footer__link-container > p:last-child,
  .footer__link-container a:last-child {
    padding-bottom: initial;
  }

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

/* =========================
   DESKTOP
========================= */

@media (min-width: 64rem) {
  .footer {
    padding: 4rem 0 2rem;
  }

  .footer__grid {
    grid-template-columns: 1.35fr 0.75fr 0.9fr;
    gap: 3rem;
  }

  .footer__logo {
    max-width: 10rem;
  }

  .footer__brand {
    font-size: 1.05rem;
  }
}

/* =========================
   ABOUT SNIPPET
========================= */

.about-snippet {
  padding: 3.5rem 0;
  scroll-margin-top: 60px;
  background: #ffffff;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.about-snippet__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.about-snippet__content {
  max-width: 42rem;
}

.about-snippet__title {
  margin: 0 0 1.25rem;
  font-size: var(--fs-h2);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-headings);
}

.about-snippet__text {
  margin: 0 0 1rem;
  font-size: var(--fs-body);
  line-height: 1.75;
  color: var(--color-body);
}

.about-snippet__text:last-of-type {
  margin-bottom: 0;
}

.about-snippet__actions {
  margin-top: 1.5rem;
}

.about-snippet__actions .btn {
  width: 100%;
  justify-content: center;
}

.about-snippet__media {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 1.125rem;
  background: #eef1f3;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 14px 34px rgba(19, 34, 36, 0.06);
}

.about-snippet__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* =========================
   TABLET
========================= */

@media (min-width: 48rem) {
  .about-snippet {
    padding: 4rem 0;
  }

  .about-snippet__actions .btn {
    width: auto;
  }
}

/* =========================
   DESKTOP
========================= */

@media (min-width: 64rem) {
  .about-snippet {
    padding: 4.75rem 0;
  }

  .about-snippet__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 3rem;
  }

  .about-snippet__content {
    max-width: 46rem;
  }

  .about-snippet__media {
    justify-self: end;
    width: 100%;
    max-width: 34rem;
  }
}