/* ==========================================================================
   DiDi ARBA — global stylesheet
   Ported verbatim from the master design HTML. All literal palette hex values
   and the two font families are replaced with CSS variables so that the theme
   (colors + fonts) can be edited from the admin panel via SiteSettings.
   The :root variables themselves are injected by app/layout.tsx from the DB.
   ========================================================================== */

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

:root {
  /* Fallback palette + fonts. layout.tsx overrides these from SiteSettings. */
  --cream: #f2ede4;
  --bone: #ede9e1;
  --ink: #2a2520;
  --deep: #312c27;
  --gold: #b8965a;
  --gold-light: #d4b07a;
  --muted: #8c8680;
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Jost", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
}

/* ----- Nav ----- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.8rem 4rem;
  transition: background 0.3s, box-shadow 0.3s;
}
nav.scrolled {
  background: rgba(242, 237, 228, 0.96);
  box-shadow: 0 1px 0 rgba(184, 150, 90, 0.15);
}
.nav-logo img {
  height: 60px;
  width: auto;
  display: block;
  filter: brightness(0.75) saturate(1.2);
}
.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s;
  opacity: 0.9;
}
.nav-links a:hover {
  color: var(--gold-light);
}
nav.scrolled .nav-links a {
  color: var(--ink);
  opacity: 0.65;
}
nav.scrolled .nav-links a:hover {
  color: var(--gold);
  opacity: 1;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--cream);
  transition: 0.3s;
}
nav.scrolled .hamburger span {
  background: var(--ink);
}

/* ----- Hero ----- */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease;
  filter: sepia(18%) saturate(85%) brightness(0.88) contrast(1.05);
}
.hero-slide.active {
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(42, 37, 32, 0.5) 0%,
    rgba(42, 37, 32, 0.05) 55%,
    transparent 100%
  );
}
.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 3;
}
.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(237, 233, 225, 0.4);
  cursor: pointer;
  transition: 0.3s;
}
.hero-dot.active {
  background: var(--bone);
}
@keyframes zoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1);
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 5rem 5rem;
  animation: fadeUp 1.6s ease forwards;
  opacity: 0;
  animation-delay: 0.4s;
  transition: text-align 0.5s;
}
.hero-content.align-right {
  text-align: right;
}
.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.8;
  margin-bottom: 1.2rem;
  display: block;
}
.hero-title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.4rem, 2.2vw, 2.4rem);
  line-height: 1.1;
  color: var(--cream);
  white-space: pre-line;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ----- Paris strip (events ribbon) ----- */
.paris-strip {
  background: var(--ink);
  padding: 2.8rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 6rem;
  border-top: 1px solid rgba(196, 165, 104, 0.2);
  border-bottom: 1px solid rgba(196, 165, 104, 0.2);
  animation: paris-pulse 4s ease-in-out infinite;
}
.paris-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.paris-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--bone);
  letter-spacing: 0.05em;
}
.paris-sub {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}
.paris-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
}
@keyframes paris-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* ----- Collection ----- */
.collection {
  padding: 6rem 4rem 0;
}
.collection-header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(184, 150, 90, 0.2);
}
.collection-title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--ink);
}
.filter-bar {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  flex-wrap: wrap;
}
.filter-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
  padding: 0.25rem 0;
  position: relative;
  transition: opacity 0.3s;
}
.filter-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.filter-btn.active {
  opacity: 1;
}
.filter-btn.active::after {
  transform: scaleX(1);
}
.filter-btn:hover {
  opacity: 0.75;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.piece {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: var(--bone);
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s;
}
.piece.hidden {
  display: none;
}
.piece img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.5s;
  filter: sepia(18%) saturate(85%) brightness(0.97) contrast(1.05);
}
.piece:hover img {
  transform: scale(1.04);
}
.piece:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.13);
}
.piece img.piece-img-hover {
  opacity: 0;
  z-index: 1;
}
.piece:hover img.piece-img-hover {
  opacity: 1;
}
.piece.tapped img.piece-img-hover {
  opacity: 1;
}
.piece.tapped img.piece-img-main {
  opacity: 0;
}
.piece:hover img.piece-img-main {
  opacity: 0;
}
.piece-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(42, 37, 32, 0.82) 0%,
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 1.4rem;
  z-index: 2;
}
.piece.tapped .piece-overlay,
.piece:hover .piece-overlay {
  opacity: 1;
}
.piece-tag {
  display: none;
}
.piece-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 300;
  color: var(--cream);
}
.piece.sold {
  position: relative;
}
.piece.sold::after {
  content: attr(data-sold-label);
  position: absolute;
  top: 10px;
  right: 12px;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 300;
  pointer-events: none;
  z-index: 2;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Instagram inspiration cards interleaved in the grid */
.inspo-card {
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.inspo-card img {
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.inspo-card:hover img {
  transform: scale(1.04);
}
.inspo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(42, 37, 32, 0);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1rem;
  transition: background 0.3s;
}
.inspo-card:hover .inspo-overlay {
  background: rgba(42, 37, 32, 0.45);
}
.inspo-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone);
  opacity: 0;
  transition: opacity 0.3s;
  text-align: right;
  line-height: 1.6;
}
.inspo-card:hover .inspo-label {
  opacity: 1;
}
.inspo-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--bone);
}

.collection-break {
  grid-column: 1/-1;
  padding: 4rem 2rem;
  text-align: center;
  background: var(--cream);
}
.collection-break-rule {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.4rem;
  opacity: 0.5;
}
.collection-break-quote {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 3.5vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}
.collection-break-sub {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}
.load-more-wrap {
  text-align: center;
  padding: 3.5rem 0 1.5rem;
}
.btn-load-more {
  background: none;
  border: 1px solid rgba(184, 150, 90, 0.35);
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0.9rem 2.8rem;
  cursor: pointer;
  transition: 0.3s;
}
.btn-load-more:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-load-more:disabled {
  display: none;
}

/* Thin gold divider rule between bands */
.gold-rule {
  width: 28px;
  height: 1px;
  background: var(--gold);
  margin: 6rem auto;
  opacity: 0.5;
}

/* ----- About / Philosophy ----- */
.about-section {
  max-width: 660px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}
.section-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.8rem;
}
.about-section h2 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 2rem;
}
.about-section h2 em {
  font-style: italic;
}
.about-section p {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

/* ----- Editorial bands ----- */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 82vh;
}
.editorial-image {
  overflow: hidden;
  background: var(--deep);
}
.editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: sepia(18%) saturate(85%) brightness(0.88) contrast(1.05);
  transition: transform 1.2s ease;
}
.editorial:hover .editorial-image img {
  transform: scale(1.03);
}
.editorial-text {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem;
}
.editorial-text .section-label {
  margin-bottom: 1.5rem;
}
.editorial-text h2 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 2rem;
}
.editorial-text h2 em {
  font-style: italic;
}
.editorial-text p {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 1.2rem;
}
.editorial.flip {
  direction: rtl;
}
.editorial.flip > * {
  direction: ltr;
}

/* ----- Presence ----- */
.presence-section {
  background: var(--ink);
  padding: 6rem 4rem;
  text-align: center;
}
.presence-section .section-label {
  color: var(--gold);
}
.presence-section h2 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  color: var(--bone);
  margin-bottom: 3.5rem;
}
.presence-section h2 em {
  font-style: italic;
}
.locations {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  flex-wrap: wrap;
}
.location-separator {
  width: 1px;
  height: 55px;
  background: rgba(184, 150, 90, 0.3);
}
.location-city {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.location-name {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--bone);
  margin-bottom: 0.2rem;
}
.location-name a {
  color: inherit;
  text-decoration: none;
}
.location-venue {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--bone);
  opacity: 0.5;
}
.location-venue a {
  color: inherit;
  text-decoration: none;
}

/* ----- Enquire ----- */
.enquire-section {
  padding: 7rem 4rem;
  text-align: center;
  background: var(--bone);
}
.enquire-section .section-label {
  color: var(--gold);
}
.enquire-section h2 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  color: var(--ink);
  margin-bottom: 1.4rem;
}
.enquire-section p {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 400px;
  margin: 0 auto 2.5rem;
  line-height: 1.9;
}
.btn-enquire {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--ink);
  border: 1px solid var(--ink);
  padding: 1.1rem 3.2rem;
  text-decoration: none;
  transition: 0.3s;
  cursor: pointer;
}
.btn-enquire:hover {
  background: var(--deep);
}
.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 150, 90, 0.4);
  padding-bottom: 0.3rem;
  transition: 0.3s;
  margin-top: 2.2rem;
}
.btn-instagram:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ----- Enquiry form ----- */
.enquire-form {
  max-width: 460px;
  margin: 2.5rem auto 0;
  text-align: left;
  display: grid;
  gap: 1.2rem;
}
.enquire-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.enquire-form label {
  display: block;
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.enquire-form input,
.enquire-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(184, 150, 90, 0.35);
  padding: 0.5rem 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s;
}
.enquire-form input:focus,
.enquire-form textarea:focus {
  border-color: var(--gold);
}
.enquire-form textarea {
  resize: vertical;
  min-height: 90px;
}
.enquire-form .form-actions {
  text-align: center;
  margin-top: 0.8rem;
}
.enquire-form button[type="submit"] {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--ink);
  border: 1px solid var(--ink);
  padding: 1rem 3rem;
  cursor: pointer;
  transition: 0.3s;
}
.enquire-form button[type="submit"]:hover {
  background: var(--deep);
}
.enquire-form button[type="submit"]:disabled {
  opacity: 0.5;
  cursor: default;
}
.form-status {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  text-align: center;
  margin-top: 1rem;
}

/* ----- Footer ----- */
footer {
  background: var(--ink);
  padding: 3.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  height: 44px;
  width: auto;
  opacity: 0.6;
}
.footer-copy {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-instagram a {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-instagram a:hover {
  color: var(--gold-light);
}

/* ----- Lightbox ----- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(49, 44, 39, 0.995);
  justify-content: center;
  align-items: center;
}
.lightbox.open {
  display: flex;
}
.lightbox-close {
  position: fixed;
  top: 1.2rem;
  right: 1.5rem;
  z-index: 400;
  font-family: var(--font-body);
  font-weight: 100;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--bone);
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}
.lightbox-close:hover {
  color: var(--cream);
}
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.lightbox-img {
  width: 45vw;
  height: 70vh;
  object-fit: contain;
  filter: sepia(18%) saturate(85%) brightness(0.97) contrast(1.05);
}
.lightbox-info {
  color: var(--cream);
  min-width: 220px;
  max-width: 340px;
  max-height: 85vh;
  overflow-y: auto;
  padding-right: 0.5rem;
}
.lightbox-tag {
  display: none;
}
.lightbox-name {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 500;
  font-size: 2.2rem;
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.1;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(196, 165, 104, 0.3);
}
.lightbox-sold {
  display: inline-block;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: rgba(180, 160, 130, 0.9);
  font-weight: 300;
  margin-bottom: 0.8rem;
}
.lightbox-specs {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  line-height: 1.6;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.lightbox-story {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.45;
  color: rgba(237, 233, 225, 0.7);
  max-width: 320px;
  margin-bottom: 1.8rem;
}
.lightbox-story::first-letter {
  font-size: 1.6rem;
  font-weight: 500;
}
.lightbox-ooak {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 0.88rem;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
}
.lightbox-engrave {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: rgba(196, 165, 104, 0.85);
  margin-bottom: 0.9rem;
  line-height: 1.5;
}
.lightbox-engrave a {
  color: rgba(196, 165, 104, 0.85);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.lightbox-enquire {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(184, 150, 90, 0.4);
  padding-bottom: 0.3rem;
  text-decoration: none;
  transition: color 0.3s;
}
.lightbox-enquire:hover {
  color: var(--gold-light);
}
.lightbox-thumbs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}
.lightbox-thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.3s;
  border: 1px solid transparent;
  filter: sepia(18%) saturate(85%) brightness(0.97) contrast(1.05);
}
.lightbox-thumb.active,
.lightbox-thumb:hover {
  opacity: 1;
  border-color: var(--gold);
}
.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-family: var(--font-body);
  font-weight: 100;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.3s;
  text-transform: uppercase;
  z-index: 201;
}
.lightbox-prev {
  left: 1.5rem;
}
.lightbox-next {
  right: 1.5rem;
}
.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--cream);
}
.lightbox-info::-webkit-scrollbar {
  width: 3px;
}
.lightbox-info::-webkit-scrollbar-thumb {
  background: rgba(184, 150, 90, 0.3);
}
.lightbox-divider {
  width: 100%;
  height: 1px;
  background: rgba(184, 150, 90, 0.18);
  margin: 2rem 0 1.8rem;
}
.lightbox-footer-label {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
  text-align: center;
}
.lightbox-locations {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.8rem;
  justify-content: center;
}
.lightbox-location-city {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(196, 165, 104, 0.7);
  margin-bottom: 0.35rem;
  text-align: center;
}
.lightbox-location-name {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--cream);
  margin-bottom: 0.15rem;
  text-align: center;
}
.lightbox-location-name a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 165, 104, 0.25);
  transition: border-color 0.3s;
}
.lightbox-location-name a:hover {
  border-color: var(--gold);
}
.lightbox-location-sub {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(237, 233, 225, 0.35);
  text-align: center;
}
.lightbox-enquire-heading {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 0.8rem;
  line-height: 1.2;
  text-align: center;
}
.lightbox-enquire-text {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.3;
  color: rgba(237, 233, 225, 0.55);
  margin-bottom: 1.6rem;
  text-align: center;
}
.lightbox-btn-enquire {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  background: transparent;
  border: 1px solid rgba(237, 233, 225, 0.5);
  padding: 0.9rem 2.4rem;
  text-decoration: none;
  transition: 0.3s;
}
.lightbox-btn-enquire:hover {
  border-color: var(--cream);
  color: var(--cream);
}
.lightbox-btn-ig {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(237, 233, 225, 0.5);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 150, 90, 0.3);
  padding-bottom: 0.25rem;
  transition: 0.3s;
  margin-top: 1.4rem;
}
.lightbox-btn-ig:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ----- Scroll reveal ----- */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s, transform 0.8s;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ----- Mobile menu overlay ----- */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--cream);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-overlay.open {
  display: flex;
}
.mobile-overlay a {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 2rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.05em;
}
.mobile-overlay-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ----- Responsive ----- */
@media (max-width: 900px) {
  nav {
    padding: 1.2rem 1.5rem;
  }
  .nav-logo img {
    height: 50px;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero {
    min-height: 100svh;
    overflow: hidden;
  }
  .hero-content {
    padding: 0 1.8rem 4rem;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .hero-slide {
    background-attachment: scroll;
    background-size: cover !important;
    background-repeat: no-repeat !important;
  }
  .paris-strip {
    flex-direction: column;
    gap: 0.8rem;
    padding: 1.5rem;
  }
  .collection {
    padding: 4rem 1.2rem 3rem;
  }
  .filter-bar {
    gap: 1.2rem;
  }
  .grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .editorial {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .editorial.flip {
    direction: ltr;
  }
  .editorial-image {
    min-height: 60vw;
  }
  .editorial-text {
    padding: 3rem 1.8rem;
  }
  .about-section {
    padding: 4rem 1.8rem;
  }
  .presence-section {
    padding: 4rem 1.8rem;
  }
  .locations {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
  .location-separator {
    width: 50px;
    height: 1px;
  }
  .load-more-wrap {
    padding: 2rem 0 1rem;
  }
  .enquire-section {
    padding: 4rem 1.8rem;
  }
  .enquire-form .form-row {
    grid-template-columns: 1fr;
  }
  footer {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    padding: 2.5rem 1.8rem;
  }
  .lightbox {
    align-items: flex-start;
  }
  .lightbox-inner {
    flex-direction: column;
    align-items: center;
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    padding: 3.5rem 1.5rem 2rem;
    gap: 1rem;
    box-sizing: border-box;
  }
  .lightbox-img {
    width: 92vw;
    height: 45vh;
  }
  .lightbox-info {
    max-height: none;
    max-width: 92vw;
    min-width: unset;
    width: 100%;
    padding-right: 0;
  }
  .lightbox-close {
    color: var(--bone);
  }
}
