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

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

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: #fafaf8;
  color: #2c2c2c;
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* ─── Loader ─── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader--hidden {
  opacity: 0;
  visibility: hidden;
}

.loader__content {
  text-align: center;
}

.loader__logo {
  max-width: 280px;
  height: auto;
  opacity: 0;
  mix-blend-mode: multiply;
  animation: logoFadeIn 0.8s ease forwards;
}

@keyframes logoFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 3rem;
  z-index: 1000;
  background: rgba(250, 250, 248, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, transform 0.4s ease;
}

.nav--solid {
  background: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav--hidden {
  transform: translateY(-100%);
}

.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

section[id] { scroll-margin-top: 100px; }
.nav__logo {
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #1a1a1a;
}

.nav__links {
  display: flex;
  gap: 2.5rem;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #1a1a1a;
}

.nav__links a {
  position: relative;
  transition: color 0.3s;
}

.nav__links a:hover {
  color: #1a1a1a;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  width: 24px;
  height: 1.5px;
  background: #1a1a1a;
  transition: transform 0.3s;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform: scale(1.08);
  will-change: transform;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
  transform: scale(1);
}

.hero__slide--active {
  opacity: 1;
  z-index: 1;
  animation: heroZoomOut 15s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes heroZoomOut {
  from { transform: scale(1.3); }
  to   { transform: scale(1); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  text-align: center;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
}

.hero__tag {
  font-size: 0.65rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-weight: 300;
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.95);
}

.hero__sub {
  margin-top: 2rem;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.3);
  font-size: 2.5rem;
  cursor: pointer;
  padding: 1rem;
  transition: color 0.3s, opacity 0.3s;
  opacity: 0.5;
  line-height: 1;
}

.hero__arrow:hover {
  color: rgba(255, 255, 255, 0.8);
  opacity: 1;
}

.hero__arrow--prev { left: 1.5rem; }
.hero__arrow--next { right: 1.5rem; }

.hero__arrow::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border: solid currentColor;
  border-width: 0 0 2px 2px;
  transform: rotate(45deg);
}

.hero__arrow--next::before {
  border-width: 2px 2px 0 0;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.hero__scroll::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border: solid currentColor;
  border-width: 0 0 2px 2px;
  transform: rotate(-45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(-45deg) translateY(0); opacity: 0.6; }
  50% { transform: rotate(-45deg) translateY(4px); opacity: 1; }
}
  font-size: 0.55rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: rgba(255, 255, 255, 0.25);
  animation: floatDown 2.5s ease-in-out infinite;
}

@keyframes floatDown {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 0.9; }
}

/* ─── Sections ─── */
.section {
  padding: 7rem 3rem;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.section:not(:first-of-type) {
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.section__header {
  margin-bottom: 3.5rem;
}

.section__tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(44, 44, 44, 0.35);
  margin-bottom: 1rem;
}

.section__title {
  font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #1a1a1a;
}

/* ─── Work Tabs ─── */
.work__tabs {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.work__tab {
  padding: 0.5rem 1.25rem;
  font-size: 0.6rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: 1px solid rgba(44, 44, 44, 0.12);
  background: none;
  color: rgba(44, 44, 44, 0.4);
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  font-family: inherit;
}

.work__tab:hover {
  border-color: rgba(44, 44, 44, 0.25);
  color: rgba(44, 44, 44, 0.7);
}

.work__tab--active {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
}

.work__tab--active:hover {
  background: #1a1a1a;
  color: #fff;
}

/* ─── Work Grid ─── */
.work__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 1.5rem;
}

.work__card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #f0f0ee;
}

.work__link {
  display: block;
}

.work__img {
  height: 480px;
  overflow: hidden;
  position: relative;
}

.work__img img,
.work__img .slider__slides img {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}



.work__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.05) 100%);
  display: flex;
  align-items: flex-end;
  padding: 2.5rem;
  transition: background 0.5s ease;
  pointer-events: none;
}

.slider__btn, .slider__counter { pointer-events: auto; }

.work__card:hover .work__overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0.05) 100%);
}

.work__info {
  transform: translateY(8px);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.work__card:hover .work__info {
  transform: translateY(0);
}

.work__category {
  font-size: 0.55rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.45);
}

.work__title {
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.95);
  margin-top: 0.35rem;
  line-height: 1.3;
}

.work__desc {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.5rem;
  line-height: 1.6;
  max-width: 380px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.work__card:hover .work__desc {
  opacity: 1;
  transform: translateY(0);
}

.work__cta {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.75rem;
  transition: color 0.3s;
}

.work__card:hover .work__cta {
  color: rgba(255, 255, 255, 0.9);
}

/* ─── Slider inside work cards ─── */
.slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* ensure explicit height from .work__img is not overridden */
.work__img.slider {
  height: 480px;
}

.slider__track {
  width: 100%;
  height: 100%;
}

.slider__slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.slider__slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
}

.slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(0,0,0,0.25);
  border: none;
  color: #fff;
  font-size: 1.3rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
  border-radius: 50%;
  line-height: 1;
}

.slider__btn:hover {
  background: rgba(0,0,0,0.5);
}

.slider__btn--prev { left: 8px; }
.slider__btn--next { right: 8px; }

.slider__counter {
  position: absolute;
  bottom: 10px;
  right: 12px;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.35);
  padding: 2px 8px;
  border-radius: 8px;
  z-index: 2;
  letter-spacing: 0.05em;
}

/* ─── About ─── */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__image {
  height: 600px;
  overflow: hidden;
  position: relative;
}

.about__image img {
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.about__content p {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(44, 44, 44, 0.6);
  max-width: 440px;
}

/* ─── Button ─── */
.btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.9rem 2.5rem;
  border: 1px solid rgba(44, 44, 44, 0.15);
  font-size: 0.65rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  cursor: pointer;
  background: none;
  color: rgba(44, 44, 44, 0.7);
  font-family: inherit;
}

.btn:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
}

/* ─── Publication ─── */


.publication__brands {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.publication__brand {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.5rem;
  border: 1px solid rgba(44, 44, 44, 0.08);
  transition: border-color 0.3s, background 0.3s;
}

.publication__brand:hover {
  border-color: rgba(44, 44, 44, 0.18);
  background: rgba(44, 44, 44, 0.02);
}

.publication__brand img {
  max-width: 200px;
  height: auto;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.publication__brand:hover img {
  opacity: 0.9;
}

.publication__brand-text {
  font-size: 1.4rem;
  font-weight: 200;
  letter-spacing: 0.08em;
  color: rgba(44, 44, 44, 0.35);
  text-transform: uppercase;
  transition: color 0.3s;
}

.publication__brand:hover .publication__brand-text {
  color: rgba(44, 44, 44, 0.7);
}

/* ─── Contact ─── */
.contact__inner {
  max-width: 800px;
  margin: 0 auto;
}

.contact__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact__info p {
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(44, 44, 44, 0.55);
  line-height: 1.7;
}

.contact__social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: rgba(44, 44, 44, 0.45);
  transition: color 0.3s;
}

.contact__social:hover {
  color: #1a1a1a;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(44, 44, 44, 0.03);
  border: 1px solid rgba(44, 44, 44, 0.08);
  color: #2c2c2c;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 300;
  transition: border-color 0.3s, background 0.3s;
}

.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: rgba(44, 44, 44, 0.25);
  background: rgba(44, 44, 44, 0.06);
}

.contact__form input::placeholder,
.contact__form textarea::placeholder {
  color: rgba(44, 44, 44, 0.25);
}

.contact__form .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.contact__status {
  font-size: 0.75rem;
  margin-top: 0.75rem;
  transition: opacity 0.3s;
}

.contact__status--ok {
  color: #2e7d32;
}

.contact__status--err {
  color: #c62828;
}

/* ─── Click Ripple ─── */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  pointer-events: none;
  animation: rippleAnim 0.6s ease-out forwards;
}

@keyframes rippleAnim {
  from { width: 0; height: 0; opacity: 1; }
  to { width: 300px; height: 300px; opacity: 0; }
}

/* ─── Gallery Stagger ─── */
.project-gallery__item {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── Project View Tabs ─── */
.project-gallery__tabs {
  padding: 0 4rem;
  margin-bottom: 2.5rem;
  display: flex;
  gap: 0.75rem;
}

.project-gallery__tab {
  padding: 0.6rem 1.5rem;
  font-size: 0.65rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: 1px solid rgba(44, 44, 44, 0.12);
  color: rgba(44, 44, 44, 0.4);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  cursor: pointer;
}

.project-gallery__tab:hover {
  border-color: rgba(44, 44, 44, 0.25);
  color: rgba(44, 44, 44, 0.7);
}

.project-gallery__tab--active {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
}

.project-gallery__tab--active:hover {
  background: #1a1a1a;
  color: #fff;
}

@media (max-width: 768px) {
  .project-gallery__tabs {
    padding: 0 1.5rem;
  }
}

/* ─── Project Gallery ─── */
.project-gallery {
  padding: 130px 0 5rem;
  min-height: 100vh;
}

.project-gallery__header {
  padding: 0 4rem;
  margin-bottom: 3.5rem;
}

.project-gallery__back {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(44, 44, 44, 0.35);
  margin-bottom: 1.5rem;
  transition: color 0.3s;
}

.project-gallery__back:hover {
  color: #1a1a1a;
}

.project-gallery__title {
  font-weight: 200;
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -0.03em;
  color: #1a1a1a;
  line-height: 1.15;
}

.project-gallery__location {
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(44, 44, 44, 0.35);
  margin-top: 0.3rem;
  letter-spacing: 0.1em;
}

.project-gallery__description {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(44, 44, 44, 0.5);
  margin-top: 0.4rem;
  line-height: 1.5;
}

.project-gallery__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 0.75rem;
}

.project-gallery__meta-item {
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(44, 44, 44, 0.35);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
}

.project-gallery__meta-item + .project-gallery__meta-item::before {
  content: "·";
  margin-right: 1.5rem;
  color: rgba(44, 44, 44, 0.2);
}

.project-gallery__brief {
  margin-top: 1.5rem;
}

.project-gallery__brief p {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(44, 44, 44, 0.55);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.project-gallery__count {
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(44, 44, 44, 0.25);
  margin-top: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.project-gallery__item {
  overflow: hidden;
  cursor: pointer;
  background: #e8e8e4;
  position: relative;
}

.project-gallery__item::before {
  content: "";
  display: block;
  padding-top: 75%;
}

.project-gallery__item img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  background: #e8e8e4 !important;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease !important;
}

.project-gallery__item:hover img {
  transform: scale(1.04);
  opacity: 0.85;
}

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

@media (max-width: 768px) {
  .project-gallery {
    padding: 110px 0 3rem;
  }

  .project-gallery__header {
    padding: 0 1.5rem;
    margin-bottom: 2rem;
  }

  .project-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
  }

  .project-gallery__item::before {
    padding-top: 100%;
  }
}

/* ─── Lightbox ─── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.97);
  align-items: center;
  justify-content: center;
}

.lightbox--open {
  display: flex;
}

.lightbox__close {
  position: absolute;
  top: 28px;
  right: 32px;
  z-index: 10;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: color 0.3s;
}

.lightbox__close:hover {
  color: #fff;
}

.lightbox__close::before,
.lightbox__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background: currentColor;
}

.lightbox__close::before { transform: translate(-50%, -50%) rotate(45deg); }
.lightbox__close::after  { transform: translate(-50%, -50%) rotate(-45deg); }

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  color: rgba(255,255,255,0.2);
  padding: 1.5rem 0.75rem;
  cursor: pointer;
  transition: color 0.3s;
}

.lightbox__nav:hover {
  color: rgba(255,255,255,0.7);
}

.lightbox__nav::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border: solid currentColor;
  border-width: 0 0 2px 2px;
  transform: rotate(45deg);
}

.lightbox__nav--next::before {
  border-width: 2px 2px 0 0;
}

.lightbox__nav--prev { left: 0; }
.lightbox__nav--next { right: 0; }

.lightbox__img {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
  animation: lbImgIn 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes lbImgIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox__counter {
  position: absolute;
  bottom: 28px;
  right: 32px;
  left: auto;
  transform: none;
  color: rgba(255,255,255,0.2);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 300;
}

.lightbox__caption {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.35);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-align: center;
  max-width: 50%;
  pointer-events: none;
}

.lightbox__share {
  position: absolute;
  bottom: 24px;
  left: 28px;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.lightbox__share-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.25);
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.lightbox__share-link:hover,
.lightbox__share-link--copy.copied {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}

.lightbox__share-copied {
  display: none;
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  color: rgba(255,255,255,0.35);
}

.lightbox__share-link--copy.copied .lightbox__share-copied {
  display: block;
}

.lightbox__img--zoomed { cursor: default; overflow: hidden; }
.lightbox__img--zoomed img {
  max-width: none;
  max-height: none;
  width: auto;
  height: auto;
  object-fit: none;
  user-select: none;
  -webkit-user-drag: none;
}

/* ─── Contact Map ─── */
.contact__map {
  margin-top: 1.5rem;
  width: 100%;
  max-width: 320px;
  height: 180px;
  overflow: hidden;
  border: 1px solid rgba(44, 44, 44, 0.08);
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.8);
  transition: filter 0.5s ease;
}

.contact__map:hover iframe {
  filter: grayscale(0);
}

/* ─── WhatsApp Floating Button ─── */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  color: #fff;
}

/* ─── Back to Top ─── */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 999;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1a1a1a;
  color: #fff;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-family: inherit;
}

.back-to-top--visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border: solid currentColor;
  border-width: 2px 2px 0 0;
  transform: translateY(3px) rotate(-45deg);
}

.back-to-top:hover {
  transform: translateY(-3px);
}

/* ─── Project Share ─── */
.project-gallery__share {
  padding: 0 4rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.project-gallery__share-label {
  font-size: 0.6rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(44, 44, 44, 0.3);
}

.project-gallery__share-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(44, 44, 44, 0.1);
  color: rgba(44, 44, 44, 0.4);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
}

.project-gallery__share-link:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
}

.project-gallery__share-link--copy.copied {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
}

.project-gallery__share-copied {
  display: none;
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  color: rgba(44, 44, 44, 0.5);
}

.project-gallery__share-link--copy.copied .project-gallery__share-copied {
  display: block;
}

@media (max-width: 768px) {
  .project-gallery__share {
    padding: 0 1.5rem;
  }
  .whatsapp-btn {
    bottom: 16px;
    right: 16px;
  }
  .back-to-top {
    bottom: 80px;
    right: 16px;
  }
}

/* ─── Footer ─── */
.footer {
  padding: 3rem 3rem;
  font-size: 0.6rem;
  font-weight: 300;
  color: rgba(44, 44, 44, 0.3);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-top: 1px solid rgba(44, 44, 44, 0.04);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
}

.footer__links {
  display: flex;
  gap: 1.5rem;
}

.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(44, 44, 44, 0.3);
  transition: color 0.3s;
}

.footer__social:hover {
  color: #1a1a1a;
}

/* ─── Reveal Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-text {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-text--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Cursor Follower ─── */
.cursor {
  position: fixed;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(44, 44, 44, 0.25);
  pointer-events: none;
  z-index: 99999;
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.cursor--grow {
  width: 52px;
  height: 52px;
  border-color: rgba(44, 44, 44, 0.1);
  background: rgba(44, 44, 44, 0.04);
}

@media (hover: none) { .cursor { display: none; } }

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .nav {
    padding: 1.25rem 1.5rem;
  }

  .nav__links {
    display: none;
  }

  .nav__toggle {
    display: flex;
    position: relative;
    z-index: 1000;
  }

  .nav__toggle span {
    transition: transform 0.3s, opacity 0.3s;
    transform-origin: center;
  }

  .nav__toggle--open span:first-child {
    transform: rotate(45deg) translate(4px, 4px);
  }

  .nav__toggle--open span:last-child {
    transform: rotate(-45deg) translate(4px, -4px);
  }

  .nav__links--open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(250, 250, 248, 0.98);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    font-size: 0.85rem;
    z-index: 999;
    animation: mobileMenuIn 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }

  @keyframes mobileMenuIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .nav__links--open a {
    font-size: 1rem;
    color: #1a1a1a;
  }

  .hero__arrow {
    display: none;
  }

  .section {
    padding: 5rem 1.5rem;
  }

  .section__header {
    margin-bottom: 2.5rem;
  }

  .work__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .work__img {
    height: 340px;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about__image {
    height: 320px;
  }

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

  .publication__brand {
    padding: 1.5rem;
  }

  .publication__brand img {
    max-width: 140px;
  }

  .publication__brand-text {
    font-size: 1.1rem;
  }

  .contact__bottom {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero__title {
    font-size: clamp(1.3rem, 5vw, 1.9rem);
  }

  .footer {
    padding: 2rem 1.5rem;
  }
}
