/* ==========================================================================
   SUBEREA ATELIER — STYLESHEET
   Shared across all pages. Edit with care.
   ========================================================================== */

:root {
  --cream: #F5F2EC;
  --cream-deep: #EDE9DF;
  --taupe: #A89D87;
  --taupe-light: #C9C2B0;
  --taupe-pale: #E2DDD0;
  --ink: #1E1E1C;
  --stone: #595855;
  --stone-light: #8E8C87;
  --sage: #8A9B85;
  --sage-light: #B5C0AE;
  --sage-pale: #D6DCD1;
  --border: #D8D3C5;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body.menu-open { overflow: hidden; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Onest', system-ui, sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  width: 100%;
}

/* ============================== TOP BAR ============================== */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 40px;
  background: transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}
.topbar.scrolled {
  background: rgba(245, 242, 236, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.wordmark {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 300;
  font-size: 24px; font-variation-settings: "SOFT" 100, "opsz" 144;
  letter-spacing: 0.01em; color: var(--ink); text-decoration: none;
  z-index: 220; transition: color 0.3s ease;
}
.menu-btn {
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; gap: 5px;
  padding: 10px 6px; z-index: 220; position: relative;
}
.menu-btn span {
  display: block; width: 28px; height: 1.5px; background: var(--ink);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
}
.menu-btn.open span:first-child { transform: translateY(6.5px) rotate(45deg); background: var(--cream); }
.menu-btn.open span:last-child { transform: translateY(-6.5px) rotate(-45deg); background: var(--cream); }
.wordmark.menu-open-state { color: var(--cream); }

/* ============================== FULLSCREEN MENU ============================== */
.fullscreen-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--ink); z-index: 150;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 80px;
  opacity: 0; visibility: hidden; transform: translateY(-20px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0s linear 0.5s;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.fullscreen-menu.active {
  opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0s linear 0s;
}
.menu-inner {
  display: grid; grid-template-columns: 2fr 1fr; gap: 80px;
  max-width: 1400px; margin: 0 auto; width: 100%;
}
.menu-nav { display: flex; flex-direction: column; gap: 12px; }
.menu-nav a {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 300;
  font-size: 88px; font-variation-settings: "SOFT" 100, "opsz" 144;
  letter-spacing: 0.005em; line-height: 1;
  color: var(--cream); text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative; width: max-content;
  opacity: 0; transform: translateY(20px);
}
.fullscreen-menu.active .menu-nav a {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, color 0.3s ease;
}
.fullscreen-menu.active .menu-nav a:nth-child(1) { transition-delay: 0.1s; }
.fullscreen-menu.active .menu-nav a:nth-child(2) { transition-delay: 0.18s; }
.fullscreen-menu.active .menu-nav a:nth-child(3) { transition-delay: 0.26s; }
.menu-nav a:hover { color: var(--taupe-light); transform: translateX(8px); }
.menu-nav a.active { color: var(--taupe-light); }
.menu-nav a .marker {
  font-family: 'Onest', sans-serif; font-weight: 500; font-size: 11px;
  letter-spacing: 0.22em; color: var(--stone-light);
  vertical-align: super; margin-right: 14px; font-style: normal;
}
.menu-side {
  display: flex; flex-direction: column; justify-content: space-between;
  align-items: flex-start; padding-top: 16px;
  border-left: 1px solid rgba(245, 242, 236, 0.12);
  padding-left: 60px;
}
.menu-side-block {
  margin-bottom: 40px;
  opacity: 0; transform: translateY(20px);
}
.fullscreen-menu.active .menu-side-block {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.5s ease 0.35s, transform 0.5s ease 0.35s;
}
.menu-side-label {
  font-family: 'Onest', sans-serif; font-weight: 500; font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--stone-light); margin-bottom: 12px; display: block;
}
.menu-side-content {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 300;
  font-size: 18px; font-variation-settings: "SOFT" 100, "opsz" 36;
  line-height: 1.5; color: var(--cream);
}
.menu-side-content.small { font-size: 14px; color: var(--taupe-light); }
.menu-side-content a {
  color: var(--cream); text-decoration: none;
  border-bottom: 1px solid rgba(245, 242, 236, 0.3);
  transition: border-color 0.3s ease;
}
.menu-side-content a:hover { border-bottom-color: var(--cream); }
.menu-lang {
  display: flex; gap: 8px; align-items: center;
  font-family: 'Onest', sans-serif; font-weight: 500; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  opacity: 0; transform: translateY(20px);
}
.fullscreen-menu.active .menu-lang {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.5s ease 0.45s, transform 0.5s ease 0.45s;
}
.menu-lang button {
  background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: inherit; letter-spacing: inherit;
  font-weight: inherit; color: var(--stone-light);
  padding: 8px 6px; transition: color 0.3s ease;
  line-height: 1;
}
.menu-lang button.active { color: var(--cream); }
.menu-lang .sep { color: var(--stone-light); line-height: 1; }
.menu-bottom-strip {
  position: absolute;
  bottom: 32px; left: 80px; right: 80px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Onest', sans-serif; font-weight: 500; font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--stone-light); opacity: 0;
}
.fullscreen-menu.active .menu-bottom-strip {
  opacity: 1; transition: opacity 0.5s ease 0.5s;
}
.close-hint-desktop { display: inline; }
.close-hint-mobile { display: none; }

/* ============================== HERO (PRODUCT PAGE) ============================== */
.hero {
  position: relative; width: 100%; height: 100vh;
  background: var(--cream-deep);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; cursor: none;
}
.hero-content {
  position: relative; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-content.fading { opacity: 0; }
.edition-tag {
  position: absolute; top: 100px; left: 48px;
  font-family: 'Onest', sans-serif; font-weight: 500; font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--stone-light); z-index: 5; pointer-events: none;
}
.edition-tag .year { color: var(--ink); }
.hero-name {
  position: absolute; bottom: 80px; left: 48px;
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 300;
  font-size: 160px; font-variation-settings: "SOFT" 100, "opsz" 144;
  letter-spacing: 0.005em; line-height: 0.85;
  color: var(--ink); z-index: 4; pointer-events: none; opacity: 0.92;
}
.scroll-cue {
  position: absolute; bottom: 76px; right: 48px;
  display: flex; align-items: center; gap: 12px;
  font-family: 'Onest', sans-serif; font-weight: 500; font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--stone-light); z-index: 5; pointer-events: none;
}
.scroll-cue::after { content: '↓'; font-size: 14px; animation: bounce 2.2s ease-in-out infinite; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

/* ============================== PRODUCT IMAGES ============================== */
/* Real product photography via <img> tags. WebP format preferred. */
.product-image {
  max-width: min(48vw, 580px);
  max-height: 72vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 40px 80px rgba(30, 30, 28, 0.15));
  user-select: none;
  -webkit-user-drag: none;
}

/* ============================== PAGE TRANSITION SWEEP ============================== */
/*
 * Directional dark sweep — a single ink-coloured panel travels across the
 * screen to cover, swap, and uncover the product. Direction encodes meaning:
 *   "next"     → sweep enters from RIGHT, exits to the LEFT
 *   "previous" → sweep enters from LEFT,  exits to the RIGHT
 *
 * Total duration ~900ms (covers half + holds briefly + uncovers half).
 * The "holding" frames are very short so it doesn't read as a load screen.
 */
.page-sweep {
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100%; height: 100vh; height: 100dvh;
  background: var(--ink);
  z-index: 500;
  pointer-events: none;
  transform: translateX(100%); /* start off-screen right */
  will-change: transform;
}

/* Next direction: enter right → cover → exit left */
.page-sweep.sweep-next-in {
  animation: sweepNextIn 0.45s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}
.page-sweep.sweep-next-out {
  animation: sweepNextOut 0.45s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}

/* Previous direction: enter left → cover → exit right */
.page-sweep.sweep-prev-in {
  animation: sweepPrevIn 0.45s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}
.page-sweep.sweep-prev-out {
  animation: sweepPrevOut 0.45s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}

@keyframes sweepNextIn {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}
@keyframes sweepNextOut {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}
@keyframes sweepPrevIn {
  from { transform: translateX(-100%); }
  to   { transform: translateX(0); }
}
@keyframes sweepPrevOut {
  from { transform: translateX(0); }
  to   { transform: translateX(100%); }
}

/* ============================== CUSTOM CURSOR (SITE-WIDE) ============================== */
/*
 * Three states:
 *   default     — small ink dot, follows the mouse everywhere
 *   hover-link  — medium soft circle, when over interactive elements
 *   visible     — full 80px circle with arrow + label, on hero zones only
 *
 * On touch devices (no hover capability), the cursor is hidden and native
 * pointers take over. Text inputs also revert to the native I-beam.
 */
.cursor-arrow {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  z-index: 1000;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.3s ease,
              opacity 0.2s ease;
}

/* Active state — set after first mousemove so cursor doesn't flash at 0,0 on load */
.cursor-arrow.active { opacity: 1; }

/* Hidden temporarily (over text inputs, off-screen) */
.cursor-arrow.hidden { opacity: 0 !important; }

/* Medium state — over interactive elements (links, buttons) */
.cursor-arrow.hover-link {
  width: 44px;
  height: 44px;
  background: rgba(30, 30, 28, 0.12);
}

/* Large state — over hero navigation zones */
.cursor-arrow.visible {
  width: 80px;
  height: 80px;
  background: rgba(30, 30, 28, 0.92);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Disabled state — at first or last product, sweeping the "dead" side */
.cursor-arrow.disabled {
  background: rgba(89, 88, 85, 0.85);
}
.cursor-arrow.disabled svg { opacity: 0.4; }

/* Inverted variant — when menu is open (dark background) */
.cursor-arrow.inverted {
  background: var(--cream);
}
.cursor-arrow.inverted.hover-link {
  background: rgba(245, 242, 236, 0.15);
}

/* Arrow icon — only visible in the large hero-zone state */
.cursor-arrow svg {
  width: 24px; height: 24px;
  stroke: var(--cream); stroke-width: 1.2; fill: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.cursor-arrow.visible svg { opacity: 1; }

/* Label below the arrow — only visible in the large hero-zone state */
.cursor-arrow .label {
  position: absolute;
  bottom: -28px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Onest', sans-serif; font-weight: 500; font-size: 9px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone-light);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.25s ease 0.1s;
}
.cursor-arrow.visible .label { opacity: 1; }

/* Touch devices — no custom cursor, restore native pointers */
@media (hover: none) {
  .cursor-arrow { display: none; }
}

/* Native cursor handling: hide on hover-capable devices,
 * but keep I-beam on text inputs */
@media (hover: hover) {
  html, body { cursor: none; }
  a, button, [role="button"], label, summary { cursor: none; }
  input, textarea, select, [contenteditable] { cursor: text; }
}
.hero-zone { position: absolute; top: 0; bottom: 0; width: 50%; z-index: 10; }
.hero-zone.prev { left: 0; }
.hero-zone.next { right: 0; }
.hero-zone.disabled { cursor: not-allowed; }

/* ============================== METRO (PRODUCT DETAIL SECTION) ============================== */
.metro {
  background: var(--cream); padding: 100px 40px 80px;
  border-top: 1px solid var(--border);
}
.metro-inner {
  max-width: 1500px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 80px; align-items: start;
}
.metro-content { transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.metro-content.fading { opacity: 0; }
.shots { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.shot { background: var(--cream-deep); border: 1px solid var(--border); position: relative; overflow: hidden; }
.shot-image {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.shot:hover .shot-image {
  transform: scale(1.02);
}
.shot::after {
  content: attr(data-n); position: absolute; top: 12px; left: 12px;
  font-family: 'Onest', sans-serif; font-size: 9px; font-weight: 500;
  letter-spacing: 0.22em; color: var(--cream); z-index: 2;
  text-shadow: 0 1px 4px rgba(30, 30, 28, 0.4);
}
.shot-1 { grid-column: span 4; aspect-ratio: 4 / 3; }
.shot-2 { grid-column: span 2; aspect-ratio: 2 / 3; }
.shot-3 { grid-column: span 2; aspect-ratio: 1 / 1; }
.shot-4 { grid-column: span 4; aspect-ratio: 2 / 1; }
.shot-5 { grid-column: span 6; aspect-ratio: 16 / 9; }

.info-panel { position: sticky; top: 100px; padding: 0; }
.info-top-row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px; margin-bottom: 24px;
}
.edition-label, .products-counter {
  font-family: 'Onest', sans-serif; font-weight: 500; font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--stone);
}
.products-counter { white-space: nowrap; }
.products-counter .num {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 300;
  font-size: 13px; font-variation-settings: "SOFT" 100, "opsz" 36;
  color: var(--ink); margin-right: 2px;
  letter-spacing: 0.02em; font-feature-settings: "tnum";
}
.products-counter .total {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 300;
  font-size: 13px; font-variation-settings: "SOFT" 100, "opsz" 36;
  color: var(--stone-light); letter-spacing: 0.02em; font-feature-settings: "tnum";
}
.products-counter .label-text { margin-left: 8px; }
h1.product-name {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 300;
  font-size: 76px; font-variation-settings: "SOFT" 100, "opsz" 144;
  letter-spacing: 0.005em; line-height: 0.92;
  color: var(--ink); margin-bottom: 20px;
}
.product-subtitle {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 300;
  font-size: 19px; font-variation-settings: "SOFT" 80, "opsz" 36;
  line-height: 1.4; color: var(--stone); margin-bottom: 36px;
}
.product-description {
  font-family: 'Onest', sans-serif; font-weight: 400; font-size: 14px;
  line-height: 1.7; color: var(--ink); margin-bottom: 44px;
}
.meta-stack {
  display: flex; flex-direction: column; gap: 16px;
  padding: 24px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
}
.meta-row { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; }
.meta-row label {
  font-family: 'Onest', sans-serif; font-weight: 500; font-size: 9px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--stone-light);
  white-space: nowrap;
}
.meta-row span {
  font-family: 'Onest', sans-serif; font-weight: 500; font-size: 13px;
  letter-spacing: 0.02em; color: var(--ink); text-align: right;
}

/* PURCHASE BUTTON */
.purchase-row { margin-bottom: 24px; }
button.acquire {
  width: 100%;
  background: var(--ink); color: var(--cream);
  border: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px;
  min-height: 64px;
  cursor: pointer; transition: background 0.3s ease;
  font-family: inherit;
}
button.acquire:hover { background: var(--stone); }
.acquire-label {
  font-family: 'Onest', sans-serif; font-weight: 500; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--cream);
}
.acquire-price {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 300;
  font-size: 28px; font-variation-settings: "SOFT" 80, "opsz" 72;
  color: var(--cream); line-height: 1;
}
.acquire-price .currency {
  font-size: 16px; vertical-align: super; margin-right: 2px;
  font-style: normal; font-weight: 500;
  font-family: 'Onest', sans-serif; letter-spacing: 0.05em;
}
button.acquire.sold-out {
  background: transparent; color: var(--stone);
  border: 1px solid var(--stone-light); cursor: not-allowed;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  min-height: 80px;
}
button.acquire.sold-out .acquire-label {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--ink);
}
button.acquire.sold-out .acquire-label::after {
  content: attr(data-subtitle);
  display: block;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  font-variation-settings: "SOFT" 100, "opsz" 36;
  letter-spacing: 0.02em;
  color: var(--stone);
  margin-top: 6px;
  text-transform: none;
}
button.acquire.sold-out .acquire-price { display: none; }

.shipping-note {
  margin-top: 28px; padding-top: 20px;
  border-top: 1px solid var(--border);
  font-family: 'Onest', sans-serif; font-weight: 400;
  font-size: 12px; line-height: 1.7;
  color: var(--stone); letter-spacing: 0.01em;
}
.shipping-note strong { color: var(--ink); font-weight: 500; }

/* ============================== PRODUCT NAV BAR (FIXED TO VIEWPORT BOTTOM) ============================== */
/* Always visible at the bottom of the viewport so users (especially on mobile)
 * have a constant, obvious way to navigate between products. */
.product-nav-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--ink);
  color: var(--cream);
  display: grid; grid-template-columns: 1fr 1fr;
  z-index: 60;
  border-top: 1px solid rgba(245, 242, 236, 0.08);
}

/* Reserve room at the bottom of the page so the fixed nav doesn't cover
 * the final lines of content or sit over the footer. Only applied on
 * pages that actually contain the nav (the product page). */
body:has(.product-nav-bar),
body.has-product-nav {
  padding-bottom: 52px;
}
/* Slightly more breathing room on mobile where the nav is also 52px */
@media (max-width: 900px) {
  body:has(.product-nav-bar),
  body.has-product-nav {
    padding-bottom: 48px;
  }
}
.nav-prev, .nav-next {
  padding: 14px 28px; cursor: pointer;
  transition: background 0.3s ease;
  display: flex; align-items: center; gap: 14px;
  border: none; background: none; color: var(--cream);
  text-align: left; font-family: inherit; min-height: 52px;
}
.nav-prev:hover, .nav-next:hover { background: rgba(245, 242, 236, 0.08); }
.nav-prev:disabled, .nav-next:disabled { opacity: 0.5; cursor: not-allowed; }
.nav-prev:disabled:hover, .nav-next:disabled:hover { background: transparent; }
.nav-prev { border-right: 1px solid rgba(245, 242, 236, 0.1); }
.nav-next { justify-content: flex-end; text-align: right; }
.nav-direction {
  font-family: 'Onest', sans-serif; font-weight: 500; font-size: 9px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--taupe-light);
}
.nav-product-name {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 300;
  font-size: 14px; font-variation-settings: "SOFT" 100, "opsz" 36;
  color: var(--cream);
}
.nav-text { display: flex; flex-direction: column; gap: 2px; justify-content: center; }
.nav-arrow { font-size: 18px; color: var(--taupe-light); line-height: 1; }

/* ============================== FOOTER ============================== */
footer {
  background: var(--cream-deep);
  border-top: 1px solid var(--border);
  padding: 36px 40px 28px;
}
.footer-inner {
  max-width: 1500px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 20px;
}
.footer-bottom-row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 32px;
}
.footer-legal { display: flex; gap: 28px; align-items: center; }
.footer-legal a {
  font-family: 'Onest', sans-serif; font-weight: 500; font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--stone); text-decoration: none;
  transition: color 0.3s ease;
}
.footer-legal a:hover { color: var(--ink); }

.footer-payments {
  display: flex; gap: 10px; align-items: center;
}
.footer-payments img {
  height: 24px; width: auto;
  opacity: 0.55;
  transition: opacity 0.3s ease;
  display: block;
}
.footer-payments img:hover { opacity: 1; }

.footer-copyright {
  font-family: 'Onest', sans-serif; font-weight: 400; font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--stone-light);
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ============================== ATELIER PAGE ============================== */
.atelier-hero {
  padding: 200px 40px 120px;
  max-width: 1100px; margin: 0 auto;
}
.atelier-hero .small-label {
  font-family: 'Onest', sans-serif; font-weight: 500; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--stone); margin-bottom: 32px; display: block;
}
.atelier-hero h1 {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 300;
  font-size: 96px; font-variation-settings: "SOFT" 100, "opsz" 144;
  letter-spacing: 0.005em; line-height: 1.0;
  color: var(--ink); margin-bottom: 48px;
  max-width: 900px;
}
.atelier-hero p.lede {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 300;
  font-size: 26px; font-variation-settings: "SOFT" 80, "opsz" 36;
  line-height: 1.45; color: var(--stone);
  max-width: 720px;
}

.atelier-section {
  padding: 80px 40px;
  max-width: 1100px; margin: 0 auto;
}
.atelier-section + .atelier-section { border-top: 1px solid var(--border); }
.atelier-section .row {
  display: grid; grid-template-columns: 1fr 2fr; gap: 80px;
  align-items: start;
}
.atelier-section h2 {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 300;
  font-size: 36px; font-variation-settings: "SOFT" 100, "opsz" 72;
  letter-spacing: 0.005em; line-height: 1.1;
  color: var(--ink);
}
.atelier-section h2 .number {
  display: block;
  font-family: 'Onest', sans-serif; font-weight: 500; font-size: 11px;
  letter-spacing: 0.22em; color: var(--stone);
  margin-bottom: 16px; font-style: normal;
}
.atelier-body p {
  font-family: 'Onest', sans-serif; font-weight: 400; font-size: 15px;
  line-height: 1.75; color: var(--ink); margin-bottom: 24px;
}
.atelier-body p:last-child { margin-bottom: 0; }
.atelier-body p em {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 300;
  font-variation-settings: "SOFT" 80, "opsz" 14;
  color: var(--stone);
}

.atelier-image-band {
  background: var(--cream-deep);
  padding: 80px 40px;
  margin: 80px 0;
}
.atelier-image-band-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.atelier-image {
  aspect-ratio: 4 / 5;
  background: var(--cream-deep);
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.atelier-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.atelier-image:hover img { transform: scale(1.02); }
.atelier-image::after {
  content: attr(data-caption);
  position: absolute; bottom: 16px; left: 16px;
  font-family: 'Onest', sans-serif; font-size: 9px; font-weight: 500;
  letter-spacing: 0.22em; color: var(--cream); z-index: 2;
  text-shadow: 0 1px 4px rgba(30, 30, 28, 0.4);
}

.atelier-cta {
  padding: 120px 40px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.atelier-cta h3 {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 300;
  font-size: 48px; font-variation-settings: "SOFT" 100, "opsz" 144;
  letter-spacing: 0.005em; line-height: 1.1;
  color: var(--ink); margin-bottom: 32px;
}
.atelier-cta a.cta-link {
  display: inline-block;
  background: var(--ink); color: var(--cream);
  padding: 22px 48px;
  font-family: 'Onest', sans-serif; font-weight: 500; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s ease;
}
.atelier-cta a.cta-link:hover { background: var(--stone); }

/* ============================== CONTACT PAGE ============================== */
.contact-page {
  padding: 200px 40px 100px;
  max-width: 1100px; margin: 0 auto;
}
.contact-header {
  text-align: left;
  margin-bottom: 80px;
  max-width: 800px;
}
.contact-header .small-label {
  font-family: 'Onest', sans-serif; font-weight: 500; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--stone); margin-bottom: 32px; display: block;
}
.contact-header h1 {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 300;
  font-size: 88px; font-variation-settings: "SOFT" 100, "opsz" 144;
  letter-spacing: 0.005em; line-height: 1.0;
  color: var(--ink); margin-bottom: 32px;
}
.contact-header p {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 300;
  font-size: 22px; font-variation-settings: "SOFT" 80, "opsz" 36;
  line-height: 1.45; color: var(--stone);
}

.contact-grid {
  display: grid; grid-template-columns: 1fr 2fr; gap: 80px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-info-block label {
  font-family: 'Onest', sans-serif; font-weight: 500; font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--stone-light); margin-bottom: 8px; display: block;
}
.contact-info-block p, .contact-info-block a {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 300;
  font-size: 18px; font-variation-settings: "SOFT" 100, "opsz" 36;
  line-height: 1.5; color: var(--ink);
  text-decoration: none;
}
.contact-info-block a {
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s ease;
}
.contact-info-block a:hover { border-bottom-color: var(--ink); }
.contact-info-block .social-row { display: flex; gap: 16px; }

.contact-form { display: flex; flex-direction: column; gap: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-family: 'Onest', sans-serif; font-weight: 500; font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--stone);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  font-family: 'Onest', sans-serif; font-weight: 400; font-size: 15px;
  color: var(--ink);
  transition: border-color 0.3s ease;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--ink);
}
.form-field textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}
.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23595855' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 28px;
}

button.submit-btn {
  background: var(--ink); color: var(--cream);
  border: none;
  padding: 22px 48px;
  font-family: 'Onest', sans-serif; font-weight: 500; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  cursor: pointer; transition: background 0.3s ease;
  align-self: flex-start;
  margin-top: 16px;
}
button.submit-btn:hover { background: var(--stone); }
button.submit-btn:disabled { opacity: 0.5; cursor: wait; }

.form-status { margin-top: 16px; font-family: 'Onest', sans-serif; font-size: 13px; }
.form-status.success { color: var(--sage); }
.form-status.error { color: #B85045; }

.botcheck { display: none; }

/* ============================== CONTACT SUCCESS STATE ============================== */
/* Replaces the form when submission succeeds. Animated check + message. */
.contact-form-wrap {
  position: relative;
  min-height: 480px;
}

.contact-form {
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-form.hide {
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.contact-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
  opacity: 0;
  transform: translateY(12px);
  color: var(--ink);
}
.contact-success.show {
  display: block;
  animation: successFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

@keyframes successFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.success-mark {
  width: 96px; height: 96px;
  margin: 0 auto 32px;
  color: var(--sage);
}
.success-mark svg {
  width: 100%; height: 100%;
  display: block;
}

/* Animated draw — circle traces around, then the check draws inside */
.success-circle {
  stroke-dasharray: 188.5;          /* circumference of r=30 circle */
  stroke-dashoffset: 188.5;
  opacity: 0;
}
.contact-success.show .success-circle {
  animation: drawCircle 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}
@keyframes drawCircle {
  from { stroke-dashoffset: 188.5; opacity: 1; }
  to   { stroke-dashoffset: 0; opacity: 1; }
}

.success-check {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  opacity: 0;
}
.contact-success.show .success-check {
  animation: drawCheck 0.4s cubic-bezier(0.4, 0, 0.2, 1) 1.0s forwards;
}
@keyframes drawCheck {
  from { stroke-dashoffset: 50; opacity: 1; }
  to   { stroke-dashoffset: 0; opacity: 1; }
}

.success-title {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 300;
  font-size: 48px; font-variation-settings: "SOFT" 100, "opsz" 144;
  letter-spacing: 0.005em; line-height: 1.0;
  color: var(--ink); margin-bottom: 16px;
}

.success-body {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 300;
  font-size: 18px; font-variation-settings: "SOFT" 80, "opsz" 36;
  line-height: 1.5; color: var(--stone);
  max-width: 380px; margin: 0 auto 40px;
}
.success-body strong {
  color: var(--ink); font-weight: 400;
}

.success-reset {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  padding: 16px 36px;
  font-family: 'Onest', sans-serif; font-weight: 500; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.success-reset:hover {
  background: var(--ink);
  color: var(--cream);
}

/* ============================== 404 PAGE ============================== */
.error-page {
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh; padding: 80px 40px;
}
.error-inner { text-align: center; max-width: 600px; }
.error-inner .small-label {
  font-family: 'Onest', sans-serif; font-weight: 500; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--stone); margin-bottom: 32px; display: block;
}
.error-inner h1 {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 300;
  font-size: 120px; font-variation-settings: "SOFT" 100, "opsz" 144;
  letter-spacing: 0.005em; line-height: 1;
  color: var(--ink); margin-bottom: 24px;
}
.error-inner p {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 300;
  font-size: 22px; font-variation-settings: "SOFT" 80, "opsz" 36;
  line-height: 1.5; color: var(--stone); margin-bottom: 48px;
}
.error-inner a {
  font-family: 'Onest', sans-serif; font-weight: 500; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink); border-bottom: 1px solid var(--ink);
  text-decoration: none; padding-bottom: 4px;
  transition: opacity 0.3s ease;
}
.error-inner a:hover { opacity: 0.6; }

/* ============================== POLICY PAGES (Terms, Privacy, Shipping & Returns) ============================== */
.policy-page {
  padding: 200px 40px 120px;
  max-width: 820px;
  margin: 0 auto;
}
.policy-page .small-label {
  font-family: 'Onest', sans-serif; font-weight: 500; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--stone); margin-bottom: 32px; display: block;
}
.policy-page h1 {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 300;
  font-size: 72px; font-variation-settings: "SOFT" 100, "opsz" 144;
  letter-spacing: 0.005em; line-height: 1.0;
  color: var(--ink); margin-bottom: 24px;
}
.policy-page .updated {
  font-family: 'Onest', sans-serif; font-weight: 500; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--stone-light); margin-bottom: 64px; display: block;
}
.policy-page h2 {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 300;
  font-size: 28px; font-variation-settings: "SOFT" 80, "opsz" 72;
  letter-spacing: 0.005em; line-height: 1.2;
  color: var(--ink); margin: 56px 0 20px;
}
.policy-page h2:first-of-type { margin-top: 0; }
.policy-page p, .policy-page li {
  font-family: 'Onest', sans-serif; font-weight: 400; font-size: 15px;
  line-height: 1.75; color: var(--ink); margin-bottom: 18px;
}
.policy-page ul, .policy-page ol {
  padding-left: 24px; margin-bottom: 18px;
}
.policy-page li { margin-bottom: 8px; }
.policy-page strong { color: var(--ink); font-weight: 500; }
.policy-page em {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 300;
  font-variation-settings: "SOFT" 80, "opsz" 14;
  color: var(--stone);
}
.policy-page a {
  color: var(--ink);
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: border-color 0.3s ease;
}
.policy-page a:hover { border-bottom-color: var(--ink); }
.policy-page .editor-note {
  background: var(--cream-deep);
  border-left: 3px solid var(--taupe);
  padding: 20px 24px;
  margin: 24px 0;
  font-family: 'Onest', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: var(--stone);
}
.policy-page .editor-note strong { color: var(--taupe); }

/* ============================== ANIMATIONS ============================== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.info-panel > * { animation: fadeUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) backwards; }
.info-panel > *:nth-child(1) { animation-delay: 0.05s; }
.info-panel > *:nth-child(2) { animation-delay: 0.1s; }
.info-panel > *:nth-child(3) { animation-delay: 0.15s; }
.info-panel > *:nth-child(4) { animation-delay: 0.2s; }
.info-panel > *:nth-child(5) { animation-delay: 0.25s; }
.info-panel > *:nth-child(6) { animation-delay: 0.3s; }
.info-panel > *:nth-child(7) { animation-delay: 0.35s; }

/* ============================== MOBILE ============================== */
@media (max-width: 900px) {
  .topbar { padding: 18px 24px; }
  .wordmark { font-size: 20px; }

  .hero { cursor: default; height: 100vh; height: 100dvh; }
  .hero-zone { display: none; }
  .cursor-arrow { display: none; }

  /* Hero content gets vertical padding so image sits between the
     edition tag (top) and the product name (bottom) without overlap */
  .hero-content {
    padding: 130px 24px 150px;
  }

  .edition-tag { top: 90px; left: 24px; font-size: 9px; }

  /* Product name sized down and given a shadow so it stays legible
     even when it sits over the lower part of the image */
  .hero-name {
    bottom: 70px; left: 24px; right: 24px;
    font-size: 56px;
    text-shadow: 0 2px 20px rgba(245, 242, 236, 0.6);
  }
  .scroll-cue { bottom: 72px; right: 24px; font-size: 9px; }

  .product-image {
    max-width: 78vw;
    max-height: 48vh;
  }

  .metro { padding: 60px 24px 60px; }
  .metro-inner { grid-template-columns: 1fr; gap: 48px; }
  .info-panel { position: static; order: 1; }
  .shots { order: 2; grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .shot-1, .shot-4, .shot-5 { grid-column: span 2; aspect-ratio: 4 / 3; }
  .shot-2, .shot-3 { grid-column: span 1; aspect-ratio: 1 / 1; }

  h1.product-name { font-size: 52px; }
  .product-subtitle { font-size: 17px; margin-bottom: 28px; }
  .product-description { font-size: 14px; margin-bottom: 32px; }
  .meta-stack { padding: 20px 0; margin-bottom: 28px; }
  .info-top-row { margin-bottom: 20px; gap: 12px; }
  .edition-label, .products-counter { font-size: 9px; }
  .products-counter .num, .products-counter .total { font-size: 12px; }
  .products-counter .label-text { margin-left: 6px; }
  button.acquire { padding: 16px 20px; min-height: 56px; }
  .acquire-price { font-size: 22px; }
  .acquire-label { font-size: 10px; }
  .shipping-note { margin-top: 22px; padding-top: 18px; font-size: 12px; }

  .fullscreen-menu {
    padding: 0;
    justify-content: flex-start;
    overflow-y: auto;
  }
  .menu-inner {
    padding: 100px 28px 32px;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
  }
  .menu-nav a { font-size: 44px; }
  .menu-side {
    padding-left: 0;
    padding-top: 32px;
    border-left: none;
    border-top: 1px solid rgba(245, 242, 236, 0.12);
    width: 100%;
  }
  .menu-side-block { margin-bottom: 28px; }
  .menu-side-content { font-size: 16px; }
  .menu-side-content.small { font-size: 13px; }
  .menu-lang { margin-top: 8px; }
  .menu-bottom-strip {
    position: static; bottom: auto; left: auto; right: auto;
    margin: 32px 28px 32px; padding-top: 24px;
    border-top: 1px solid rgba(245, 242, 236, 0.12);
    font-size: 9px; flex-direction: column; gap: 12px; align-items: flex-start;
  }
  .close-hint-desktop { display: none; }
  .close-hint-mobile { display: inline; }

  .product-nav-bar { grid-template-columns: 1fr 1fr; }
  .nav-prev, .nav-next { padding: 12px 16px; gap: 8px; min-height: 48px; }
  .nav-product-name { font-size: 12px; }
  .nav-direction { font-size: 8px; }
  .nav-arrow { font-size: 16px; }

  /* Atelier mobile */
  .atelier-hero { padding: 130px 24px 60px; }
  .atelier-hero h1 { font-size: 48px; }
  .atelier-hero p.lede { font-size: 19px; }
  .atelier-section { padding: 60px 24px; }
  .atelier-section .row { grid-template-columns: 1fr; gap: 32px; }
  .atelier-section h2 { font-size: 28px; }
  .atelier-image-band { padding: 60px 24px; margin: 60px 0; }
  .atelier-image-band-inner { grid-template-columns: 1fr; gap: 12px; }
  .atelier-cta { padding: 80px 24px; }
  .atelier-cta h3 { font-size: 32px; }
  .atelier-cta a.cta-link { padding: 18px 36px; font-size: 10px; }

  /* Contact mobile */
  .contact-page { padding: 130px 24px 60px; }
  .contact-header h1 { font-size: 48px; }
  .contact-header p { font-size: 18px; }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .form-row { grid-template-columns: 1fr; gap: 24px; }
  button.submit-btn { padding: 18px 36px; font-size: 10px; align-self: stretch; text-align: center; }

  /* 404 mobile */
  .error-inner h1 { font-size: 72px; }
  .error-inner p { font-size: 18px; }

  /* Policy pages mobile */
  .policy-page { padding: 130px 24px 60px; }
  .policy-page h1 { font-size: 44px; }
  .policy-page .updated { margin-bottom: 48px; }
  .policy-page h2 { font-size: 22px; margin: 40px 0 16px; }

  footer { padding: 28px 24px 20px; }
  .footer-inner { gap: 16px; }
  .footer-bottom-row {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .footer-legal { flex-wrap: wrap; gap: 16px; justify-content: center; }
  .footer-payments { gap: 8px; flex-wrap: wrap; justify-content: center; }
  .footer-payments img { height: 20px; }
  .footer-copyright { font-size: 9px; padding-top: 14px; }
}
