/* ── Lightbox ── */
.lb {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lb--open {
  opacity: 1;
  pointer-events: all;
}

.lb__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 8, 0.95);
}

.lb__img-wrap {
  position: relative;
  z-index: 1;
  max-width: calc(100vw - 120px);
  max-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.lb__img-wrap--loading { opacity: 0.4; }

.lb__img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 80px);
  width: auto;
  height: auto;
  object-fit: contain;
  user-select: none;
  transition: opacity 0.25s;
}

.lb__hotspots {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.lb__hotspots .hotspot {
  pointer-events: auto;
}

.lb__hotspots .hotspot__tooltip {
  z-index: 3;
}

.lb__close,
.lb__prev,
.lb__next {
  position: absolute;
  z-index: 4;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  padding: 12px;
  transition: color 0.2s, transform 0.2s;
  line-height: 0;
}

.lb__close:hover,
.lb__prev:hover,
.lb__next:hover { color: #fff; }

.lb__close {
  top: 24px;
  right: 24px;
}

.lb__close:hover { transform: rotate(90deg); }

.lb__prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lb__next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lb__prev:hover { transform: translateY(-50%) translateX(-4px); }
.lb__next:hover { transform: translateY(-50%) translateX(4px); }

.lb__counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.35);
  z-index: 4;
}

@media (max-width: 600px) {
  .lb__img-wrap {
    width: 100vw;
    height: 100svh;
    max-width: none;
    max-height: none;
  }

  .lb__img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
  }

  .lb__close {
    top: max(12px, env(safe-area-inset-top));
    right: 12px;
  }

  .lb__counter {
    bottom: max(14px, env(safe-area-inset-bottom));
  }

  .lb__prev { left: 8px; }
  .lb__next { right: 8px; }
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #f5f2ed;
  --bg-dark:  #1c1916;
  --text:     #1c1916;
  --text-mid: #5a5550;
  --accent:   #9c8060;
  --line:     rgba(28, 25, 22, 0.12);
  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans:  'Inter', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  mix-blend-mode: normal;
  transition: background 0.4s, padding 0.4s;
}

.nav.scrolled {
  background: rgba(245, 242, 237, 0.96);
  backdrop-filter: blur(12px);
  padding: 18px 48px;
  border-bottom: 1px solid var(--line);
}

.nav__logo {
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: #fff;
  transition: color 0.4s;
}

.nav.scrolled .nav__logo { color: var(--text); }

.nav__links {
  display: flex;
  gap: 36px;
}

.nav__links a {
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
}

.nav.scrolled .nav__links a { color: var(--text-mid); }
.nav__links a:hover { color: var(--accent); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: #fff;
  transition: background 0.4s;
}
.nav.scrolled .nav__burger span { background: var(--text); }

/* ── Mobile nav ── */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.nav__mobile.open {
  opacity: 1;
  pointer-events: all;
}
.nav__mobile-link {
  font-family: var(--ff-serif);
  font-size: clamp(32px, 8vw, 56px);
  font-weight: 300;
  text-decoration: none;
  color: var(--text);
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
.nav__mobile-link:hover { color: var(--accent); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  object-position: center 30%;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero__bg img.loaded { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 17, 14, 0.35) 0%,
    rgba(20, 17, 14, 0.15) 50%,
    rgba(20, 17, 14, 0.55) 100%
  );
}

.hero__content {
  position: absolute;
  bottom: 80px;
  left: 48px;
  right: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero__label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.hero__title {
  font-family: var(--ff-serif);
  font-size: clamp(42px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.01em;
}

.hero__title em {
  font-style: italic;
  color: rgba(255,255,255,0.75);
}

.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
  width: fit-content;
}
.hero__scroll:hover { color: #fff; }

/* ── ABOUT ── */
.about {
  padding: 120px 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.about__tag {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 64px;
}

.about__tag span:first-child {
  font-family: var(--ff-sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.about__tag span:last-child {
  font-family: var(--ff-sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: start;
}

.about__lead {
  font-family: var(--ff-serif);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 300;
  line-height: 1.55;
  color: var(--text);
  grid-column: 1 / 2;
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about__body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-mid);
}

.about__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.feature {
  padding: 48px 36px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature__num {
  font-size: 20px;
  color: var(--accent);
  line-height: 1;
}

.feature__title {
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}

.feature__text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-mid);
}

/* ── FULL IMAGE DIVIDER ── */
.full-image {
  height: 70vh;
  min-height: 400px;
  overflow: hidden;
}

.full-image img {
  transition: transform 12s ease-out;
  transform: scale(1.03);
}

.full-image.visible img { transform: scale(1); }

/* ── PROJECTS / CAROUSEL ── */
.projects {
  padding: 120px 0 0;
}

.projects__header-wrap {
  padding: 0 48px;
  max-width: 1400px;
  margin: 0 auto 56px;
}

.projects__header {
  /* intentionally empty — layout handled by wrapper */
}

.projects__subtitle {
  font-family: var(--ff-serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
  font-style: italic;
  color: var(--text-mid);
  max-width: 480px;
}

/* ── CAROUSEL ── */
.carousel {
  position: relative;
  width: 100%;
}

.carousel__track-wrap {
  overflow: hidden;
  width: 100%;
}

.carousel__track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
}

.carousel__slide {
  flex: 0 0 100%;
  position: relative;
  height: 72vh;
  min-height: 460px;
  overflow: hidden;
  cursor: zoom-in;
}

.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.carousel__slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(0,0,0,0.22) 0%, transparent 20%,
    transparent 80%, rgba(0,0,0,0.22) 100%);
  pointer-events: none;
  z-index: 1;
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(245, 242, 237, 0.88);
  border: none;
  color: var(--text);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  backdrop-filter: blur(10px);
}

.carousel__btn--prev { left: 28px; }
.carousel__btn--next { right: 28px; }
.carousel__btn:hover { background: #fff; }
.carousel__btn--prev:hover { transform: translateY(-50%) translateX(-3px); }
.carousel__btn--next:hover { transform: translateY(-50%) translateX(3px); }

.carousel__nav {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}

.carousel__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.38);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.carousel__dot--active {
  background: #fff;
  transform: scale(1.5);
}

.carousel__counter {
  position: absolute;
  bottom: 22px;
  right: 28px;
  z-index: 10;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.38);
}

.carousel__expand {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  background: rgba(20,17,14,0.5);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  backdrop-filter: blur(8px);
}

.carousel__expand:hover {
  background: rgba(20,17,14,0.8);
  color: #fff;
}

/* ── HOTSPOTS ── */
.hotspot {
  position: absolute;
  z-index: 5;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.hotspot__btn {
  width: 30px;
  height: 30px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hotspot__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.65);
  animation: hs-pulse 2.6s ease-out infinite;
}

.hotspot__ring:nth-child(2) { animation-delay: 1.3s; }

@keyframes hs-pulse {
  0%   { transform: scale(1); opacity: 0.65; }
  100% { transform: scale(2.4); opacity: 0; }
}

.hotspot__core {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.25), 0 2px 8px rgba(0,0,0,0.35);
  transition: transform 0.2s, background 0.2s;
}

.hotspot:hover .hotspot__core,
.hotspot--open .hotspot__core {
  background: var(--accent);
  transform: scale(1.2);
}

.hotspot__tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: rgba(14, 12, 10, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.09);
  padding: 11px 15px;
  min-width: 180px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s, transform 0.22s;
  white-space: nowrap;
}

.hotspot__tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(14,12,10,0.92);
}

.hotspot:hover .hotspot__tooltip,
.hotspot--open .hotspot__tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* tooltip below for hotspots near top */
.hotspot--below .hotspot__tooltip {
  bottom: auto;
  top: calc(100% + 12px);
  transform: translateX(-50%) translateY(-6px);
}

.hotspot--below .hotspot__tooltip::after {
  top: auto;
  bottom: 100%;
  border-top-color: transparent;
  border-bottom-color: rgba(14,12,10,0.92);
}

.hotspot--below:hover .hotspot__tooltip,
.hotspot--below.hotspot--open .hotspot__tooltip {
  transform: translateX(-50%) translateY(0);
}

/* edge alignment */
.hotspot--right .hotspot__tooltip {
  left: auto;
  right: -4px;
  transform: translateY(6px);
}

.hotspot--right .hotspot__tooltip::after { left: auto; right: 14px; }

.hotspot--right:hover .hotspot__tooltip,
.hotspot--right.hotspot--open .hotspot__tooltip { transform: translateY(0); }

.hotspot--left .hotspot__tooltip {
  left: -4px;
  transform: translateY(6px);
}

.hotspot--left .hotspot__tooltip::after { left: 14px; }

.hotspot--left:hover .hotspot__tooltip,
.hotspot--left.hotspot--open .hotspot__tooltip { transform: translateY(0); }

.hotspot__label {
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.07em;
  color: #fff;
  display: block;
  margin-bottom: 4px;
}

.hotspot__sub {
  font-size: 10.5px;
  color: rgba(255,255,255,0.38);
  display: block;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* ── PARTNERS ── */
.partners {
  background: var(--bg-dark);
  padding: 120px 48px;
}

.partners__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.partners .about__tag span:first-child { color: var(--accent); }
.partners .about__tag span:last-child  { color: rgba(255,255,255,0.35); }

.partners__subtitle {
  font-family: var(--ff-serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.4);
  margin-bottom: 64px;
  max-width: 480px;
}

.brands {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
  margin-bottom: 3px;
}

.brand-tile {
  background: #252220;
  border-radius: 12px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px 22px;
  transition: background 0.3s;
  cursor: default;
}

.brand-tile:hover { background: #2e2b28; }

.brand-logo {
  display: block;
  width: min(100%, 170px);
  max-height: 54px;
  object-fit: contain;
  opacity: 0.92;
}

.brand-logo--kutahya {
  width: min(100%, 188px);
  max-height: 44px;
  filter: brightness(1.65);
}

.brand-logo--vitra,
.brand-logo--creavit,
.brand-logo--doxa {
  width: min(100%, 132px);
}

.brand-logo--mitsubishi {
  width: min(100%, 168px);
  max-height: 70px;
}

.brand-logo--asas {
  width: min(100%, 154px);
  max-height: 48px;
}

/* Developer clients strip */
.developers {
  background: #1e1c19;
  border-radius: 12px;
  padding: 36px 48px;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 3px;
}

.developers__label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  white-space: nowrap;
  flex-shrink: 0;
}

.developers__list {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  flex: 1;
}

.developers__list span {
  font-family: var(--ff-sans);
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  padding: 4px 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
  white-space: nowrap;
  transition: color 0.3s;
}

.developers__list span:first-child { padding-left: 0; }
.developers__list span:last-child  { border-right: none; }
.developers__list span:hover { color: rgba(255,255,255,0.9); }

@media (max-width: 900px) {
  .partners { padding: 80px 24px; }

  .brands {
    grid-template-columns: repeat(3, 1fr);
  }

  .brand-tile {
    padding: 22px 18px;
  }

  .developers {
    padding: 28px 24px;
    gap: 20px;
  }

  .developers__list { gap: 0; }

  .developers__list span {
    padding: 6px 14px;
    font-size: 13px;
  }
}

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

  .brand-tile {
    border-radius: 10px;
    padding: 20px 16px;
  }

  .brand-logo {
    max-height: 48px;
  }

  .brand-logo--mitsubishi {
    max-height: 62px;
  }
}

/* ── CONTACT ── */
.contact {
  background: var(--bg-dark);
  padding: 140px 48px;
}

.contact__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.contact .about__tag span:first-child { color: var(--accent); }
.contact .about__tag span:last-child { color: rgba(255,255,255,0.35); }

.contact__title {
  font-family: var(--ff-serif);
  font-size: clamp(42px, 6vw, 86px);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 32px;
}

.contact__title em {
  font-style: italic;
  color: var(--accent);
}

.contact__sub {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 56px;
  max-width: 420px;
  line-height: 1.7;
}

.contact__email {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 6px;
  transition: border-color 0.3s, color 0.3s;
}

.contact__email:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ── FORM ── */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__left { padding-top: 8px; }

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

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form__label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.form__input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 14px 16px;
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  width: 100%;
  -webkit-appearance: none;
}

.form__input::placeholder { color: rgba(255,255,255,0.2); }

.form__input:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.07);
}

.form__input.error { border-color: #c0614a; }

.form__textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.form__footer {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 4px;
}

.form__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 14px 32px;
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, transform 0.15s;
  white-space: nowrap;
}

.form__btn:hover  { background: #b5956a; }
.form__btn:active { transform: scale(0.98); }
.form__btn:disabled { opacity: 0.6; cursor: not-allowed; }

.form__notice {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
}

.form__success[hidden],
.form__error[hidden] { display: none; }

.form__success,
.form__error {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.5;
}

.form__success {
  background: rgba(156, 128, 96, 0.12);
  border: 1px solid rgba(156, 128, 96, 0.3);
  color: var(--accent);
}

.form__error {
  background: rgba(192, 97, 74, 0.1);
  border: 1px solid rgba(192, 97, 74, 0.25);
  color: #e08070;
}

.form__error a { color: inherit; }

@media (max-width: 960px) {
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

@media (max-width: 600px) {
  .form__row { grid-template-columns: 1fr; }
  .contact { padding: 80px 24px; }
}

/* ── FOOTER ── */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__left {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer__logo {
  font-size: 12px;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.5);
}

.footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

.footer__right {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.25);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav { padding: 22px 24px; }
  .nav.scrolled { padding: 16px 24px; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile { display: flex; }

  .hero__content { left: 24px; right: 24px; bottom: 60px; }

  .about { padding: 80px 24px; }
  .about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .projects { padding-top: 80px; }
  .projects__header-wrap { padding: 0 24px; }

  .carousel__slide { height: 58vw; min-height: 320px; }
  .carousel__btn { width: 42px; height: 42px; }
  .carousel__btn--prev { left: 12px; }
  .carousel__btn--next { right: 12px; }

  .contact { padding: 100px 24px; }

  .footer {
    padding: 24px;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .carousel__slide { height: 65vw; min-height: 260px; }
  .carousel__expand { display: none; }
}
