:root {
  --bone: #f2f5f6;
  --bone-dim: #e7ecee;
  --ink: #10202b;
  --ink-soft: #4a5c66;
  --steel: #3d6f90;
  --steel-deep: #274a61;
  --radius: 999px;
  --radius-card: 20px;
  --nav-height: 68px;
}

.section-divider {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 6vw;
}

.section-divider::before {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, rgb(61 111 144 / 0) 0%, rgb(61 111 144 / 0.35) 50%, rgb(61 111 144 / 0) 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cabinet Grotesk', 'Segoe UI', system-ui, sans-serif;
  background: var(--bone);
  color: var(--ink);
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
  height: 100vh;
}

/* Loader */
.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: var(--bone);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.loader__tooth {
  font-size: 2.75rem;
  color: var(--steel);
  animation: loader-spin 1s linear infinite;
}

@keyframes loader-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.loader__percent {
  font-size: 0.95rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.loader__mark {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink-soft);
  opacity: 0.7;
}

.loader.loader-done {
  opacity: 0;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .loader {
    transition: none;
  }

  .loader__tooth {
    animation: none;
  }
}

/* Nav */
.nav {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.nav__pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: 820px;
  height: var(--nav-height);
  padding: 0 10px 0 24px;
  border-radius: var(--radius);
  background: rgb(242 245 246 / 0.55);
  border: 1px solid rgb(255 255 255 / 0.5);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 8px 30px rgb(16 32 43 / 0.06);
}

.nav__brand {
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
  justify-content: center;
}

.nav__link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav__link:hover {
  color: var(--ink);
}

@media (max-width: 900px) {
  .nav__links {
    display: none;
  }
}

.nav__cta {
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  color: #fff;
  background: var(--steel-deep);
  border: none;
  border-radius: var(--radius);
  padding: 0 20px;
  height: 44px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease;
}

.nav__cta:hover {
  background: var(--steel);
}

.nav__cta:active {
  transform: scale(0.97);
}

/* Section rail */
.section-rail {
  position: fixed;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.section-rail__track {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: rgb(16 32 43 / 0.14);
  z-index: -1;
}

.section-rail__dot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.section-rail__marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--bone);
  border: 1.5px solid rgb(16 32 43 / 0.25);
  color: rgb(16 32 43 / 0.45);
  font-size: 0.85rem;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-rail__dot:hover .section-rail__marker {
  border-color: var(--steel);
  color: var(--steel);
}

.section-rail__dot.is-active .section-rail__marker {
  background: var(--steel-deep);
  border-color: var(--steel-deep);
  color: #fff;
  transform: scale(1.12);
}

.section-rail__label {
  position: absolute;
  top: 50%;
  right: calc(100% + 14px);
  transform: translateY(-50%) translateX(6px);
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  background: var(--ink);
  padding: 6px 12px;
  border-radius: var(--radius);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-rail__dot:hover .section-rail__label,
.section-rail__dot.is-active .section-rail__label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 900px) {
  .section-rail {
    display: none;
  }
}

/* Hero */
.hero {
  position: relative;
  height: 170vh;
}

.hero__pin {
  position: sticky;
  top: 0;
  height: 100dvh;
  overflow: hidden;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(180deg, rgb(16 32 43 / 0.15) 0%, rgb(16 32 43 / 0) 22%),
    radial-gradient(60% 50% at 30% 50%, rgb(242 245 246 / 0.82) 0%, rgb(242 245 246 / 0) 70%);
}

.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 6vw;
  z-index: 2;
}

.hero__title {
  font-weight: 700;
  font-size: clamp(2.2rem, 5.2vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 14ch;
  text-wrap: balance;
}

.hero__subtext {
  margin-top: 20px;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 400;
  color: var(--ink-soft);
  max-width: 42ch;
  line-height: 1.5;
}

.hero__cta {
  margin-top: 32px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  background: var(--steel-deep);
  border: none;
  border-radius: var(--radius);
  padding: 0 30px;
  height: 56px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease;
}

.hero__cta:hover {
  background: var(--steel);
}

.hero__cta:active {
  transform: scale(0.97) translateY(1px);
}

/* Services */
.services {
  position: relative;
  background: var(--bone);
  padding: clamp(64px, 10vw, 140px) 6vw clamp(24px, 4vw, 48px);
  max-width: 1400px;
  margin: 0 auto;
}

.services__header {
  margin-bottom: clamp(40px, 6vw, 72px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.services__header--centered {
  align-items: center;
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.services__eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--steel-deep);
  margin-bottom: 18px;
}

.services__title {
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 640px;
}

.services__subtext {
  margin-top: 16px;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 52ch;
}

.carousel__arrows {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.carousel__arrows--right {
  justify-content: flex-end;
}

.carousel__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgb(16 32 43 / 0.12);
  background: #fff;
  color: var(--ink);
  font-size: 1.05rem;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel__arrow:hover {
  background: var(--steel-deep);
  color: #fff;
}

.carousel__arrow:active {
  transform: scale(0.94);
}

.carousel__arrow:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.carousel {
  overflow: hidden;
}

.carousel__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  perspective: 1400px;
  padding-bottom: 4px;
}

.carousel__track::-webkit-scrollbar {
  display: none;
}

.bento__tile {
  position: relative;
  background: #fff;
  border: 1px solid rgb(16 32 43 / 0.07);
  border-radius: var(--radius-card);
  padding: 32px;
  flex: 0 0 auto;
  width: min(320px, 78vw);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  box-shadow: 0 1px 3px rgb(16 32 43 / 0.05);
}

.bento__tile:hover {
  border-color: rgb(61 111 144 / 0.3);
  box-shadow: 0 24px 48px -12px rgb(16 32 43 / 0.16);
}

.bento__tile--accent {
  background: var(--bone-dim);
  border-color: rgb(61 111 144 / 0.12);
}

.bento__tile--dark {
  background: linear-gradient(135deg, var(--steel-deep), var(--steel));
  border: none;
  color: #fff;
}

.bento__tile--dark .bento__title,
.bento__tile--dark .bento__text {
  color: #fff;
}

.bento__tile--dark .bento__text {
  color: rgb(255 255 255 / 0.78);
}

.bento__tile--dark .bento__icon-badge {
  background: rgb(255 255 255 / 0.16);
  color: #fff;
}

.bento__icon-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgb(61 111 144 / 0.1);
  color: var(--steel-deep);
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-bottom: 4px;
  transform: translateZ(24px);
}

.bento__icon-badge-accent {
  position: absolute;
  top: -6px;
  right: -6px;
  font-size: 0.8rem;
  background: #fff;
  border-radius: 999px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel);
  box-shadow: 0 2px 6px rgb(16 32 43 / 0.15);
}

.bento__title {
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  transform: translateZ(18px);
}

.bento__text {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 40ch;
  transform: translateZ(12px);
}

@media (prefers-reduced-motion: reduce) {
  .bento__tile {
    transition: none;
  }
}

/* Story (video + text) */
.story {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.story__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  background: var(--ink);
  z-index: 0;
}

.story__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgb(16 32 43 / 0.82) 0%, rgb(16 32 43 / 0.55) 48%, rgb(16 32 43 / 0.2) 100%);
}

.story__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(64px, 10vw, 120px) 6vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.story__eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgb(255 255 255 / 0.75);
  margin-bottom: 16px;
}

.story__title {
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: #fff;
  max-width: 18ch;
}

.story__text {
  margin-top: 18px;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  color: rgb(255 255 255 / 0.82);
  line-height: 1.6;
  max-width: 48ch;
}

.story__cta {
  margin-top: 28px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: var(--steel-deep);
  background: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 0 28px;
  height: 52px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease;
}

.story__cta:hover {
  background: var(--bone-dim);
}

.story__cta:active {
  transform: scale(0.97) translateY(1px);
}

/* Team */
.team {
  position: relative;
  background: var(--bone);
  padding: clamp(64px, 10vw, 140px) 6vw;
  max-width: 1400px;
  margin: 0 auto;
}

.team__header {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(40px, 6vw, 72px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.team-card {
  grid-column: span 1;
}

.team-card__frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: flex-end;
  background: var(--steel-deep);
}

.team-card__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0% 15%;
}

.team-card__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(16 32 43 / 0.95) 0%, rgb(16 32 43 / 0.78) 38%, rgb(16 32 43 / 0.1) 66%, rgb(16 32 43 / 0) 78%);
}

.team-card__info {
  position: relative;
  z-index: 1;
  padding: 22px;
}

.team-card__name {
  font-weight: 600;
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: -0.01em;
}

.team-card__role {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  color: rgb(255 255 255 / 0.75);
}

.team-card__desc {
  margin-top: 10px;
  font-size: 0.85rem;
  line-height: 1.45;
  color: rgb(255 255 255 / 0.72);
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .story {
    min-height: 480px;
  }
}

/* Reviews */
.reviews {
  position: relative;
  background: var(--bone);
  padding: clamp(28px, 4vw, 56px) 6vw clamp(64px, 10vw, 140px);
  max-width: 1400px;
  margin: 0 auto;
}

.reviews__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.reviews__title {
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 22ch;
}

.reviews__score {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.reviews__score-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.reviews__stars {
  color: var(--steel);
  font-size: 1rem;
  display: flex;
  gap: 2px;
}

.reviews__score-count {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.marquee {
  position: relative;
  overflow: hidden;
  margin: 0 calc(-1 * 6vw);
  padding: 4px 0;
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.marquee__track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding-left: 6vw;
  animation: marquee-scroll 38s linear infinite;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.review-card {
  flex: 0 0 auto;
  width: min(420px, 82vw);
  background: #fff;
  border: 1px solid rgb(16 32 43 / 0.06);
  border-radius: var(--radius-card);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 1px 2px rgb(16 32 43 / 0.04);
}

.review-card__stars {
  color: var(--steel);
  font-size: 0.9rem;
  display: flex;
  gap: 2px;
}

.review-card__quote {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink);
  max-width: 42ch;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.review-card__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--bone-dim);
  color: var(--steel-deep);
  font-size: 0.85rem;
  font-weight: 600;
  flex-shrink: 0;
}

.review-card__name {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}

.review-card__meta {
  display: block;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

@media (max-width: 640px) {
  .reviews__header {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 150vh;
  }

  .hero__content {
    padding: 0 6vw;
  }

  .hero__title {
    max-width: 12ch;
  }

  .nav__pill {
    max-width: 92vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav__cta,
  .hero__cta {
    transition: none;
  }

  .hero__content {
    opacity: 1;
    transform: none;
  }

  .marquee__track {
    animation: none;
  }

  .marquee {
    overflow-x: auto;
  }
}

/* Contact */
.contact {
  position: relative;
  background: var(--bone);
  padding: clamp(64px, 10vw, 140px) 6vw;
  max-width: 1400px;
  margin: 0 auto;
}

.contact__header {
  max-width: 640px;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-card {
  background: #fff;
  border: 1px solid rgb(16 32 43 / 0.07);
  border-radius: var(--radius-card);
  padding: clamp(28px, 3vw, 40px);
}

.contact-card--dark {
  background: linear-gradient(135deg, var(--steel-deep), var(--steel));
  border: none;
  color: #fff;
}

.contact-card__title {
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.contact-hours {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-hours li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--ink);
  padding-bottom: 12px;
  border-bottom: 1px solid rgb(16 32 43 / 0.08);
}

.contact-hours li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-hours li span:first-child {
  font-weight: 600;
}

.contact-hours li span:last-child {
  color: var(--ink-soft);
}

.contact-card__note {
  margin-top: 20px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.contact-card--dark .contact-card__note {
  color: rgb(255 255 255 / 0.82);
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-list i {
  font-size: 1.2rem;
  color: rgb(255 255 255 / 0.85);
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-list__label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgb(255 255 255 / 0.6);
  margin-bottom: 4px;
}

.contact-list__value {
  display: block;
  font-size: 0.98rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
  text-decoration: none;
}

a.contact-list__value:hover {
  text-decoration: underline;
}

.contact-cta {
  margin-top: 28px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: var(--steel-deep);
  background: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 0 28px;
  height: 52px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease;
}

.contact-cta:hover {
  background: var(--bone-dim);
}

.contact-cta:active {
  transform: scale(0.97) translateY(1px);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.footer {
  background: var(--ink);
  padding: clamp(48px, 8vw, 88px) 6vw clamp(24px, 4vw, 40px);
}

.footer__top {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: clamp(32px, 5vw, 56px);
  border-bottom: 1px solid rgb(255 255 255 / 0.12);
}

.footer__name {
  display: block;
  font-weight: 600;
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: -0.01em;
}

.footer__tagline {
  margin-top: 10px;
  font-size: 0.9rem;
  color: rgb(255 255 255 / 0.6);
  max-width: 32ch;
  line-height: 1.5;
}

.footer__heading {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgb(255 255 255 / 0.5);
  margin-bottom: 16px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 0.9rem;
  color: rgb(255 255 255 / 0.75);
  text-decoration: none;
  line-height: 1.4;
}

a.footer__link:hover {
  color: #fff;
}

.footer__bottom {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: clamp(20px, 3vw, 32px);
  font-size: 0.82rem;
  color: rgb(255 255 255 / 0.5);
}

.footer__credit {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__credit a {
  color: rgb(255 255 255 / 0.65);
  text-decoration: none;
}

.footer__credit a:hover {
  color: #fff;
}

.footer__credit-sep {
  color: rgb(255 255 255 / 0.3);
}

@media (max-width: 900px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer__top {
    grid-template-columns: 1fr;
  }
}
