/* Gulyaka Atelier — luxury multi-page */

:root {
  --black: #0d120e;
  --graphite: #1a241d;
  --ink: #1a241d;
  --muted: #5f655f;
  --cream: #fdf9e1;
  --champagne: #f2ecd3;
  --dawn: #e6e2c8;
  --gold: #c9a962;
  --gold-soft: #dcc388;
  --wine: #48130f;
  --forest: #12291d;
  --line: rgba(26, 36, 29, 0.14);
  --nav-bg-light: rgba(242, 236, 211, 0.9);
  --nav-bg-light-strong: rgba(242, 236, 211, 0.96);
  --nav-bg-dark: rgba(26, 36, 29, 0.9);
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Manrope", system-ui, sans-serif;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --header-h: 4rem;
  --max: 1180px;
  --max-prose: 38rem;
}

/* Unified warm grade for all editorial photos */
.mosaic__cell img,
.signature-flow__card img,
.stage__fig img,
.atelier-hero-img img {
  filter: saturate(0.88) contrast(0.95) sepia(0.08) hue-rotate(-6deg);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.03em;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Subtle paper grain — sits above background, below content */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

main,
.foot-lux {
  position: relative;
  z-index: 1;
}

/* Fixed vertical signature — desktop only */
.edge-mark {
  display: none;
}

@media (min-width: 1100px) {
  .edge-mark {
    display: block;
    position: fixed;
    left: 0.35rem;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
    z-index: 60;
    pointer-events: none;
    font-family: var(--font-sans);
    font-size: 0.5625rem;
    font-weight: 600;
    letter-spacing: 0.65em;
    text-transform: uppercase;
    color: var(--muted);
    opacity: 0.45;
    white-space: nowrap;
  }

  .edge-mark span {
    display: inline-block;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

img.img--missing {
  opacity: 0;
}

.media--missing {
  position: relative;
  background:
    linear-gradient(135deg, rgba(18, 41, 29, 0.18), rgba(201, 169, 98, 0.18)),
    var(--champagne);
  min-height: 220px;
}

.media--missing::after {
  content: "Image unavailable";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease), opacity 0.2s ease;
}

a:hover {
  border-bottom-color: var(--gold);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--black);
  color: var(--cream);
  padding: 0.5rem 1rem;
  z-index: 9999;
  font-size: 0.8125rem;
}

.skip-link:focus {
  top: 1rem;
}

/* —— Header —— */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--nav-bg-light);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: background 0.35s var(--ease), border-color 0.25s ease, color 0.25s ease;
}

.header--transparent {
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
}

.header--transparent.header--scrolled {
  background: var(--nav-bg-light-strong);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}

.header--invert {
  color: rgba(255, 252, 248, 0.92);
}

.header--invert:not(.header--transparent) {
  background: var(--nav-bg-dark);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.header--invert.header--transparent {
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.header--invert .header__menu span {
  background: var(--cream);
}

.header__inner {
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header__logo {
  position: relative;
  line-height: 0;
  display: inline-flex;
  align-items: center;
  height: 1.8rem;
  width: 2.45rem;
  overflow: visible;
  border-bottom: none;
}

.header__logo:hover,
.header__logo:focus,
.header__logo:focus-visible,
.header__logo:active {
  border-bottom-color: transparent;
  outline: none;
}

.header__logo-img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 1.84rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
}

.header__logo-img--light {
  display: none;
}

.header--invert .header__logo-img--dark {
  display: none;
}

.header--invert .header__logo-img--light {
  display: block;
}


.header__nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.header__nav a[aria-current="page"] {
  border-bottom-color: currentColor;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: 1rem;
  padding: 0.18rem;
  border: 1px solid var(--line);
  background: rgba(253, 249, 225, 0.74);
  backdrop-filter: blur(8px);
  border-radius: 999px;
}

.lang-switch button {
  border: 1px solid transparent;
  background: transparent;
  color: currentColor;
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.28rem 0.5rem;
  cursor: pointer;
  border-radius: 999px;
}

.lang-switch button[aria-pressed="true"] {
  border-color: var(--gold);
  background: rgba(196, 165, 116, 0.12);
  color: var(--gold);
}

.header--invert .lang-switch button {
  border-color: rgba(255, 255, 255, 0.35);
}

.header--invert .lang-switch button[aria-pressed="true"] {
  border-color: var(--gold-soft);
  color: var(--gold-soft);
}

/* On the dark transparent hero header, avoid the grey pill look */
.header--transparent .lang-switch {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
}

.header--transparent .lang-switch button {
  color: rgba(255, 252, 248, 0.92);
}

.header--transparent .lang-switch button[aria-pressed="true"] {
  border-color: var(--gold-soft);
  background: rgba(196, 165, 116, 0.16);
  color: var(--gold-soft);
}

.header__menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 2rem;
  height: 2rem;
  padding: 0;
  margin-left: auto;
  border: none;
  background: transparent;
  cursor: pointer;
}

.header__menu span {
  display: block;
  height: 1px;
  width: 100%;
  background: var(--ink);
  transition: transform 0.2s var(--ease);
}

.header__menu[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.header__menu[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

@media (max-width: 900px) {
  .header__logo {
    height: 1.55rem;
    width: 2.1rem;
  }

  .header__logo-img {
    height: 1.5rem;
  }

  .header__menu {
    display: flex;
  }

  .lang-switch {
    margin-left: 0;
  }

  .header__nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    min-height: calc(100vh - var(--header-h));
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem clamp(1rem, 4vw, 2rem);
    gap: 0;
    background: var(--nav-bg-light-strong);
    border-top: 1px solid var(--line);
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease), opacity 0.2s ease;
    font-size: 0.6875rem;
  }

  .header__nav.is-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .header__nav a {
    width: 100%;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
  }

  .header--invert .header__nav {
    background: var(--nav-bg-dark);
  }

  .header--invert .header__nav a {
    color: rgba(255, 252, 248, 0.95);
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .nav-open .header,
  .nav-open .header--transparent,
  .nav-open .header--invert,
  .nav-open .header--invert.header--transparent {
    background: var(--nav-bg-light-strong);
    border-bottom-color: var(--line);
    color: var(--ink);
    backdrop-filter: blur(16px);
  }

  .nav-open .header__menu span {
    background: var(--ink);
  }

  .nav-open .header__logo-img--dark {
    display: block;
  }

  .nav-open .header__logo-img--light {
    display: none;
  }

  .nav-open .header__nav,
  .nav-open .header--invert .header__nav {
    background: var(--nav-bg-light-strong);
  }


  .nav-open .header__nav a,
  .nav-open .header--invert .header__nav a {
    color: var(--ink);
    border-bottom-color: var(--line);
  }
}

/* —— Homepage hero —— */

.hero-lux {
  position: relative;
  min-height: 100dvh;
  padding: calc(var(--header-h) + clamp(3rem, 12vw, 7rem)) clamp(1.25rem, 5vw, 3rem)
    clamp(4rem, 10vw, 6rem);
  display: flex;
  align-items: flex-end;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(201, 169, 98, 0.14), transparent 55%),
    linear-gradient(165deg, #112018 0%, var(--black) 45%, #4b1712 100%);
  color: rgba(255, 252, 248, 0.94);
}

.hero-lux--image {
  background: #0b0b0b;
}

.hero-lux--image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(13, 18, 14, 0.2) 0%, rgba(13, 18, 14, 0.62) 62%, rgba(13, 18, 14, 0.84) 100%),
    radial-gradient(circle at 75% 24%, rgba(220, 195, 136, 0.3), transparent 45%);
}

.hero-lux__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.hero-lux__rail {
  position: absolute;
  right: clamp(0.35rem, 2vw, 1.25rem);
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(255, 252, 248, 0.22);
  pointer-events: none;
}

@media (max-width: 640px) {
  .hero-lux__rail {
    display: none;
  }
}

.hero-lux__inner {
  max-width: 620px;
  position: relative;
  z-index: 2;
}

.hero-lux__eyebrow {
  margin: 0 0 1rem;
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-soft);
  opacity: 0.9;
}

.hero-lux__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 7vw, 4.2rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.98;
}

.hero-lux__wordmark {
  width: clamp(210px, 44vw, 430px);
  height: auto;
}

.hero-lux__lede {
  margin: 1.1rem 0 0;
  max-width: 30em;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 252, 248, 0.72);
}

.hero-lux__cta {
  margin-top: 1.45rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.btn-lux {
  display: inline-flex;
  padding: 0.72rem 1.35rem;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--cream);
  border: 1px solid var(--cream);
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-lux:hover {
  background: transparent;
  color: var(--cream);
  border-bottom-color: var(--cream);
}

.btn-lux--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255, 252, 248, 0.35);
}

.btn-lux--ghost:hover {
  border-color: var(--gold-soft);
  color: var(--gold-soft);
}

/* —— Mosaic collage (homepage) —— */

.mosaic-wrap {
  padding: clamp(2.5rem, 6vw, 4rem) clamp(0.75rem, 2vw, 1.25rem) clamp(3.5rem, 9vw, 6rem);
  background: var(--cream);
}

.mosaic-shell {
  position: relative;
  max-width: 1340px;
  margin: 0 auto;
  padding: clamp(1.1rem, 2.5vw, 1.75rem);
}

.mosaic-shell__rule {
  position: absolute;
  width: 32px;
  height: 32px;
  pointer-events: none;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.55;
  z-index: 2;
}

.mosaic-shell__rule--tl {
  top: 0;
  left: 0;
  border-width: 1px 0 0 1px;
}

.mosaic-shell__rule--tr {
  top: 0;
  right: 0;
  border-width: 1px 1px 0 0;
}

.mosaic-shell__rule--bl {
  bottom: 0;
  left: 0;
  border-width: 0 0 1px 1px;
}

.mosaic-shell__rule--br {
  bottom: 0;
  right: 0;
  border-width: 0 1px 1px 0;
}

.mosaic {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto auto;
  gap: clamp(0.65rem, 1.5vw, 1rem);
}

.mosaic__cell {
  margin: 0;
  overflow: hidden;
  background: #e8e4dc;
  box-shadow: 0 26px 60px rgba(10, 10, 10, 0.11);
  border-radius: 2px;
  position: relative;
}

.mosaic__cell::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.85rem;
  transform: translateX(-50%);
  width: clamp(56px, 5.2vw, 92px);
  aspect-ratio: 1;
  pointer-events: none;
  opacity: 0.34;
  background: url("../assets/logos/geom-dark.png") center / contain no-repeat;
  mix-blend-mode: normal;
  filter: drop-shadow(0 1px 2px rgba(13, 18, 14, 0.28));
}

.mosaic__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* A: tall left */
.mosaic__cell--a {
  grid-column: 1 / 7;
  grid-row: 1 / 3;
  min-height: min(58vw, 520px);
}

/* B: top right, overlaps visually */
.mosaic__cell--b {
  grid-column: 6 / 13;
  grid-row: 1 / 2;
  min-height: min(38vw, 340px);
  z-index: 1;
  transform: translateY(8%);
  box-shadow: 0 32px 80px rgba(10, 10, 10, 0.14);
}

/* C: wide centre strip */
.mosaic__cell--c {
  grid-column: 1 / 9;
  grid-row: 3 / 4;
  min-height: min(32vw, 280px);
}

/* D: bottom right, tilted */
.mosaic__cell--d {
  grid-column: 8 / 13;
  grid-row: 2 / 4;
  min-height: min(42vw, 380px);
  align-self: end;
  transform: rotate(-1.2deg);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 40px 100px rgba(10, 10, 10, 0.12);
}

@media (max-width: 768px) {
  .mosaic {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .mosaic__cell--a,
  .mosaic__cell--b,
  .mosaic__cell--c,
  .mosaic__cell--d {
    grid-column: unset;
    grid-row: unset;
    min-height: 280px;
    transform: none;
  }

  .mosaic__cell--b {
    transform: none;
  }

  .mosaic__cell--d {
    transform: rotate(-0.5deg);
    min-height: 260px;
  }
}

/* —— Signature flow (homepage) —— */

.signature-flow {
  padding: clamp(2.6rem, 8vw, 5.2rem) clamp(1rem, 4vw, 2rem);
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--cream) 0%, var(--champagne) 100%);
}

.signature-flow__inner {
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1rem, 3.5vw, 2.6rem);
  align-items: end;
}

.signature-flow__card {
  margin: 0;
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(10, 10, 10, 0.12);
}

.signature-flow__card img {
  width: 100%;
  height: min(52vw, 520px);
  object-fit: cover;
}

.signature-flow__card--a {
  transform: translateY(-5%);
}

.signature-flow__card--b {
  transform: translateY(6%) rotate(-0.8deg);
}

.signature-flow__copy {
  grid-column: 1 / -1;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-top: clamp(0.5rem, 2vw, 1.2rem);
}

.signature-flow__text {
  margin: 0;
  max-width: 35em;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.2vw, 1.48rem);
  font-style: italic;
  line-height: 1.45;
}

.signature-flow__link {
  white-space: nowrap;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  .signature-flow__inner {
    grid-template-columns: 1fr;
  }

  .signature-flow__card--a,
  .signature-flow__card--b {
    transform: none;
  }

  .signature-flow__card img {
    height: 62vw;
  }

  .signature-flow__copy {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
}

/* —— Collection stages —— */

.page-head {
  padding: calc(var(--header-h) + clamp(2.5rem, 8vw, 4rem)) clamp(1rem, 4vw, 2rem) clamp(2rem, 5vw, 3rem);
  text-align: center;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.page-head--narrow {
  text-align: left;
}

.page-head--narrow .page-head__title,
.page-head--narrow .page-head__sub {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.page-head__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.page-head__sub {
  margin: 0.75rem 0 0;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.stage {
  position: relative;
  overflow: hidden;
}

.stage[data-watermark]::before {
  content: attr(data-watermark);
  position: absolute;
  right: clamp(-2rem, -3vw, 0rem);
  top: 50%;
  transform: translateY(-52%);
  font-family: var(--font-serif);
  font-size: clamp(6rem, 22vw, 15rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  color: rgba(10, 10, 10, 0.045);
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}

.stage--noir[data-watermark]::before,
.stage--forest[data-watermark]::before {
  color: rgba(26, 36, 29, 0.05);
}

.stage--dawn {
  background: linear-gradient(180deg, var(--dawn) 0%, var(--champagne) 100%);
  color: var(--ink);
}

.stage--noir {
  background: linear-gradient(180deg, #efe6c8 0%, #e5dbc0 100%);
  color: var(--ink);
}

.stage--champagne {
  background: var(--cream);
  color: var(--ink);
}

.stage--forest {
  background: linear-gradient(180deg, #f5efda 0%, #e9e1c6 100%);
  color: var(--ink);
}

/* Collection-specific color story (restored richer palette) */
.page-collection .stage--dawn {
  background: linear-gradient(170deg, #17382c 0%, #10291f 100%);
  color: rgba(255, 252, 248, 0.94);
}

.page-collection .stage--dawn .stage__ix {
  color: #cdb57a;
}

.page-collection .stage--dawn .stage__words {
  color: rgba(255, 252, 248, 0.97);
}

.page-collection .stage--noir {
  background: radial-gradient(ellipse at 30% 20%, #7b2a23 0%, #631d17 48%, #45120f 100%);
  color: rgba(255, 252, 248, 0.94);
}

.page-collection .stage--noir .stage__ix,
.page-collection .stage--noir .stage__copy--light .stage__ix {
  color: #dcc388;
}

.page-collection .stage--noir .stage__words,
.page-collection .stage--noir .stage__copy--light .stage__words {
  color: rgba(255, 252, 248, 0.97);
}

.page-collection .stage--champagne {
  background: linear-gradient(180deg, #b44b42 0%, #8f2f28 100%);
  color: rgba(255, 252, 248, 0.94);
}

.page-collection .stage--champagne .stage__ix {
  color: #e4bf86;
}

.page-collection .stage--champagne .stage__words {
  color: rgba(255, 252, 248, 0.97);
}

.page-collection .stage--forest {
  background: linear-gradient(160deg, #5a1612 0%, #3d0f0c 92%);
  color: rgba(255, 252, 248, 0.93);
}

.page-collection .stage--forest .stage__ix,
.page-collection .stage--forest .stage__copy--light .stage__ix {
  color: #dcc388;
}

.page-collection .stage--forest .stage__words,
.page-collection .stage--forest .stage__copy--light .stage__words {
  color: rgba(255, 252, 248, 0.97);
}

.stage__grid {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(2.5rem, 7vw, 5rem) clamp(1rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  min-height: min(88vh, 900px);
}

.stage__grid--flip .stage__fig {
  order: -1;
}

.stage__copy {
  padding: 1rem 0;
}

.stage__copy--light .stage__ix {
  color: var(--gold);
  opacity: 0.85;
}

.stage__copy--light .stage__words {
  color: var(--ink);
}

.stage__ix {
  display: block;
  margin-bottom: 1rem;
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  color: var(--gold);
  opacity: 0.65;
}

.stage--noir .stage__ix,
.stage--forest .stage__ix {
  color: var(--gold);
}

.stage__words {
  margin: 0;
  max-width: 12em;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
}

.stage__fig {
  margin: 0;
  position: relative;
}

.stage__fig::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  width: clamp(62px, 5.8vw, 104px);
  aspect-ratio: 1;
  pointer-events: none;
  opacity: 0.34;
  background: url("../assets/logos/geom-dark.png") center / contain no-repeat;
  mix-blend-mode: normal;
  filter: drop-shadow(0 1px 2px rgba(13, 18, 14, 0.28));
}

.page-collection .stage--noir .stage__fig::after,
.page-collection .stage--forest .stage__fig::after {
  background-image: url("../assets/logos/geom-light.png");
  opacity: 0.36;
  mix-blend-mode: normal;
  filter: drop-shadow(0 1px 2px rgba(255, 249, 226, 0.24));
}

.stage__fig img {
  width: 100%;
  height: auto;
  display: block;
  max-height: min(78vh, 900px);
  object-fit: cover;
}

.stage__fig--tilt {
  transform: rotate(0.8deg);
  box-shadow: 0 48px 100px rgba(20, 18, 16, 0.12);
}

.stage__fig--tilt img {
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.stage__fig--bleed {
  margin-right: calc(-1 * clamp(0px, 4vw, 3rem));
}

.stage__fig--bleed img {
  width: 100%;
  max-height: min(78vh, 820px);
  object-fit: cover;
  object-position: center top;
}

.stage__fig--framed {
  padding: clamp(0.5rem, 1.5vw, 1rem);
  background: linear-gradient(135deg, #f0ebe2, #e0d8cc);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5), 0 28px 70px rgba(10, 10, 10, 0.06);
}

.stage__fig--framed img {
  border: 1px solid rgba(26, 23, 20, 0.08);
}

.stage__grid--overlap {
  grid-template-columns: 1.2fr 0.9fr;
  align-items: end;
}

.stage__fig--float {
  transform: translateY(4%);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
}

.stage__fig--float img {
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.stage__copy--corner {
  padding-bottom: clamp(2rem, 6vw, 4rem);
}

@media (max-width: 820px) {
  .stage__grid,
  .stage__grid--overlap {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .stage__grid--flip .stage__fig {
    order: 0;
  }

  .stage__fig--bleed {
    margin-right: 0;
  }

  .stage__fig--bleed img {
    max-height: none;
  }

  .stage__fig--float {
    transform: none;
  }

  .stage__copy--corner {
    padding-bottom: 0;
  }
}

.collection-outro {
  padding: clamp(3rem, 10vw, 5rem) clamp(1rem, 4vw, 2rem);
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-style: italic;
  background: var(--champagne);
  border-top: 1px solid var(--line);
}

.collection-outro a {
  font-style: normal;
  font-size: 0.6875rem;
  font-family: var(--font-sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

/* —— Atelier prose —— */

.prose-block {
  padding: clamp(3rem, 10vw, 5.5rem) clamp(1rem, 4vw, 2rem);
  background: var(--cream);
}

.prose-block--muted {
  background: #123126;
  color: rgba(255, 252, 248, 0.94);
}

.prose-block__inner {
  max-width: var(--max-prose);
  margin: 0 auto;
}

.prose-block__inner--center {
  text-align: center;
}

.prose-block__lead {
  margin: 0 0 1.5rem;
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 400;
  line-height: 1.55;
}

.prose-block p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.prose-block--muted p,
.prose-block--muted .prose-block__lead {
  color: rgba(255, 252, 248, 0.8);
}

.prose-block--muted .prose-block__cta a {
  color: var(--gold-soft);
  border-bottom-color: rgba(220, 195, 136, 0.65);
}

.prose-block__cta a {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.atelier-hero-img {
  margin: 0;
  line-height: 0;
}

.atelier-hero-img img {
  width: 100%;
  max-height: min(78vh, 860px);
  object-fit: cover;
  object-position: center 18%;
}

.pillars {
  padding: clamp(3.5rem, 10vw, 6rem) clamp(1rem, 4vw, 2rem);
  background: #45120f;
  color: rgba(255, 252, 248, 0.93);
}

.pillars__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
}

@media (min-width: 768px) {
  .pillars__inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.pillar__title {
  margin: 0 0 0.75rem;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d7bf86;
}

.pillar__text {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 252, 248, 0.78);
}

/* —— Appointments timeline —— */

.appoint-hero {
  padding: calc(var(--header-h) + clamp(2.6rem, 8vw, 4.5rem)) clamp(1rem, 4vw, 2rem) clamp(2.6rem, 7vw, 4rem);
  background: var(--cream);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.appoint-hero__inner {
  max-width: 980px;
  margin: 0 auto;
  display: block;
}

.appoint-hero__copy {
  padding: 0.35rem 0;
}

.appoint-hero__eyebrow {
  margin: 0;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.appoint-hero__title {
  margin: 0.6rem 0 0;
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 5.2vw, 3.7rem);
  font-weight: 500;
}

.appoint-hero__lede {
  margin: 0.9rem 0 0;
  max-width: 42em;
  color: var(--muted);
}

.appoint-banner {
  margin: 0;
  line-height: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.appoint-banner img {
  width: 100%;
  max-height: min(56vh, 520px);
  object-fit: cover;
  object-position: center 24%;
}

.appoint-steps {
  padding: clamp(2.2rem, 7vw, 4.5rem) clamp(1rem, 4vw, 2rem) clamp(4rem, 11vw, 7rem);
  background: var(--champagne);
}

.appoint-steps__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 860px) {
  .appoint-steps__inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.appoint-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
  padding: 1.2rem 1.2rem 1.25rem;
  box-shadow: 0 12px 28px rgba(26, 36, 29, 0.08);
}

.appoint-card__n {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
}

.appoint-card__h {
  margin: 0 0 0.45rem;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--ink);
}

.appoint-card__p {
  margin: 0;
  font-size: 0.87rem;
  line-height: 1.65;
  color: var(--muted);
}

.appoint-steps__cta {
  max-width: var(--max);
  margin: 1rem auto 0;
  text-align: right;
}

.appoint-steps__cta a {
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.timeline {
  padding: clamp(3rem, 10vw, 6rem) clamp(1rem, 4vw, 2rem);
  background: var(--cream);
}

.timeline__inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 6vw, 4rem);
}

.timeline__step {
  padding-left: 1.5rem;
  border-left: 1px solid var(--gold);
}

.timeline__n {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.timeline__h {
  margin: 0 0 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
}

.timeline__p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
}

.appoint-note {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem) clamp(4rem, 12vw, 7rem);
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
}

.appoint-note__link {
  margin-top: 1.5rem;
}

.appoint-note__link a {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* —— Contact —— */

.contact-lux {
  padding: clamp(2rem, 8vw, 4rem) clamp(1rem, 4vw, 2rem) clamp(5rem, 15vw, 10rem);
  background: var(--cream);
}

.contact-lux__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .contact-lux__inner {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

.contact-lux__intro {
  margin: 0 0 0.5rem;
  grid-column: 1 / -1;
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-style: italic;
  color: var(--ink);
}

.location-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
  padding: clamp(1.35rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.location-card--atelier {
  background: rgba(235, 228, 216, 0.42);
}

.location-card__tag {
  margin: 0;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.location-card__name {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-weight: 500;
  color: var(--ink);
}

.location-card__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--muted);
}

.location-card__meta {
  margin: 0.25rem 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.contact-lux__addr {
  margin: 0;
  font-style: normal;
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.contact-lux__meta p {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.contact-lux__note {
  margin-top: 0.75rem !important;
}

.contact-lux__dot {
  opacity: 0.35;
  margin: 0 0.35rem;
}

/* —— Footer —— */

.foot-lux {
  padding: 1.5rem clamp(1rem, 4vw, 2rem) 2.5rem;
  border-top: 1px solid var(--line);
  background: var(--champagne);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.foot-lux__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .mosaic__cell--b,
  .mosaic__cell--d,
  .stage__fig--tilt {
    transform: none;
  }
}

/* —— iPad and desktop optimization (no phone changes) —— */
@media (min-width: 768px) {
  :root {
    --header-h: 4.4rem;
  }

  .header__inner {
    max-width: 1440px;
    padding: 0 clamp(1.4rem, 3vw, 2.4rem);
    gap: 1.25rem;
  }

  .header__logo {
    height: 2rem;
    width: 2.8rem;
  }

  .header__logo-img {
    height: 2rem;
  }

  .header__nav {
    gap: clamp(1.1rem, 2vw, 1.7rem);
    font-size: 0.6rem;
    letter-spacing: 0.18em;
  }

  .lang-switch {
    margin-left: 0.5rem;
  }

  .hero-lux {
    padding-top: calc(var(--header-h) + clamp(3.8rem, 9vw, 6rem));
    padding-left: clamp(1.8rem, 4vw, 3.2rem);
    padding-right: clamp(1.8rem, 4vw, 3.2rem);
    min-height: min(100dvh, 980px);
  }

  .hero-lux__inner {
    max-width: 680px;
  }

  .hero-lux__wordmark {
    width: clamp(280px, 34vw, 470px);
  }

  .mosaic-wrap {
    padding-top: clamp(3.2rem, 6vw, 4.4rem);
    padding-left: clamp(1.1rem, 3vw, 2rem);
    padding-right: clamp(1.1rem, 3vw, 2rem);
  }

  .mosaic {
    gap: clamp(0.8rem, 1.2vw, 1.1rem);
  }

  .mosaic__cell--a {
    min-height: clamp(420px, 46vw, 620px);
  }

  .mosaic__cell--b {
    min-height: clamp(280px, 28vw, 400px);
  }

  .mosaic__cell--c {
    min-height: clamp(220px, 20vw, 320px);
  }

  .mosaic__cell--d {
    min-height: clamp(320px, 32vw, 460px);
  }

  .signature-flow__inner {
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.1rem, 2.2vw, 2rem);
  }

  .signature-flow__card img {
    height: clamp(320px, 36vw, 560px);
  }

  .stage__grid {
    padding-left: clamp(1.6rem, 4vw, 2.6rem);
    padding-right: clamp(1.6rem, 4vw, 2.6rem);
    min-height: clamp(620px, 76vh, 900px);
  }

  .stage__words {
    max-width: 14em;
  }

  .page-head {
    padding-top: calc(var(--header-h) + clamp(2.8rem, 6.5vw, 4rem));
  }

  .appoint-hero {
    padding-top: calc(var(--header-h) + clamp(2.7rem, 6vw, 4.2rem));
  }

  .appoint-steps__inner {
    gap: 1.25rem;
  }

  .contact-lux__inner {
    gap: 1.35rem;
  }
}

@media (min-width: 1024px) {
  .header__inner {
    padding: 0 clamp(2rem, 4vw, 3rem);
  }

  .header__nav {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
  }

  .hero-lux {
    min-height: min(100dvh, 1040px);
    padding-top: calc(var(--header-h) + clamp(4rem, 9vw, 6.8rem));
  }

  .hero-lux__inner {
    max-width: 740px;
  }

  .hero-lux__lede {
    max-width: 34em;
  }

  .mosaic__cell--b {
    transform: translateY(6%);
  }

  .mosaic__cell--d {
    transform: rotate(-1deg);
  }

  .signature-flow__inner {
    gap: clamp(1.4rem, 3vw, 2.6rem);
  }

  .stage__grid {
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(2rem, 4vw, 3.2rem);
  }

  .stage__fig img {
    max-height: min(80vh, 940px);
  }
}

