:root {
  --white: #ffffff;
  --black: #0a0a0a;
  --off-white: #f3f2ef;
  --off-white-2: #e8e7e3;
  --blue: #1d2935;
  --font: "Inter Tight", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.65, 0, 0.35, 1);
  --nav-h: 88px;
  --gutter: clamp(20px, 4vw, 56px);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

html {
  background: var(--white);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

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

button {
  font-family: inherit;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 0;
}

img {
  display: block;
  max-width: 100%;
  border-radius: 16px;
}

.nav__logo img,
.home-hero__img,
.project-hero__img {
  border-radius: 0;
}

.home-hero video.home-hero__img {
  object-fit: cover;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.home-hero video.home-hero__img.is-ready {
  opacity: 1;
}

h1,
h2,
h3,
p {
  margin: 0;
  font-weight: 400;
}

::selection {
  background: var(--black);
  color: var(--white);
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
}

/* ——— Loader ——— */
.loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

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

.loader__logo {
  width: min(140px, 32vw);
  height: auto;
  border-radius: 0;
  mix-blend-mode: screen;
  animation: loader-pulse 1.4s ease-in-out infinite;
}

@keyframes loader-pulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

body.no-scroll .nav {
  background-color: #1d2935;
  pointer-events: auto;
}

body.no-scroll .nav__trigger {
  color: var(--white);
}

/* ——— Nav ——— */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  pointer-events: none;
  background-color: transparent;
  transition:
    background-color 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav.is-scrolled,
.nav.nav--solid {
  background-color: #1d2935;
  box-shadow: none;
  pointer-events: auto;
}

.nav__logo {
  pointer-events: auto;
  display: block;
  line-height: 0;
  position: relative;
  z-index: 1;
}

.nav__logo img {
  display: block;
  height: 52px;
  width: auto;
}

.nav__links {
  pointer-events: auto;
  display: flex;
  gap: 36px;
}

.nav__link {
  position: relative;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: none;
  font-weight: 500;
  color: var(--black);
  padding-bottom: 4px;
  transition: color 0.35s ease, opacity 0.35s ease;
}

/* Dark heroes (home): keep links light at the top */
.nav--on-dark .nav__link {
  color: var(--white);
}

.nav.is-scrolled .nav__link,
.nav.nav--solid .nav__link {
  color: var(--white);
}

.nav__link:hover,
.nav__link.is-active {
  opacity: 0.55;
}

.nav__trigger {
  display: none;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: #1d2935;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.6s var(--ease-soft);
  display: flex;
  pointer-events: none;
}

.menu-overlay.is-open {
  clip-path: inset(0 0 0% 0);
  pointer-events: auto;
}

.menu-overlay__inner {
  width: 100%;
  padding: calc(var(--nav-h) + 40px) var(--gutter) 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.menu-overlay__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-overlay__link {
  display: block;
  font-size: clamp(40px, 9vw, 96px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-weight: 500;
  color: var(--white);
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-soft), transform 0.6s var(--ease-soft), color 0.4s ease;
}

.menu-overlay.is-open .menu-overlay__link {
  opacity: 1;
  transform: translateY(0);
}

.menu-overlay__link:hover {
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 1024px) {
  :root {
    --nav-h: 72px;
    --gutter: clamp(16px, 4vw, 40px);
  }

  .nav__logo img {
    height: 40px;
  }

  .nav__links {
    display: none;
  }

  .nav__trigger {
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--black);
    transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    min-width: 44px;
    min-height: 44px;
    justify-content: flex-end;
  }

  .nav--on-dark .nav__trigger,
  .nav.is-scrolled .nav__trigger,
  .nav.nav--solid .nav__trigger {
    color: var(--white);
  }

  .nav__trigger-icon {
    width: 22px;
    height: 14px;
    position: relative;
  }

  .nav__trigger-icon i {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: transform 0.35s var(--ease), top 0.35s var(--ease);
  }

  .nav__trigger-icon i:first-child {
    top: 0;
  }

  .nav__trigger-icon i:last-child {
    top: 100%;
  }

  .nav__trigger-icon.is-open i:first-child {
    top: 50%;
    transform: rotate(45deg);
  }

  .nav__trigger-icon.is-open i:last-child {
    top: 50%;
    transform: rotate(-45deg);
  }

  .menu-overlay__link {
    font-size: clamp(36px, 8vw, 72px);
  }

  .project-hero__title {
    white-space: normal;
    font-size: clamp(22px, 5vw, 40px);
  }

  .contact__email {
    font-size: clamp(22px, 6vw, 48px);
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .contact__title {
    font-size: clamp(48px, 12vw, 100px);
  }

  .home-hero__wordmark {
    font-size: clamp(17px, 4vw, 30px);
    white-space: normal;
  }

  .statement__text {
    font-size: clamp(32px, 7.5vw, 56px);
    max-width: none;
  }
}

@media (max-width: 520px) {
  .menu-overlay__link {
    font-size: 11vw;
  }

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

html.from-nav .loader,
html.skip-loader .loader {
  display: none !important;
}

html.from-nav .page-transition {
  display: block !important;
  clip-path: inset(0 0 0% 0);
}

html.from-nav .page-transition__line {
  transform: scaleX(1);
}

/* ——— Page transition ——— */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--off-white);
  display: none;
  pointer-events: none;
  will-change: clip-path;
}

.page-transition__line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--black);
  transform-origin: center;
  transform: scaleX(0);
}

/* ——— Reveal lines ——— */
.reveal-lines {
  margin: 0;
}

.reveal-lines__line {
  display: block;
  overflow: hidden;
}

.reveal-lines__inner {
  display: block;
  will-change: transform;
}

/* ——— Home ——— */
.home-hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--black);
}

.home-hero__wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.home-hero__wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  pointer-events: none;
  z-index: 1;
}

.home-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(1.2) contrast(1.05);
  will-change: transform;
  transform-origin: center 40%;
}

.home-hero__content {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0 var(--gutter) 44px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--white);
  z-index: 2;
}

.home-hero__wordmark {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(20px, 3.2vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 500;
  text-transform: uppercase;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
  white-space: nowrap;
  max-width: 100%;
}

.home-hero__lede {
  max-width: 42ch;
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(14px, 1.35vw, 17px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.4);
}

.home-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: 18px;
  padding: 14px 28px;
  border-radius: 5px;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--white);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.home-hero__cta:hover {
  transform: translateY(-5px);
  opacity: 0.95;
}

.statement {
  padding: clamp(140px, 20vw, 260px) var(--gutter);
}

.statement__text {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.8vw, 92px);
  line-height: 1.22;
  letter-spacing: -0.015em;
  font-weight: 600;
  font-style: italic;
  text-transform: none;
  color: #1c1b19;
  max-width: 22ch;
}

.statement__credit {
  margin-top: 28px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #94928d;
}

.context {
  padding: 0 var(--gutter) clamp(100px, 14vw, 180px);
}

.context__wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px;
}

.context__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.context__caption {
  margin-top: 22px;
  font-size: clamp(15px, 1.6vw, 19px);
  color: #6f6e6a;
  max-width: 30ch;
}

.work-section {
  padding: 0 0 40px;
}

.work-section__header {
  padding: 0 var(--gutter) clamp(60px, 10vw, 120px);
}

.work-section__title {
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .home-hero__wordmark {
    font-size: clamp(16px, 4.8vw, 24px);
    white-space: normal;
  }

  .statement {
    padding: 120px var(--gutter);
  }
}

/* ——— Work index ——— */
.work-list {
  display: flex;
  flex-direction: column;
}

.work-row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 20px;
  padding: 0 var(--gutter);
  margin-bottom: clamp(80px, 12vw, 180px);
}

.work-row__figure {
  grid-column: 1 / 9;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
}

.work-row__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--off-white-2);
  border-radius: 16px;
}

.work-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 1.1s var(--ease-soft);
}

.work-row__image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.work-row:hover .work-row__image img {
  transform: scale(1.02);
}

.work-row__caption {
  grid-column: 1 / 9;
  display: flex;
  align-items: baseline;
  gap: 22px;
  padding-top: 22px;
  padding-left: 7px;
  min-width: 0;
  transition: gap 0.5s var(--ease-soft);
}

.work-row:hover .work-row__caption {
  gap: 30px;
}

.work-row__name {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.work-row__meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #8b8a86;
  flex-wrap: wrap;
}

.work-row__arrow {
  margin-left: auto;
  font-size: 18px;
  opacity: 0;
  transform: translate(-6px, 6px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.work-row:hover .work-row__arrow {
  opacity: 1;
  transform: translate(0, 0);
}

.work-row--large-left .work-row__image {
  aspect-ratio: 16 / 10;
}

.work-row--right .work-row__figure,
.work-row--right .work-row__caption {
  grid-column: 5 / 13;
}

@media (max-width: 1200px) and (orientation: portrait),
  (max-width: 720px) {
  .work-row,
  .work-row--large-left,
  .work-row--right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    grid-template-columns: none;
    gap: 14px;
  }

  .work-row__figure,
  .work-row__caption,
  .work-row--large-left .work-row__figure,
  .work-row--large-left .work-row__caption,
  .work-row--right .work-row__figure,
  .work-row--right .work-row__caption {
    grid-column: auto;
    width: 100%;
    max-width: 100%;
    height: auto;
    align-self: stretch;
  }

  .work-row {
    margin-bottom: 72px;
  }

  .work-row__figure {
    clip-path: none;
  }

  .work-row__image {
    aspect-ratio: 4 / 3 !important;
  }

  .work-row__caption {
    display: block;
    flex-wrap: unset;
    gap: 0;
    padding-top: 0;
    padding-left: 0;
    margin-top: 0;
  }

  .work-row__name {
    display: block;
    flex: none;
    width: 100%;
    margin: 0 0 10px;
    font-size: clamp(22px, 3.4vw, 32px);
  }

  .work-row__arrow {
    display: none;
  }
}

/* ——— Page headers ——— */
.page-header {
  padding: calc(var(--nav-h) + 90px) var(--gutter) clamp(70px, 10vw, 130px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 1100px;
}

.page-header--narrow {
  max-width: 900px;
}

.page-header--narrow .page-header__title {
  font-size: clamp(36px, 6vw, 72px);
  text-transform: uppercase;
  line-height: 0.98;
  max-width: none;
}

.page-header__title {
  font-size: clamp(28px, 4.5vw, 66px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.12;
  max-width: 22ch;
}

.page-header__intro,
.page-header__lede {
  font-size: clamp(16px, 1.8vw, 22px);
  color: #6f6e6a;
  max-width: 46ch;
}

.page-header__lede {
  max-width: 52ch;
  line-height: 1.4;
}

@media (max-width: 720px) {
  .page-header {
    padding-top: calc(var(--nav-h) + 60px);
  }
}

/* ——— Project ——— */
.project-hero {
  position: relative;
  height: 100vh;
  min-height: 520px;
  overflow: hidden;
  background: var(--black);
}

.project-hero picture {
  display: block;
  width: 100%;
  height: 100%;
}

.project-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  will-change: transform;
  transform-origin: center 35%;
}

.project-hero__title-wrap {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0 var(--gutter) 20px 20px;
  pointer-events: none;
  z-index: 2;
}

.project-hero__title {
  color: var(--white);
  max-width: none;
  white-space: nowrap;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
}

.project-hero__title[data-slide-in] {
  opacity: 0;
}

.project-intro {
  padding: clamp(60px, 9vw, 110px) var(--gutter) clamp(70px, 10vw, 130px);
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-width: 1100px;
}

.project-intro__subtitle {
  font-size: clamp(16px, 1.8vw, 22px);
  color: #6f6e6a;
  max-width: 42ch;
  line-height: 1.4;
  margin-top: -8px;
}

.project-meta {
  display: flex;
  gap: clamp(28px, 5vw, 64px);
  flex-wrap: wrap;
  padding-top: 12px;
  border-top: 1px solid var(--off-white-2);
}

.project-meta div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  padding-top: 16px;
}

.project-image {
  padding: 0 var(--gutter) clamp(90px, 12vw, 160px);
}

.project-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 16px;
}

.project-desc {
  padding: 0 var(--gutter) clamp(90px, 12vw, 160px);
  display: flex;
  justify-content: flex-end;
}

.project-desc p {
  max-width: 56ch;
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.35;
  letter-spacing: -0.005em;
}

.project-features {
  padding: 0 var(--gutter) clamp(90px, 12vw, 160px);
  max-width: 900px;
}

.project-features .eyebrow {
  display: block;
  margin-bottom: 28px;
  color: #8b8a86;
}

.project-features ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.project-features li {
  font-size: clamp(18px, 2.2vw, 28px);
  letter-spacing: -0.01em;
  padding: 18px 0;
  border-top: 1px solid var(--off-white-2);
}

.project-features li:last-child {
  border-bottom: 1px solid var(--off-white-2);
}

.project-detail {
  display: flex;
  align-items: flex-end;
  gap: 60px;
  padding: 0 var(--gutter) clamp(90px, 12vw, 160px);
}

.project-detail__img {
  width: 42%;
  flex-shrink: 0;
}

.project-detail__img img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 16px;
}

.project-detail__caption {
  font-size: clamp(16px, 1.8vw, 20px);
  color: #6f6e6a;
  max-width: 30ch;
}

.project-wide {
  padding: 0 var(--gutter) clamp(100px, 14vw, 180px);
}

.project-wide img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-radius: 16px;
}

@media (max-width: 860px) {
  .project-detail {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .project-detail__img {
    width: 100%;
  }

  .project-desc {
    justify-content: flex-start;
  }
}

/* ——— About ——— */
.about-image {
  padding: 0 var(--gutter) clamp(90px, 12vw, 160px);
}

.about-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
}

.about-copy {
  display: flex;
  justify-content: flex-end;
  padding: 0 var(--gutter) clamp(100px, 14vw, 170px);
}

.about-copy p {
  max-width: 68ch;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.65;
  color: #3b3a37;
}

.services {
  display: flex;
  gap: 60px;
  padding: clamp(60px, 8vw, 100px) var(--gutter);
  border-top: 1px solid var(--off-white-2);
  margin-bottom: clamp(100px, 14vw, 170px);
  align-items: center;
}

.services__list {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.services__eyebrow {
  color: #8b8a86;
  margin-bottom: 18px;
}

.services__item {
  display: flex;
  align-items: baseline;
  gap: 24px;
  font-size: clamp(28px, 5vw, 56px);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 16px 0;
  border-top: 1px solid var(--off-white-2);
  text-align: left;
  color: #d8d6d0;
  transition: color 0.4s var(--ease);
  width: 100%;
}

.services__item.is-active {
  color: var(--black);
}

.services__preview {
  position: relative;
  width: 380px;
  aspect-ratio: 4 / 5;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--off-white-2);
  border-radius: 16px;
}

.services__preview img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s var(--ease-soft);
}

.services__preview img.is-active {
  opacity: 1;
}

@media (max-width: 900px) {
  .services {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 100px;
  }

  .services__preview {
    width: 100%;
    order: -1;
    aspect-ratio: 16 / 9;
  }

  .about-copy {
    flex-direction: column;
    justify-content: flex-start;
  }
}

/* ——— Contact ——— */
.contact {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: calc(var(--nav-h) + 110px) var(--gutter) 40px;
  background: var(--off-white);
}

.contact__top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__title {
  font-size: clamp(56px, 11vw, 160px);
  font-weight: 500;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 0.96;
}

.contact__main {
  padding: clamp(60px, 8vw, 100px) 0;
  display: flex;
  flex-direction: column;
  gap: clamp(50px, 7vw, 90px);
}

.contact__email {
  font-size: clamp(28px, 5.4vw, 64px);
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--black);
  width: fit-content;
  padding-bottom: 6px;
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: #3b3a37;
}

.contact__col a {
  border-bottom: none;
  transition: opacity 0.3s ease;
  width: fit-content;
}

.contact__col a:hover {
  opacity: 0.55;
}

.contact__social {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

@media (max-width: 1024px) {
  .contact {
    min-height: 100svh;
    justify-content: flex-start;
    padding: calc(var(--nav-h) + 72px) var(--gutter) 64px;
    gap: 36px;
  }

  .contact__main {
    padding: 0;
    gap: 40px;
  }

  .contact__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
  }
}

@media (max-width: 520px) {
  .contact {
    padding-top: calc(var(--nav-h) + 88px);
    gap: 28px;
  }

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

/* ——— Footer ——— */
.footer {
  background: #1d2935;
  color: var(--off-white);
  padding: 64px var(--gutter) 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 0 0 56px;
  border-bottom: 1px solid rgba(243, 242, 239, 0.16);
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
  color: rgba(243, 242, 239, 0.72);
}

.footer__col a {
  transition: opacity 0.3s ease;
}

.footer__col a:hover {
  opacity: 0.6;
}

.footer__col .eyebrow {
  color: var(--off-white);
  margin-bottom: 6px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(243, 242, 239, 0.5);
}

@media (max-width: 900px) {
  .footer__grid {
    gap: 40px 24px;
  }
}

@media (max-width: 520px) {
  .footer {
    padding-top: 48px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
  }
}
