/* =========================================================
   THE ARLA LIVING CO — Landing page
   Palette + type derived directly from the brand logo.
   ---------------------------------------------------------
   Edit colours, spacing and fonts via the :root tokens.
   ========================================================= */

:root {
  /* --- Brand colours (from logo files) --- */
  --pine:        #33453d;   /* primary green  */
  --pine-deep:   #2b3a33;   /* darker green for depth */
  --cream:       #f3f2ea;   /* warm off-white */
  --cream-soft:  #ece9df;   /* slightly deeper cream for panels */
  --sage:        #708c7e;   /* secondary accent */
  --taupe:       #d8d2c6;   /* neutral greige */

  /* --- Type --- */
  --serif:  "Cormorant Garamond", Georgia, serif;
  --sans:   "Jost", "Helvetica Neue", Arial, sans-serif;
  --util:   "Marcellus", Georgia, serif;

  /* --- Rhythm --- */
  --pad-x: clamp(1.5rem, 5vw, 6rem);
  --section-y: clamp(5rem, 12vh, 11rem);
  --maxw: 1180px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--pine);
  background: var(--pine);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.7;
}

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

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

/* ============================ NAV ============================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem var(--pad-x);
  color: var(--cream);
  transition: background 0.4s var(--ease), padding 0.4s var(--ease);
}

/* solid pine backing once the user scrolls past the hero */
.nav.is-scrolled {
  background: var(--pine-deep);
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
  box-shadow: 0 1px 0 rgba(243, 242, 234, 0.08);
}

.nav--hero:not(.is-visible) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.nav--hero {
  background: transparent;
  transition: opacity 1.2s var(--ease), visibility 0s, background 0.5s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.nav--hero.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 1.2s var(--ease), visibility 0s, background 0.5s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.nav__brand {
  font-family: var(--util);
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  color: var(--cream);
}

.nav__links {
  display: flex;
  gap: 2.4rem;
}

.nav__links a {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding-bottom: 3px;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--cream);
  transition: width 0.35s var(--ease);
}
.nav__links a:hover::after { width: 100%; }

/* hamburger — hidden on desktop */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  width: 26px; height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s var(--ease);
}

/* ===================== MOBILE MENU ===================== */
.menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--pine-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease), visibility 0.45s var(--ease);
}
.menu.is-open { opacity: 1; visibility: visible; }

.menu__close {
  position: absolute;
  top: 1.4rem; right: var(--pad-x);
  background: none; border: 0;
  color: var(--cream);
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  font-family: var(--serif);
}

.menu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.menu__links a {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--cream);
  letter-spacing: 0.04em;
}

/* ========================== HERO ========================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem var(--pad-x);
  overflow: hidden;
  background: var(--pine);
}

.hero__poster {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slides::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(43, 58, 51, 0.22);
  pointer-events: none;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2.8s var(--ease);
}

.hero__slide.is-active {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: var(--pine);
  opacity: 0;
}

.hero__inner {
  position: relative;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transform: translateY(26px);
  transition: opacity 1.4s var(--ease), transform 1.4s var(--ease), visibility 0s linear 1.4s;
}

.hero__inner.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 1.4s var(--ease), transform 1.4s var(--ease), visibility 0s;
}

.hero__logo {
  width: clamp(230px, 34vw, 420px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 2px 24px rgba(0, 0, 0, 0.25));
}

.hero__scroll {
  position: absolute;
  z-index: 2;
  bottom: 2.4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 54px;
  background: linear-gradient(var(--cream), transparent);
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.4s var(--ease) 0.4s, visibility 0s linear 1.8s;
}

.hero__scroll.is-visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 1.4s var(--ease) 0.4s, visibility 0s;
}

.hero__scroll span {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 22px;
  background: var(--cream);
  animation: trickle 2.4s ease-in-out infinite;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes trickle {
  0%   { transform: translateY(-22px); opacity: 0; }
  40%  { opacity: 1; }
  100% { transform: translateY(54px); opacity: 0; }
}

/* ======================= SECTIONS ======================= */
.section { padding: var(--section-y) var(--pad-x); }

.section--cream { background: var(--cream); color: var(--pine); }
.section--pine  { background: var(--pine);  color: var(--cream); }

.wrap { max-width: var(--maxw); margin: 0 auto; }

/* eyebrow label with engraved hairline */
.eyebrow {
  font-family: var(--util);
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--sage);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 1.8rem;
}
.eyebrow::after {
  content: "";
  flex: 0 0 42px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.eyebrow--light { color: var(--taupe); }
.eyebrow--muted { color: var(--sage); }

.section__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: 0.005em;
  margin: 0 0 3.5rem;
}
.section__title--light { color: var(--cream); }

/* ======================== ABOUT ======================== */
.about__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.about__lead p {
  font-size: 1.08rem;
  margin: 0 0 1.4rem;
  max-width: 46ch;
}
.about__lead p:last-child { margin-bottom: 0; }

.about__notes { display: grid; gap: 2.2rem; }
.note h3 {
  font-family: var(--util);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.02em;
  margin: 0 0 0.6rem;
  color: var(--pine);
}
.note p { margin: 0; font-size: 0.96rem; color: #4a564f; }

/* ======================== TEAM ======================== */
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.4rem);
}
.member__photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--pine-deep);
  margin-bottom: 1.5rem;
}
.member__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.2);
  transition: transform 0.7s var(--ease), filter 0.7s var(--ease);
}
.member:hover .member__photo img {
  transform: scale(1.04);
  filter: grayscale(0);
}
.member__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  margin: 0 0 0.25rem;
  color: var(--cream);
}
.member__role {
  font-family: var(--util);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 1rem;
}
.member__bio {
  font-size: 0.92rem;
  color: rgba(243, 242, 234, 0.72);
  margin: 0;
}

/* ========================== BOOK ========================== */
.book__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.book__wrap .eyebrow {
  justify-content: center;
}

.book__wrap .eyebrow::before {
  content: "";
  flex: 0 0 42px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.book__title {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.book__card {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}

.book__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--taupe);
}

.book__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.book__card:hover .book__image img {
  transform: scale(1.03);
}

.book__meta {
  padding-top: clamp(1.75rem, 4vw, 2.25rem);
}

.book__region {
  display: block;
  font-family: var(--util);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.5rem;
}

.book__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 1rem;
  color: var(--pine);
}

.book__text {
  margin: 0 auto;
  max-width: 46ch;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #4a564f;
}

.btn--book {
  display: inline-block;
  margin-top: clamp(2rem, 4vw, 2.75rem);
  font-family: var(--util);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--pine);
  border: 1px solid var(--pine);
  padding: 1.1rem 3.2rem;
  border-radius: 999px;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}

.btn--book:hover {
  background: transparent;
  color: var(--pine);
  border-color: var(--pine);
}

@media (min-width: 861px) {
  .book.section {
    min-height: 100svh;
    min-height: 100dvh;
    padding-top: clamp(4.5rem, 9vh, 5.5rem);
    padding-bottom: clamp(2rem, 4vh, 2.75rem);
    display: flex;
    align-items: center;
    scroll-margin-top: 0;
  }

  .book__wrap .eyebrow {
    margin-bottom: 1rem;
  }

  .book__title {
    font-size: clamp(2rem, 3.2vw, 2.75rem);
    margin-bottom: clamp(1rem, 2vh, 1.5rem);
  }

  .book__card {
    max-width: min(700px, 52vw);
  }

  .book__image {
    aspect-ratio: auto;
    height: min(380px, calc(100svh - 22rem));
  }

  .book__meta {
    padding-top: clamp(0.85rem, 1.8vh, 1.25rem);
  }

  .book__name {
    font-size: clamp(1.35rem, 2vw, 1.7rem);
    margin-bottom: 0.45rem;
  }

  .book__text {
    font-size: 0.9rem;
    line-height: 1.55;
    max-width: 40ch;
  }

  .btn--book {
    margin-top: clamp(1rem, 2vh, 1.35rem);
    padding: 0.95rem 3rem;
  }
}

@media (min-width: 861px) and (max-height: 780px) {
  .book__image {
    height: min(280px, calc(100svh - 20rem));
  }

  .book__title {
    font-size: clamp(1.75rem, 3vw, 2.2rem);
    margin-bottom: 0.85rem;
  }

  .book__text {
    font-size: 0.86rem;
    line-height: 1.5;
  }
}

/* ====================== PROJECTS ====================== */
.projects-slider {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto auto;
  align-items: start;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  margin-top: 1rem;
}

.projects-slider__viewport {
  overflow: hidden;
  touch-action: pan-y pinch-zoom;
  grid-column: 2;
  grid-row: 1;
}

.projects-slider__track {
  display: flex;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}

.project-card {
  flex: 0 0 100%;
  min-width: 0;
}

.project-card__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.75rem, 2vw, 1.25rem);
}

.project-card__compare--soon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(220px, 38vw, 420px);
  background: var(--cream-soft);
  border: 1px solid rgba(51, 69, 61, 0.1);
}

.project-card__soon {
  margin: 0;
  font-family: var(--util);
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
}

.project-card__photo {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--taupe);
}

.project-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card__tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 1;
  font-family: var(--util);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(51, 69, 61, 0.72);
  padding: 0.4rem 0.65rem;
}

.projects-slider__info {
  grid-column: 1 / -1;
  grid-row: 2;
  text-align: center;
  max-width: 52ch;
  margin: clamp(1.75rem, 4vw, 2.5rem) auto 0;
}

.project-card__region {
  display: block;
  font-family: var(--util);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.5rem;
}

.project-card__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 1rem;
  color: var(--pine);
}

.project-card__text {
  margin: 0 0 1.75rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #4a564f;
}

.btn--discover {
  display: inline-block;
  font-family: var(--util);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pine);
  background: var(--cream);
  border: 1px solid var(--pine);
  padding: 1rem 2.8rem;
  border-radius: 999px;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}

.btn--discover:hover {
  background: var(--pine);
  color: var(--cream);
  border-color: var(--pine);
}

.projects-slider__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(51, 69, 61, 0.2);
  border-radius: 50%;
  background: transparent;
  color: var(--pine);
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), opacity 0.3s var(--ease);
  grid-row: 1;
}

.projects-slider__arrow--prev { grid-column: 1; }
.projects-slider__arrow--next { grid-column: 3; }

.projects-slider__arrow:hover:not(:disabled) {
  background: var(--pine);
  color: var(--cream);
  border-color: var(--pine);
}

.projects-slider__arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

.projects-slider__dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  grid-column: 1 / -1;
  grid-row: 3;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.projects-slider__dot {
  width: 0.45rem;
  height: 0.45rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(51, 69, 61, 0.22);
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.projects-slider__dot.is-active {
  background: var(--pine);
  transform: scale(1.25);
}

/* ====================== PROJECT PAGES ====================== */
.project-page {
  padding-top: clamp(7rem, 14vh, 9rem);
  padding-bottom: var(--section-y);
}

.project-page__back {
  display: inline-block;
  margin-bottom: 2.5rem;
  font-family: var(--util);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  transition: color 0.3s var(--ease);
}

.project-page__back:hover { color: var(--pine); }

.project-page__hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.project-page__hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--taupe);
}

.project-page__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 1.5rem;
}

.project-page__lead {
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 58ch;
  margin: 0 0 1.25rem;
  color: #4a564f;
}

.project-page__lead:last-child { margin-bottom: 0; }

.project-page__cta {
  margin-top: 2.5rem;
}

/* ======================= CONTACT ======================= */
.contact { padding-bottom: 0; }
.contact__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact__wrap .eyebrow {
  justify-content: center;
}
.contact__wrap .eyebrow::before {
  content: "";
  flex: 0 0 42px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.contact__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 5rem);
  color: var(--cream);
  margin: 0 0 1.6rem;
  line-height: 1;
}
.contact__sub {
  max-width: 36ch;
  margin: 0 0 3.5rem;
  color: rgba(243, 242, 234, 0.75);
  line-height: 1.65;
}

.contact__details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}
.contact__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  text-align: center;
}
.contact__label {
  font-family: var(--util);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
}
.contact__value {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--cream);
  transition: color 0.3s var(--ease);
}
.contact__item:hover .contact__value { color: var(--sage); }

.btn {
  display: inline-block;
  font-family: var(--util);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid rgba(243, 242, 234, 0.4);
  padding: 1.1rem 3.2rem;
  border-radius: 999px;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.btn:hover {
  background: var(--cream);
  color: var(--pine);
  border-color: var(--cream);
}

.footer {
  margin-top: clamp(5rem, 10vh, 8rem);
  padding: clamp(2.5rem, 5vw, 3.5rem) var(--pad-x) 2rem;
  border-top: 1px solid rgba(243, 242, 234, 0.12);
  margin-left: calc(var(--pad-x) * -1);
  margin-right: calc(var(--pad-x) * -1);
  text-align: center;
}

.footer__legal-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.footer__legal-link {
  background: none;
  border: 0;
  padding: 0;
  font-family: var(--util);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage);
  cursor: pointer;
  transition: color 0.3s var(--ease);
}

.footer__legal-link:hover,
.footer__legal-link.is-active {
  color: var(--cream);
}

.footer__legal-sep {
  font-family: var(--util);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  color: rgba(243, 242, 234, 0.35);
  user-select: none;
}

.footer__legal-panel {
  max-width: var(--maxw);
  margin: 0 auto 2.5rem;
  padding-top: 1.5rem;
}

.footer__impressum {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.footer__privacy {
  max-width: 62ch;
  margin: 0 auto;
  text-align: center;
}

.footer__privacy p {
  margin: 0 0 1rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(243, 242, 234, 0.65);
}

.footer__privacy p:last-child { margin-bottom: 0; }

.footer__privacy a {
  color: var(--cream);
  border-bottom: 1px solid rgba(243, 242, 234, 0.25);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.footer__privacy a:hover {
  color: var(--sage);
  border-color: var(--sage);
}

.footer__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.footer__label {
  font-family: var(--util);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
}

.footer__col p {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(243, 242, 234, 0.65);
}

.footer__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 2rem;
  font-family: var(--util);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(243, 242, 234, 0.45);
}

/* ======================= RESPONSIVE ======================= */
@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }

  .about__grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr; max-width: 420px; }

  .contact__details { grid-template-columns: 1fr; max-width: 280px; }
  .footer__impressum { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .projects-slider {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .projects-slider__viewport {
    grid-column: 1;
    grid-row: 1;
  }

  .projects-slider__arrow { display: none; }

  .project-card__compare { grid-template-columns: 1fr; }

  .project-page__hero { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .footer__impressum { grid-template-columns: 1fr; }
  .footer__bar { flex-direction: column; justify-content: center; text-align: center; }
}

/* ==================== REDUCED MOTION ==================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
