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

:root {
  --gold-soft: #e7c978;
  --text: #f5efe6;
  --muted: #ddd2c2;
  --panel: rgba(14, 12, 10, 0.78);
  --border: rgba(231, 201, 120, 0.18);
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
  --max: 1240px;

  --frame-w: 14%;
  --frame-h: 32%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Playfair Display", serif;
  background: #2f2c29;
  color: var(--text);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(10, 8, 7, 0.24), rgba(10, 8, 7, 0.82));
  z-index: -1;
}

/* HEADER */

.topbar {
  width: min(var(--max), calc(100% - 88px));
  margin: 0 auto;
  padding: 22px 0 10px;
  display: grid;
  grid-template-columns: 92px 1fr 92px;
  align-items: start;
}

.brand {
  text-decoration: none;
}

.brand-logo {
  width: 92px;
  height: 92px;
  object-fit: contain;
  display: block;
  transform: translateX(-10px);
}

.nav {
  display: flex;
  gap: 24px;
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav a,
.footer-nav a {
  color: rgba(245, 239, 230, 0.9);
  text-decoration: none;
}

.nav a:hover,
.footer-nav a:hover {
  color: var(--gold-soft);
}

/* HERO */

.topbar-center {
  text-align: center;
  transform: translateY(20px);
}

.topbar-brand-name {
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.3;
  letter-spacing: -0.001em;
  background: linear-gradient(
    180deg,
    #f5d98a 0%,
    #ddb75d 58%,
    #c89b3c 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.topbar-tagline {
  margin-top: 12px;
  transform: translateX(4px);
  font-family: "Cormorant Garamond", serif;
  font-size: 0.96rem;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: rgba(255, 246, 228, 0.94);
  text-shadow:
    0 0 10px rgba(255, 240, 210, 0.10),
    0 0 24px rgba(255, 230, 180, 0.05);
}

/* SECTIONS */

.section,
.shop-section {
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
  padding: 60px 0;
}

.newsletter-wrap {
  padding-top: 0;
  margin-top: -18px;
}

.shop-section {
  padding-top: 74px;
}

.shop-section .section-title,
.shop-section .section-text {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  color: var(--gold-soft);
  font-size: 2rem;
  margin-bottom: 10px;
}

.curated-title {
  color: var(--gold-soft);
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.035em;
}

.section-text {
  color: rgba(255, 246, 228, 0.84);
  max-width: 620px;
  margin-bottom: 30px;
  transform: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.86rem;
  letter-spacing: 0.26em;
  line-height: 1.45;
  text-transform: uppercase;
}

/* PREMIUM GALLERY */

.premium-gallery {
  position: relative;
  display: grid;
  grid-template-columns: 0.36fr 0.64fr;
  gap: 14px;
  margin-top: 34px;
}

.artwork-panel,
.preview-panel,
.cart-summary {
  min-width: 0;
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.artwork-panel {
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
}

.panel-header {
  min-width: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 400;
  margin-bottom: 18px;
}

.panel-title-group {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.art-count {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(231, 201, 120, 0.35);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-soft);
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.collection-tabs {
  min-width: 0;
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.collection-tabs::-webkit-scrollbar {
  height: 6px;
}

.collection-tabs::-webkit-scrollbar-track {
  background: rgba(70, 52, 24, 0.38);
  border: 1px solid rgba(231, 201, 120, 0.08);
  border-radius: 999px;
}

.collection-tabs::-webkit-scrollbar-thumb {
  background: rgba(231, 201, 120, 0.42);
  border-radius: 999px;
}

.collection-tabs::-webkit-scrollbar-thumb:hover {
  background: rgba(231, 201, 120, 0.62);
}

.collection-tab {
  flex: 0 0 auto;
  min-width: 86px;
  padding: 9px 14px;
  border: 1px solid rgba(231, 201, 120, 0.26);
  background: rgba(8, 6, 5, 0.28);
  color: rgba(245, 239, 230, 0.72);
  font-family: "Inter", sans-serif;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
}

.collection-tab.active,
.collection-tab:hover {
  color: var(--gold-soft);
  border-color: rgba(231, 201, 120, 0.7);
}

.artwork-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.artwork-item {
  min-width: 0;
  position: relative;
  background: rgba(8, 6, 5, 0.55);
  border: 1px solid rgba(231, 201, 120, 0.1);
  overflow: hidden;
  padding: 6px 6px 0;
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
}

.artwork-item img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1 / 1.16;
  object-fit: cover;
  display: block;
}

.artwork-item div {
  padding: 12px 8px 8px;
  color: rgba(245, 239, 230, 0.92);
  font-family: "Inter", sans-serif;
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 400;
  text-align: center;
}

.artwork-item strong {
  display: block;
  padding: 0 10px 12px;
  color: var(--gold-soft);
  font-family: "Inter", sans-serif;
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.14em;
}

.gallery-note {
  margin-top: auto;
  padding: 14px 14px 0;
  font-family: "Inter", sans-serif;
  font-size: 0.66rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: rgba(245, 239, 230, 0.62);
  text-align: center;
}

.gallery-note::after {
  content: "";
  display: block;
  width: 68%;
  height: 1px;
  margin: 22px auto 24px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(231, 201, 120, 0.55),
    transparent
  );
}

.drag-hint {
  position: relative;
  margin-top: 0;
  margin-bottom: auto;
  padding: 14px;
  border: 1px dashed rgba(231, 201, 120, 0.24);
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 0.62rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(231, 201, 120, 0.78);
}

.drag-hint::before {
  display: none;
}

/* VIEW BUTTONS */

#view-large {
  padding: 10px 18px;
  border: 1px solid rgba(231, 201, 120, 0.28);
  background: transparent;
  color: var(--text);
  cursor: pointer;
}


#view-large:hover {
  color: var(--gold-soft);
  border-color: rgba(231, 201, 120, 0.7);
}

/* PREVIEW PANEL */

.preview-panel {
  padding: 18px;
}

.preview-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.preview-tabs button {
  flex: 1;
  min-width: 0;
  padding: 10px 18px;
  background: transparent;
  border: 1px solid rgba(231, 201, 120, 0.28);
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
}

.preview-tabs button.active,
.preview-tabs button:hover {
  color: var(--gold-soft);
  border-color: rgba(231, 201, 120, 0.65);
}

/* MOCKUPS */

.mockup {
  display: none;
}

.mockup.active {
  display: block;
}

.wall-mockup,
.gallery-mockup,
.room-mockup {
  position: relative;
  width: 100%;
}

.wall-bg,
.gallery-bg,
.room-bg {
  width: 100%;
  display: block;
}

.gallery-mockup {
  transform: scale(1);
  transform-origin: center;
}

/* FRAMES */

.frame,
.gallery-frame,
.room-frame {
  position: absolute;
  width: var(--frame-w);
  height: var(--frame-h);
  background: linear-gradient(145deg, #15110d, #050403);
  padding: 0.6%;
  border: 1px solid rgba(231, 201, 120, 0.35);
  box-shadow:
    0 22px 44px rgba(0, 0, 0, 0.58),
    0 6px 14px rgba(0, 0, 0, 0.42),
    inset 0 0 0 1px rgba(255, 230, 170, 0.12);
  z-index: 2;
}

.wall-mockup .frame {
  width: calc(var(--frame-w) * 1.08);
  height: calc(var(--frame-h) * 1.08);
  transform: translate(-4%, -4%);
}

.frame::after,
.gallery-frame::after,
.room-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 240, 200, 0.08),
    rgba(255, 240, 200, 0.02) 30%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 3;
}

.frame::before,
.gallery-frame::before,
.room-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 50%);
  pointer-events: none;
  z-index: 4;
}

.frame img,
.gallery-frame img,
.room-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* FRAME POSITIONS */

.gallery-frame-1 {
  top: 34%;
  left: 25%;
}

.gallery-frame-2 {
  top: 34%;
  left: 42%;
}

.gallery-frame-3 {
  top: 34%;
  left: 59%;
}

.wall-mockup .frame-1 {
  top: 37%;
  left: 26%;
}

.wall-mockup .frame-2 {
  top: 37%;
  left: 44%;
}

.wall-mockup .frame-3 {
  top: 37%;
  left: 62%;
}

.room-mockup .room-frame {
  top: 29%;
  left: 53%;
  transform: translateX(-50%);
}

/* DROP FRAMES */

.drop-frame {
  cursor: pointer;
}

.drop-placeholder {
  width: 100%;
  height: 100%;
  border: 1px dashed rgba(231, 201, 120, 0.48);
  display: grid;
  place-items: center;
  text-align: center;
  background: rgba(8, 6, 5, 0.22);
}

.drop-placeholder span {
  color: rgba(245, 239, 230, 0.52);
  font-family: "Inter", sans-serif;
  font-size: 0.48rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}

.drop-frame:hover .drop-placeholder {
  border-color: rgba(231, 201, 120, 0.85);
  background: rgba(231, 201, 120, 0.06);
}

/* FRAME ROLLOVER DELETE */

.drop-frame.has-artwork {
  transition:
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    filter 0.28s ease;
}

.drop-frame.has-artwork:hover {
  border-color: rgba(231, 201, 120, 0.72);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.62),
    0 0 18px rgba(231, 201, 120, 0.18),
    inset 0 0 0 1px rgba(255, 232, 170, 0.18);
  filter: brightness(1.04);
}

.frame-delete {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(245, 239, 230, 0.35);
  background: rgba(8, 6, 5, 0.58);
  color: rgba(245, 239, 230, 0.82);
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 20;
  opacity: 0;
  transform: scale(0.86);
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease;
}

.drop-frame.has-artwork:hover .frame-delete {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.frame-delete:hover {
  background: rgba(231, 201, 120, 0.9);
  border-color: rgba(231, 201, 120, 0.95);
  color: #120e0a;
}

/* LIGHT SYSTEM */

.wall-mockup::after,
.gallery-mockup::after,
.room-mockup::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.gallery-mockup::after {
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.12), transparent 40%),
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.18), transparent 35%),
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.18), transparent 35%);
}

/* CART SUMMARY */

.cart-summary {
  grid-column: 1 / -1;
  margin-top: 26px;
  padding: 24px 36px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.cart-button {
  width: 300px;
  min-width: 300px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(#d9a93c, #b87d18);
  color: #120e0a;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  text-align: center;
  border: 1px solid rgba(231, 201, 120, 0.65);
  cursor: pointer;
}

.cart-button-disabled {
  pointer-events: none;
  cursor: default;
}

.inquiry-copy {
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(245, 239, 230, 0.86);
}


/* OVERLAY PREVIEW */

.overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  display: none;
  z-index: 80;
}

.overlay.active {
  display: block;
}

.overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 4, 3, 0.92);
}

.overlay-content {
  position: relative;
  width: min(var(--max), calc(100% - 56px), 132vh);
  margin: 0 auto;
  padding-top: 18px;
  z-index: 2;
}

.overlay-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.overlay-tabs {
  display: flex;
  gap: 10px;
}

.overlay-tab {
  padding: 8px 16px;
  border: 1px solid rgba(231, 201, 120, 0.4);
  background: transparent;
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
}

.overlay-tab.active {
  color: var(--gold-soft);
  border-color: rgba(231, 201, 120, 0.8);
}

#overlay-close {
  background: transparent;
  border: none;
  font-size: 20px;
  color: var(--text);
  cursor: pointer;
}

.overlay-stage {
  width: 100%;
  max-height: none;
  overflow: visible;
  box-shadow: none;
}

.overlay-stage .mockup {
  display: block;
  width: 100%;
}

.overlay-stage .wall-bg,
.overlay-stage .gallery-bg,
.overlay-stage .room-bg {
  width: 100%;
  display: block;
}

.overlay-stage .gallery-mockup {
  transform: none;
}

.overlay-stage .mockup img {
  transition: transform 7s ease;
  transform-origin: center center;
}

.overlay-stage:hover .mockup img {
  transform: scale(1.06);
}

/* ENLARGE ARTWORK */

.overlay.artwork-mode .overlay-topbar {
  justify-content: flex-end;
}

.overlay.artwork-mode .overlay-tabs {
  display: none;
}

.overlay-artwork {
  width: min(var(--max), calc(100% - 56px));
  min-height: calc(100vh - 140px);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay-artwork::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 520px;
  background: radial-gradient(
    circle,
    rgba(231, 201, 120, 0.18),
    rgba(231, 201, 120, 0.06) 40%,
    transparent 70%
  );
  filter: blur(28px);
  z-index: 1;
}

.overlay-artwork img {
  position: relative;
  z-index: 2;
  max-width: min(90vw, 620px);
  max-height: calc(100vh - 160px);
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.85),
    0 10px 30px rgba(0, 0, 0, 0.6);
  filter: contrast(1.04) brightness(1.02);
}

/* NEWSLETTER */

.newsletter-wrap .section-title {
  color: rgba(255, 246, 228, 0.94);
  font-size: 1.2rem;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  min-width: 260px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: rgba(10, 8, 7, 0.45);
  color: var(--text);
}

.newsletter-form button {
  padding: 12px 18px;
  border: 1px solid rgba(231, 201, 120, 0.6);
  background: transparent;
  color: var(--gold-soft);
  cursor: pointer;
}

/* CONTACT ENTRY */

.contact-entry {
  width: 100%;
  min-height: auto;
  margin-top: -12px;
  padding: 24px 36px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  background: rgba(10, 8, 7, 0.38);
  border: 1px solid rgba(231, 201, 120, 0.16);
}

.private-list-copy {
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(245, 239, 230, 0.86);
}

.private-list-form {
  width: min(100%, 520px);
}

.contact-entry .newsletter-form {
  width: min(100%, 520px);
  display: flex;
  gap: 0;
}

.contact-entry .newsletter-form input {
  flex: 1;
  min-width: 0;
  height: 56px;
  border: 1px solid rgba(231, 201, 120, 0.28);
  background: rgba(5, 4, 3, 0.38);
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  padding: 0 22px;
  line-height: 56px;
}

.contact-entry .newsletter-form button {
  width: 300px;
  min-width: 300px;
  height: 56px;
  border: 1px solid rgba(231, 201, 120, 0.65);
  background: linear-gradient(#d9a93c, #b87d18);
  color: #120e0a;
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  cursor: pointer;
}

/* FOOTER */

.footer {
  padding: 30px 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
  color: var(--muted);
  font-family: "Playfair Display", serif;
  font-size: 0.88rem;
  letter-spacing: 0.025em;
}

.footer-signature {
  color: var(--muted);
}

.footer-nav {
  display: flex;
  gap: 20px;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .premium-gallery {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    grid-template-columns: 1fr 1fr;
  }

  .cart-button {
    grid-column: 1 / -1;
    text-align: center;
  }
}

@media (max-width: 768px) {

  .section-text {
    letter-spacing: 0.18em;
    line-height: 1.6;
    transform: none;
  }

  .cart-summary {
    grid-template-columns: 1fr;
    padding: 34px 28px;
  }

  .cart-button {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .gallery-note {
    margin-top: 32px;
  }

  .topbar {
    grid-template-columns: 64px 1fr 64px;
    align-items: center;
    gap: 8px;
  }

  .brand-logo {
    width: 64px;
    height: 64px;
    transform: translateX(-4px);
  }

  .topbar-center {
    transform: translateY(0);
  }

  .topbar-brand-name {
    font-size: 2rem;
  }

  .topbar-tagline {
    margin-top: 6px;
    font-size: 0.74rem;
    letter-spacing: 0.22em;
    transform: none;
  }

  .topbar,
  .section,
  .shop-section,
  .footer {
    width: min(var(--max), calc(100% - 32px));
  }

  .nav {
    display: none;
  }

  .section,
  .shop-section {
    padding: 44px 0;
  }

  .panel-mode-nav {
    overflow-x: hidden;
    gap: 24px;
  }

  .panel-mode {
    flex: 0 0 auto;
  }

  .artwork-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .artwork-grid:not(.standalone-mode) .artwork-item:nth-child(3):last-child {
    grid-column: 1 / -1;
    width: calc(50% - 7px);
    justify-self: center;
  }

  .preview-tabs {
    flex-wrap: wrap;
  }

  .preview-tabs button {
    min-width: calc(50% - 4px);
  }

  .newsletter-form,
  .footer {
    flex-direction: column;
  }

  .newsletter-form input {
    min-width: 0;
    width: 100%;
  }

  .footer {
    gap: 16px;
  }

  .contact-entry {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 44px 36px;
    overflow: hidden;
  }

  .private-list-form,
  .contact-entry .newsletter-form {
    width: 100%;
  }

  .contact-entry .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }

  .contact-entry .newsletter-form button {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .inquiry-copy,
  .private-list-copy {
    white-space: normal;
    line-height: 1.6;
  }

}

/* FRAME VISUEL PROPRE (sans casser layout) */

.artwork-item {
  position: relative;
}

/* cadre fin invisible par défaut */
.artwork-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(231, 201, 120, 0);
  pointer-events: none;
  transition: border 0.25s ease, box-shadow 0.25s ease;
}

/* HOVER */
.artwork-item:hover::after {
  border: 1px solid rgba(231, 201, 120, 0.55);
}

/* SELECTED */
.artwork-item.selected::after {
  border: 1px solid rgba(231, 201, 120, 0.85);
  box-shadow: 0 0 14px rgba(231, 201, 120, 0.25);
}

/* ARTWORK ZOOM — PREMIUM */

.artwork-zoom {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(231, 201, 120, 0.42);
  background: rgba(12, 10, 8, 0.72);
  color: rgba(231, 201, 120, 0.88);
  font-family: "Inter", sans-serif;
  font-size: 1.45rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  z-index: 8;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}

.artwork-item:hover .artwork-zoom {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.artwork-zoom:hover {
  background: rgba(231, 201, 120, 0.92);
  color: #120e0a;
  border-color: rgba(231, 201, 120, 0.95);
}

/* OVERLAY CINEMATIC OPEN */

.overlay {
  opacity: 0;
  transition: opacity 0.35s ease;
}

.overlay.active {
  opacity: 1;
}

.overlay-content {
  transform: translateY(38px) scale(0.94);
  opacity: 0;
  transition:
  transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
  opacity 0.55s ease;
}

.overlay.active .overlay-content {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* BASIC IMAGE PROTECTION */

body {
  -webkit-user-select: none;
  user-select: none;
}

img {
  -webkit-user-drag: none;
  user-drag: none;
}

/* SENSITIVE MODES PROTECTION */

.overlay-artwork img,
.overlay-stage img {
  filter:
    contrast(1.02)
    brightness(0.98)
    saturate(0.96);
}

/* léger voile anti-screenshot */
.overlay-artwork::after,
.overlay-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,0.012) 0px,
      rgba(255,255,255,0.012) 1px,
      transparent 1px,
      transparent 3px
    );
  mix-blend-mode: soft-light;
  opacity: 0.32;
  z-index: 30;
}

/* TOP CART */

.top-cart-indicator {
  position: relative;
  justify-self: end;
  width: 52px;
  height: 52px;
  transform: translate(0, 24px);
  display: grid;
  place-items: center;
  pointer-events: none;
}

.top-cart-indicator::before {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(231, 201, 120, 0.96);
}

.top-cart-indicator::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(8, 6, 5, 0.92);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
  .top-cart-indicator {
    transform: translateY(-6px);
  }
}

/* WORK MODES — COLLECTIONS / STANDALONE */

.panel-mode-nav {
  width: 100%;
  justify-content: space-between;
  display: flex;
  align-items: center;
}

.panel-mode {
  display: flex;
  align-items: center;
  gap: 12px;
  border: none;
  background: transparent;
  color: rgba(245, 239, 230, 0.64);
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.panel-mode.active,
.panel-mode:hover {
  color: var(--gold-soft);
}

.panel-mode.active .art-count {
  border-color: rgba(231, 201, 120, 0.7);
}

.standalone-placeholder {
  grid-column: 1 / -1;
  min-height: 260px;
  border: 1px dashed rgba(231, 201, 120, 0.22);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 34px 24px;
  background: rgba(8, 6, 5, 0.24);
}

.standalone-placeholder-title {
  color: var(--gold-soft);
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.standalone-placeholder-text {
  color: rgba(245, 239, 230, 0.58);
  font-family: "Inter", sans-serif;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  line-height: 1.7;
}

/* STANDALONE TABS */

.standalone-tabs {
  min-width: 0;
  display: none;
  gap: 10px;
  margin-bottom: 18px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.standalone-tabs::-webkit-scrollbar {
  height: 6px;
}

.standalone-tabs::-webkit-scrollbar-track {
  background: rgba(70, 52, 24, 0.38);
  border: 1px solid rgba(231, 201, 120, 0.08);
  border-radius: 999px;
}

.standalone-tabs::-webkit-scrollbar-thumb {
  background: rgba(231, 201, 120, 0.42);
  border-radius: 999px;
}

.standalone-tabs::-webkit-scrollbar-thumb:hover {
  background: rgba(231, 201, 120, 0.62);
}

.standalone-tab {
  flex: 0 0 auto;
  min-width: 140px;
  padding: 9px 14px;
  border: 1px solid rgba(231, 201, 120, 0.26);
  background: rgba(8, 6, 5, 0.28);
  color: rgba(245, 239, 230, 0.72);
  font-family: "Inter", sans-serif;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
}

.standalone-tab.active,
.standalone-tab:hover {
  color: var(--gold-soft);
  border-color: rgba(231, 201, 120, 0.7);
}

/* STANDALONE ARTWORK */

.artwork-grid.standalone-mode {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 14px;
}

.artwork-grid.standalone-mode .artwork-item {
  width: min(100%, 360px);
  grid-column: auto;
}

@media (max-width: 768px) {
  .artwork-grid.standalone-mode .artwork-item {
    width: min(78vw, 280px);
  }
}

@media (max-width: 420px) {
  .artwork-grid.standalone-mode .artwork-item {
    width: min(100%, 260px);
  }
}

/* ACQUISITION LAYER */

.acquisition-layer {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 42px;
  background: rgba(5, 4, 3, 0.88);
}

.acquisition-layer[hidden] {
  display: none;
}

.acquisition-panel {
  position: relative;
  width: min(1180px, 100%);
  max-height: calc(100vh - 84px);
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(8, 7, 6, 0.96);
  border: 1px solid rgba(231, 201, 120, 0.28);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.72);
}

.acquisition-close {
  position: absolute;
  top: 18px;
  right: 24px;
  z-index: 10;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(231, 201, 120, 0.34);
  border-radius: 50%;
  background: rgba(5, 4, 3, 0.18);
  color: rgba(231, 201, 120, 0.78);
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    border-color 0.25s ease,
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.acquisition-close:hover {
  border-color: rgba(231, 201, 120, 0.68);
  color: rgba(245, 239, 230, 0.92);
  background: rgba(231, 201, 120, 0.06);
  transform: scale(1.04);
}

.acquisition-column {
  padding: 48px;
}

.acquisition-left {
  border-right: 1px solid rgba(231, 201, 120, 0.16);
}

.acquisition-step {
  margin-bottom: 34px;
}

.acquisition-step-title,
.acquisition-count,
.acquisition-label {
  font-family: "Inter", sans-serif;
  color: var(--gold-soft);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 400;
}

.acquisition-step-title span,
.acquisition-label span {
  color: rgba(255, 244, 224, 0.64);
}

.acquisition-step-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.acquisition-note,
.acquisition-help {
  margin-top: 16px;
  margin-bottom: 26px;
  color: rgba(255, 244, 224, 0.82);
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  line-height: 1.55;
}

.acquisition-options {
  border: 1px solid rgba(231, 201, 120, 0.18);
}

.acquisition-textarea,
.acquisition-label input {
  width: 100%;
  margin-top: 14px;
  border: 1px solid rgba(231, 201, 120, 0.18);
  background: rgba(5, 4, 3, 0.42);
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  padding: 18px 20px;
  outline: none;
}

.acquisition-textarea {
  min-height: 265px;
  resize: none;
}

.acquisition-label {
  display: block;
  margin-top: 22px;
}

.acquisition-submit {
  width: 100%;
  min-width: 0;
  margin-top: 28px;
}

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

  .acquisition-panel {
    grid-template-columns: 1fr;
  }

  .acquisition-left {
    border-right: none;
    border-bottom: 1px solid rgba(231, 201, 120, 0.16);
  }

  .acquisition-column {
    padding: 34px 26px;
  }
}

/* =========================
   LUXURY SCROLLBAR
========================= */

.acquisition-panel {
  scrollbar-width: thin;
  scrollbar-color: rgba(231, 201, 120, 0.38) transparent;
}

.acquisition-panel::-webkit-scrollbar {
  width: 8px;
}

.acquisition-panel::-webkit-scrollbar-track {
  background: transparent;
}

.acquisition-panel::-webkit-scrollbar-thumb {
  background: rgba(231, 201, 120, 0.22);
  border-radius: 999px;
  transition: background 0.25s ease;
}

.acquisition-panel::-webkit-scrollbar-thumb:hover {
  background: rgba(231, 201, 120, 0.42);
}

/* ACQUISITION INTERACTION STATES */

.acquisition-close,
.acquisition-submit {
  cursor: pointer;
}

/* =========================
   ACQUISITION OPTIONS
========================= */

.acquisition-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: none;
}

.acquisition-selected-row {
  width: 100%;
  min-height: 58px;
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  border: 1px solid rgba(231, 201, 120, 0.18);
  background: rgba(5, 4, 3, 0.26);
}

.acquisition-select-row {
  position: relative;
  width: 100%;
  min-height: 58px;
  display: grid;
  grid-template-columns: 1fr 42px;
  align-items: center;
  border: 1px solid rgba(231, 201, 120, 0.18);
  background: rgba(5, 4, 3, 0.26);
  cursor: pointer;
}

.acquisition-select {
  grid-column: 1 / -1;
  width: 100%;
  height: 58px;
  padding: 0 42px 0 18px;
  border: 0;
  background: transparent !important;
  color: rgba(245, 239, 230, 0.68);
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  z-index: 2;
}

.acquisition-select-row::after {
  content: "▾";
  position: absolute;
  right: 0;
  top: 0;
  width: 42px;
  height: 58px;
  display: grid;
  place-items: center;
  color: rgba(231, 201, 120, 0.72);
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  pointer-events: none;
  z-index: 3;
}

.acquisition-select-row:hover {
  border-color: rgba(231, 201, 120, 0.38);
  background: rgba(231, 201, 120, 0.035);
}

.acquisition-select-row:hover::after {
  color: rgba(231, 201, 120, 0.95);
}

.acquisition-select option {
  background: #080706;
  color: #f5efe6;
}

.acquisition-selected-check {
  display: grid;
  place-items: center;
  color: var(--gold-soft);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
}

.acquisition-selected-title {
  padding-left: 0;
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 239, 230, 0.86);
}

.acquisition-remove {
  border: none;
  background: transparent;
  color: rgba(231, 201, 120, 0.72);
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  cursor: pointer;
}

.acquisition-remove:hover {
  color: rgba(245, 239, 230, 0.95);
}

.acquisition-textarea,
.acquisition-label input,
.acquisition-select {
  background:
    linear-gradient(
      180deg,
      rgba(18, 15, 12, 0.82),
      rgba(8, 6, 5, 0.88)
    );
  border-color: rgba(231, 201, 120, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.acquisition-textarea::placeholder,
.acquisition-label input::placeholder {
  color: rgba(255, 244, 224, 0.42);
}

.acquisition-textarea:focus,
.acquisition-label input:focus,
.acquisition-select:focus {
  border-color: rgba(231, 201, 120, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 0 0 1px rgba(231, 201, 120, 0.08),
    0 0 24px rgba(231, 201, 120, 0.055);
}

@media (max-width: 900px) {

  .acquisition-layer {
    padding: 20px;
  }

  .acquisition-panel {
    grid-template-columns: 1fr;
    width: 100%;
    max-height: calc(100vh - 40px);
    overflow-x: hidden;
    padding-top: 66px;
  }

  .acquisition-left {
    border-right: none;
    border-bottom: 1px solid rgba(231, 201, 120, 0.16);
  }

  .acquisition-column {
    padding: 28px 26px;
  }

  .acquisition-close {
    top: 18px;
    right: 18px;
  }

  .acquisition-step-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 24px;
  }

  .acquisition-count {
    justify-self: end;
    text-align: right;
    white-space: nowrap;
  }

}

@media (max-width: 520px) {

  .acquisition-layer {
    padding: 10px;
  }

  .acquisition-panel {
    max-height: calc(100vh - 20px);
    padding-top: 62px;
  }

  .acquisition-column {
    padding: 26px 18px;
  }

  .acquisition-step-head {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .acquisition-count {
    justify-self: start;
    text-align: left;
  }

}

@media (max-width: 420px) {

  .topbar,
  .section,
  .shop-section,
  .footer {
    width: min(var(--max), calc(100% - 24px));
  }

  .topbar {
    grid-template-columns: 52px 1fr 52px;
    padding-top: 18px;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
    transform: translateX(-3px);
  }

  .top-cart-indicator {
    width: 44px;
    height: 44px;
    transform: translateY(3px);
  }

  .top-cart-indicator::before {
    width: 36px;
    height: 36px;
  }

  .topbar-brand-name {
    font-size: 1.72rem;
    line-height: 1.12;
  }

  .topbar-tagline {
    margin-top: 8px;
    font-size: 0.66rem;
    letter-spacing: 0.18em;
  }

  .shop-section {
    padding-top: 48px;
  }

  .curated-title {
    font-size: 1.55rem;
    line-height: 1.18;
  }

  .section-text {
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    line-height: 1.55;
  }

  .cart-summary,
  .contact-entry {
    justify-items: center;
  }

  .inquiry-copy,
  .private-list-copy {
    width: min(100%, 280px);
    text-align: center;
  }

  .cart-button,
  .private-list-form,
  .contact-entry .newsletter-form,
  .contact-entry .newsletter-form input,
  .contact-entry .newsletter-form button {
    width: min(100%, 280px);
    min-width: 0;
    max-width: 280px;
  }

.cart-button,
  .contact-entry .newsletter-form input,
  .contact-entry .newsletter-form button {
    margin-left: auto;
    margin-right: auto;
  }

  .preview-tabs button {
    padding: 12px 8px;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-indent: 0.08em;
  }

}

.overlay-topbar {
  position: relative;
  z-index: 60;
}

#overlay-close {
  position: relative;
  z-index: 70;
}

.overlay-artwork::before {
  pointer-events: none;
}

.overlay-topbar {
  position: relative;
  z-index: 60;
}

#overlay-close {
  position: relative;
  z-index: 70;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
}

@media (max-width: 520px) {

  .overlay-content {
    width: min(100% - 28px, var(--max));
    padding-top: 14px;
  }

  .overlay-topbar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 14px;
  }

  #overlay-close {
    justify-self: end;
  }

  .overlay-tabs {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .overlay-tab {
    width: 100%;
    padding: 10px 8px;
    text-align: center;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

}

@media (max-width: 520px) {

  .drop-placeholder span {
    display: none;
  }

}

/* =========================
   MOBILE EXPERIENCE NOTICE
========================= */

.mobile-experience-notice {
  display: none;
}

@media (max-width: 768px) {

  .mobile-experience-notice {
    display: block;

    margin: 0 auto 24px;

    text-align: center;

    font-family: "Inter", sans-serif;
    font-size: 0.58rem;
    font-weight: 300;

    letter-spacing: 0.18em;
    line-height: 1.8;
    text-transform: uppercase;

    color: rgba(232, 232, 232, 0.42);

    max-width: 280px;
  }

}

/* =========================
   PREVIEW EXPERIENCE — IMMERSIVE MODE
========================= */

@media (min-width: 769px) {

  .overlay-stage {
    max-height: calc(100vh - 128px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .overlay-stage .mockup {
    width: 100%;
    transform-origin: center center;
  }

  .overlay-stage .gallery-mockup {
    transform: scale(1.32);
  }

  .overlay-stage .wall-mockup {
    transform: scale(1.18);
  }

  .overlay-stage .room-mockup {
    transform: scale(1.40);
  }

  .overlay-stage:hover .mockup img {
    transform: none;
  }

}

/* =========================
   COLLECTIONS V2 — SINGLE ARTWORK VIEW
========================= */

.artwork-grid.collection-v2-mode {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 16px;
}

.artwork-grid.collection-v2-mode .artwork-item {
  width: min(100%, 360px);
  grid-column: auto;
}

.collection-artwork-nav {
  width: min(100%, 360px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.collection-artwork-tab {
  min-width: 0;
  padding: 9px 8px;
  border: 1px solid rgba(231, 201, 120, 0.22);
  background: rgba(8, 6, 5, 0.22);
  color: rgba(245, 239, 230, 0.62);
  font-family: "Inter", sans-serif;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  cursor: pointer;
}

.collection-artwork-tab.active,
.collection-artwork-tab:hover {
  color: var(--gold-soft);
  border-color: rgba(231, 201, 120, 0.68);
}

@media (max-width: 768px) {
  .artwork-grid.collection-v2-mode .artwork-item,
  .collection-artwork-nav {
    width: min(78vw, 280px);
  }
}

@media (max-width: 420px) {
  .artwork-grid.collection-v2-mode .artwork-item,
  .collection-artwork-nav {
    width: min(100%, 260px);
  }
}

/* =========================
   LEFT PANEL — FINAL SPACING
========================= */

/* Collections : référence validée */
.collection-artwork-nav {
  margin-bottom: 24px;
}

/* Standalone : zone interne alignée sur Collections */
.artwork-grid.standalone-mode {
  align-content: start;
}

/* On neutralise l’ancienne compensation par marge */
.artwork-grid.standalone-mode .artwork-item {
  margin-bottom: 0;
}

/* Standalone label aligned with Collections navigation */

.standalone-artwork-label {
  margin-bottom: 24px;
}

.standalone-artwork-label .collection-artwork-tab {
  cursor: default;
}

.standalone-artwork-label {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.standalone-artwork-label .collection-artwork-tab {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.preview-curation-note {
  margin: 65px auto 10px;
  width: 100%;

  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content minmax(0, 1fr);
  align-items: center;
  column-gap: 34px;

  font-family: "Inter", sans-serif;
  font-size: 0.62rem;
  font-weight: 400;

  text-transform: uppercase;
  letter-spacing: 0.42em;

  color: rgba(231, 201, 120, 0.78);
}

.preview-curation-note::before,
.preview-curation-note::after {
  content: "";
  width: 100%;
  height: 1px;
  background: rgba(231, 201, 120, 0.35);
}

@media (max-width: 768px) {
  .preview-curation-note {
    display: block;
    width: 100%;
    margin: 34px auto 10px;
    text-align: center;
    font-size: 0.58rem;
    letter-spacing: 0.18em;
  }

  .preview-curation-note span {
    display: block;
    width: 100%;
    text-align: center;
    white-space: nowrap;
  }

  .preview-curation-note::before,
  .preview-curation-note::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .artwork-grid.standalone-mode .artwork-item,
  .artwork-grid.standalone-mode .standalone-artwork-label {
    width: min(78vw, 280px);
  }
}

@media (max-width: 768px) {
  .artwork-grid.collection-v2-mode .artwork-item,
  .artwork-grid.collection-v2-mode .collection-artwork-nav,
  .artwork-grid.standalone-mode .artwork-item,
  .artwork-grid.standalone-mode .collection-artwork-nav {
    width: min(100%, 260px);
  }
}

@media (max-width: 360px) {
  .panel-mode-nav {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    overflow-x: hidden;
  }

  .panel-mode {
    justify-content: center;
    gap: 10px;
  }
}

@media (max-width: 360px) {
  .collection-artwork-nav {
    width: min(100%, 260px);
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .collection-artwork-tab {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .artwork-item,
  .artwork-item img {
    -webkit-touch-callout: none;
    touch-action: manipulation;
  }
}

/* =========================
   MOBILE LANDSCAPE FIX
   Z Fold / iPhone horizontal
========================= */

@media (orientation: landscape) and (max-height: 520px) and (max-width: 950px) {

  .cart-summary,
  .contact-entry {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 22px;
    padding: 32px 28px;
  }

  .inquiry-copy,
  .private-list-copy {
    width: min(100%, 320px);
    text-align: center;
    white-space: normal;
    line-height: 1.55;
  }

  .cart-button,
  .private-list-form,
  .contact-entry .newsletter-form,
  .contact-entry .newsletter-form input,
  .contact-entry .newsletter-form button {
    width: min(100%, 360px);
    min-width: 0;
    max-width: 360px;
  }

  .contact-entry .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }
}
