:root {
  color-scheme: dark;
  --bg: #060503;
  --bg-soft: #100d08;
  --panel: #15100a;
  --panel-2: #1b140c;
  --gold: #d7ad58;
  --gold-soft: #f0d38b;
  --gold-deep: #8c682d;
  --text: #f6f0e4;
  --muted: #b7aa94;
  --line: rgba(215, 173, 88, 0.22);
  --line-strong: rgba(215, 173, 88, 0.45);
  --shadow: rgba(0, 0, 0, 0.48);
  --radius: 8px;
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(215, 173, 88, 0.05), transparent 34rem),
    radial-gradient(circle at 76% 0%, rgba(215, 173, 88, 0.12), transparent 25rem),
    var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

body.intro-running {
  overflow: hidden;
}

body.intro-running .site-header,
body.intro-running main,
body.intro-running .site-footer {
  animation: site-open 3000ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.site-intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(215, 173, 88, 0.12), transparent 24rem),
    #030201;
  color: var(--gold-soft);
  pointer-events: auto;
  animation: intro-veil 3000ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.intro-mark {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: clamp(0.2rem, 1.2vw, 0.75rem);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.intro-letter {
  display: inline-block;
  font-size: clamp(4rem, 13vw, 11rem);
  line-height: 0.9;
  opacity: 0;
  text-shadow: 0 20px 70px rgba(215, 173, 88, 0.18);
}

.intro-v {
  animation: letter-drop 720ms 120ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.intro-c {
  animation: letter-drop 720ms 360ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.intro-t {
  animation: letter-drop 720ms 600ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.intro-word {
  display: inline-block;
  margin-left: 0.6rem;
  color: var(--text);
  font-size: clamp(1.05rem, 3vw, 2.3rem);
  letter-spacing: 0.24em;
  opacity: 0;
  transform: translateX(-10px);
  animation: word-reveal 760ms 1120ms ease forwards;
}

@keyframes letter-drop {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.92);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes word-reveal {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes intro-veil {
  0%,
  68% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }

  100% {
    opacity: 0;
    clip-path: inset(0 50% 0 50%);
    pointer-events: none;
    visibility: hidden;
  }
}

@keyframes site-open {
  0%,
  70% {
    opacity: 0;
    transform: scale(0.985);
    filter: blur(10px);
  }

  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.intro-running .site-header,
  body.intro-running main,
  body.intro-running .site-footer,
  .site-intro-overlay,
  .intro-letter,
  .intro-word {
    animation: none;
  }
}

img {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: calc(100% - 40px);
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  letter-spacing: 0;
}

.brand-mark {
  width: 14px;
  height: 14px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  box-shadow: 0 0 0 5px rgba(215, 173, 88, 0.08);
}

.nav-links {
  display: flex;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.nav-links a {
  padding: 0.45rem 0;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  color: var(--text);
  border-color: var(--gold);
}

.hero-shell,
.brand-intro,
.collection-band,
.gallery-section,
.fiche-section,
.atelier-section,
.site-footer {
  width: calc(100% - 40px);
  max-width: var(--max);
  margin-inline: auto;
}

.hero-shell {
  padding: 28px 0 44px;
}

.brand-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(320px, 0.38fr);
  gap: 2rem;
  align-items: center;
  padding: clamp(36px, 5vw, 68px) 0 34px;
  border-bottom: 1px solid var(--line);
}

.business-card-showcase {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #030201;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.38);
}

.business-card-showcase img {
  width: 100%;
  height: auto;
}

.brand-intro-copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 5.4rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
}

.brand-intro-copy {
  display: grid;
  gap: 1rem;
  justify-items: start;
}

.brand-intro-copy p {
  max-width: 38rem;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.brand-intro-copy .brand-signature {
  color: var(--gold-soft);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 0 0.9rem;
  color: var(--gold-soft);
  font-size: 0.86rem;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.social-links a:hover {
  background: rgba(215, 173, 88, 0.1);
  border-color: var(--gold-soft);
  transform: translateY(-1px);
}

.hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 0.3fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 24px;
}

.hero-copy h1 {
  max-width: 920px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.9rem, 6vw, 6.6rem);
  font-weight: 400;
  line-height: 0.93;
  letter-spacing: 0;
}

.hero-copy p,
.atelier-section p {
  max-width: 32rem;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 18px;
  align-items: stretch;
}

.media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(180px, 0.65fr);
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  min-height: clamp(480px, 42vw, 600px);
}

.media-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0b0906;
  box-shadow: 0 24px 80px var(--shadow);
}

.media-frame:first-child {
  grid-row: span 2;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease, filter 700ms ease;
}

.media-frame:hover img,
.model-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.02);
}

.detail-panel {
  display: flex;
  min-height: clamp(480px, 42vw, 600px);
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(215, 173, 88, 0.11), transparent 35%),
    rgba(16, 13, 8, 0.92);
  padding: 28px;
  box-shadow: 0 24px 80px var(--shadow);
}

.detail-kicker {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.detail-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.2vw, 3.6rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.detail-panel p {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.detail-meta {
  display: grid;
  gap: clamp(0.35rem, 1vh, 0.7rem);
  margin-top: clamp(0.8rem, 2vh, 1.35rem);
}

.meta-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: clamp(0.36rem, 0.95vh, 0.66rem);
  border-bottom: 1px solid rgba(215, 173, 88, 0.14);
  color: var(--muted);
  font-size: clamp(0.74rem, 1.45vh, 0.82rem);
}

.meta-row strong {
  color: var(--text);
  font-weight: 500;
  text-align: right;
}

.gold-button,
.ghost-button,
.collection-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.gold-button {
  width: 100%;
  background: var(--gold);
  color: #0d0904;
  font-weight: 650;
}

.ghost-button {
  width: 100%;
  margin-top: 0.8rem;
  background: transparent;
  color: var(--gold-soft);
}

.gold-button:hover,
.ghost-button:hover,
.collection-button:hover {
  transform: translateY(-1px);
  border-color: var(--gold-soft);
}

.section-heading,
.atelier-section {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.section-heading h1,
.section-heading h2,
.atelier-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.8rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.collection-band {
  padding: 44px 0 28px;
}

.section-intro {
  max-width: 34rem;
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.65;
}

.collection-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 28px;
}

.collection-button {
  background: rgba(215, 173, 88, 0.06);
  color: var(--muted);
  padding: 0 1rem;
}

.collection-button[aria-pressed="true"] {
  background: rgba(215, 173, 88, 0.16);
  color: var(--gold-soft);
}

.gallery-section {
  padding: 26px 0 72px;
}

.model-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.model-card {
  display: grid;
  grid-template-columns: 1fr;
  min-height: auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12, 10, 7, 0.82);
}

.model-card[hidden] {
  display: none;
}

.card-heading {
  padding: 22px 28px 18px;
}

.card-heading h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
}

.card-dimensions {
  margin: 0.85rem 0 0;
  color: var(--text);
  font-size: clamp(0.78rem, 1.1vw, 0.88rem);
  font-weight: 500;
  line-height: 1.4;
}

.card-media {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  aspect-ratio: 5 / 4;
  background: #f3f2f0;
  color: inherit;
  cursor: pointer;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms ease, filter 700ms ease;
}

.card-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.2rem;
  border-top: 1px solid var(--line);
  padding: 18px 28px 22px;
}

.card-info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.tag-list span {
  border: 1px solid rgba(215, 173, 88, 0.2);
  border-radius: 999px;
  padding: 0.35rem 0.55rem;
  color: var(--gold-soft);
  font-size: 0.72rem;
}

.fiche-section {
  border-top: 1px solid var(--line);
  padding: 62px 0 88px;
  scroll-margin-top: 84px;
}

.fiche-heading {
  margin-bottom: 28px;
}

.fiche-stage {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.34fr);
}

.fiche-media {
  min-height: clamp(560px, 48vw, 760px);
}

.fiche-panel {
  min-height: clamp(560px, 48vw, 760px);
}

.care-block {
  margin-top: clamp(0.7rem, 1.8vh, 1.2rem);
  border-top: 1px solid rgba(215, 173, 88, 0.2);
  padding-top: clamp(0.55rem, 1.35vh, 0.9rem);
}

.care-block span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--gold);
  font-size: clamp(0.68rem, 1.3vh, 0.74rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.care-block p {
  margin: 0;
  font-size: clamp(0.84rem, 1.55vh, 0.95rem);
  line-height: 1.45;
}

.empty-state {
  margin: 0;
  color: var(--muted);
}

.select-button {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.select-button:hover {
  background: rgba(215, 173, 88, 0.1);
  color: var(--gold-soft);
}

.card-media:focus-visible,
.select-button:focus-visible,
.collection-button:focus-visible,
.social-links a:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
}

.atelier-section {
  display: grid;
  align-items: stretch;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  gap: clamp(1.4rem, 3vw, 2.4rem);
  padding: 58px 0;
}

.atelier-intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(1.4rem, 3vw, 2.6rem);
  align-items: end;
}

.atelier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.atelier-card {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12, 10, 7, 0.82);
  padding: clamp(1.1rem, 2vw, 1.45rem);
}

.atelier-card span {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.atelier-card h3 {
  margin: 0;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.atelier-card p {
  font-size: 0.94rem;
}

.atelier-links,
.activity-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.atelier-links a,
.activity-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 0 0.85rem;
  color: var(--gold-soft);
  font-size: 0.84rem;
  text-decoration: none;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.atelier-links a:hover,
.activity-links a:hover {
  background: rgba(215, 173, 88, 0.1);
  border-color: var(--gold-soft);
  transform: translateY(-1px);
}

.atelier-activities {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(260px, 0.42fr);
  align-items: center;
  gap: clamp(1.4rem, 3vw, 2.6rem);
  border-top: 1px solid var(--line);
  padding-top: clamp(1.4rem, 3vw, 2rem);
}

.atelier-activities .detail-kicker {
  margin-bottom: 0.7rem;
}

.activity-card-showcase {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12, 10, 7, 0.72);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.26);
}

.activity-card-showcase img {
  display: block;
  width: 100%;
  height: auto;
}

.activity-copy {
  display: grid;
  align-content: center;
  gap: 1rem;
}

.activity-copy p {
  max-width: 34rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 26px 0 36px;
  color: var(--muted);
  font-size: 0.82rem;
}

.product-dialog {
  width: min(1480px, calc(100vw - 42px));
  height: min(920px, calc(100vh - 32px));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(215, 173, 88, 0.1), transparent 20rem),
    var(--panel);
  color: var(--text);
  padding: 0;
  overflow: hidden;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.74);
  animation: sheet-open 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-dialog::backdrop {
  background: rgba(9, 8, 7, 0.76);
  backdrop-filter: grayscale(0.7) blur(10px);
  animation: veil-open 220ms ease;
}

@keyframes sheet-open {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.965);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes veil-open {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.icon-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(7, 6, 4, 0.72);
  color: var(--text);
  cursor: pointer;
}

.icon-close span,
.icon-close span::after {
  position: absolute;
  top: 18px;
  left: 10px;
  width: 16px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: rotate(45deg);
}

.icon-close span::after {
  top: 0;
  left: 0;
  transform: rotate(90deg);
}

.product-content {
  height: 100%;
  overflow: hidden;
}

.product-sheet {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.34fr);
  height: 100%;
  min-height: 0;
}

.product-sheet-media {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(260px, 0.76fr);
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  padding: 18px;
  min-height: 0;
}

.product-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(215, 173, 88, 0.18);
  border-radius: var(--radius);
  background: #f4f2ee;
  min-height: 0;
}

.product-frame:first-child {
  grid-row: span 2;
}

.product-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-sheet-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-left: 1px solid var(--line);
  min-height: 0;
  overflow: hidden;
  padding: clamp(24px, 4vh, 42px) 34px 26px;
}

.product-sheet-info h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 3.55vw, 4rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
  overflow-wrap: normal;
}

.product-sheet-info > p {
  margin: clamp(0.7rem, 1.9vh, 1.25rem) 0 0;
  color: var(--muted);
  font-size: clamp(0.86rem, 1.75vh, 0.98rem);
  line-height: 1.58;
}

@media (prefers-reduced-motion: reduce) {
  .product-dialog,
  .product-dialog::backdrop {
    animation: none;
  }
}

@media (max-width: 1100px) {
  .hero-stage,
  .model-card {
    grid-template-columns: 1fr;
  }

  .detail-panel {
    min-height: auto;
  }

  .model-gallery {
    grid-template-columns: 1fr;
  }

  .card-info {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .product-dialog {
    width: calc(100vw - 28px);
    height: calc(100vh - 28px);
  }

  .product-sheet {
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .product-sheet-media {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: minmax(0, 1fr);
    height: 46vh;
  }

  .product-frame {
    aspect-ratio: auto;
  }

  .product-frame:first-child {
    grid-row: auto;
  }

  .product-sheet-info {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 22px 24px;
  }
}

@media (max-width: 760px) {
  .product-dialog {
    position: fixed;
    inset: 8px;
    width: auto;
    height: auto;
    max-width: none;
    max-height: none;
    margin: 0;
  }

  .icon-close {
    position: absolute;
    top: 14px;
    right: 34px;
    z-index: 50;
    width: 40px;
    height: 40px;
    background: rgba(7, 6, 4, 0.86);
    border-color: rgba(240, 211, 139, 0.72);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.42);
  }

  .product-content {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .product-sheet {
    display: block;
    height: auto;
    min-height: 100%;
    overflow: visible;
  }

  .product-sheet-media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto;
    gap: 10px;
    height: auto;
    padding: 12px;
  }

  .product-frame {
    aspect-ratio: 1 / 1;
  }

  .product-frame:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 4 / 3;
  }

  .product-sheet-info {
    min-height: auto;
    overflow: visible;
    padding: 22px 18px 28px;
  }

  .product-sheet-info h2 {
    font-size: clamp(2.3rem, 13vw, 3.35rem);
  }

  .meta-row {
    display: grid;
    gap: 0.22rem;
  }

  .meta-row strong {
    text-align: left;
    overflow-wrap: anywhere;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    width: calc(100% - 28px);
    max-width: var(--max);
  }

  .hero-shell,
  .brand-intro,
  .collection-band,
  .gallery-section,
  .fiche-section,
  .atelier-section,
  .site-footer {
    width: calc(100% - 28px);
    max-width: var(--max);
  }

  .hero-shell {
    padding-top: 24px;
  }

  .hero-copy h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.35rem, 11vw, 2.85rem);
    line-height: 0.98;
    overflow-wrap: break-word;
  }

  .hero-copy p,
  .atelier-section p {
    width: 100%;
    max-width: 100%;
    font-size: 0.94rem;
    overflow-wrap: break-word;
  }

  .brand-intro {
    min-height: auto;
    padding: 36px 0 30px;
  }

  .brand-intro-copy h1 {
    max-width: 100%;
    font-size: clamp(2.8rem, 14vw, 4.4rem);
    line-height: 0.92;
    overflow-wrap: break-word;
  }

  .brand-intro-copy p {
    width: 100%;
    font-size: 0.94rem;
  }

  .hero-copy,
  .brand-intro,
  .section-heading,
  .atelier-section,
  .site-footer {
    align-items: start;
    flex-direction: column;
    display: flex;
    width: 100%;
    min-width: 0;
  }

  .media-grid,
  .card-media {
    width: 100%;
    min-height: auto;
  }

  .media-frame:first-child {
    grid-row: auto;
  }

  .media-frame {
    aspect-ratio: 4 / 5;
  }

  .detail-panel {
    padding: 22px;
  }

  .model-card {
    min-height: auto;
  }

  .atelier-rule {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .site-header,
  .hero-shell,
  .brand-intro,
  .collection-band,
  .gallery-section,
  .fiche-section,
  .atelier-section,
  .site-footer {
    width: min(calc(100% - 28px), 362px);
  }
}

@media (max-width: 980px) {
  .atelier-intro,
  .atelier-grid,
  .atelier-activities {
    grid-template-columns: minmax(0, 1fr);
  }

  .atelier-grid {
    display: grid;
  }

  .atelier-activities {
    align-items: start;
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 760px) {
  .atelier-section {
    display: grid;
    align-items: stretch;
    width: calc(100% - 28px);
  }

  .atelier-intro,
  .atelier-grid {
    display: grid;
    width: 100%;
  }

  .atelier-card {
    width: 100%;
  }

  .business-card-showcase,
  .activity-card-showcase,
  .brand-intro-copy,
  .activity-copy {
    inline-size: 100%;
    max-inline-size: 100%;
    min-width: 0;
  }

  .business-card-showcase img,
  .activity-card-showcase img {
    inline-size: 100%;
    max-inline-size: 100%;
    height: auto;
  }
}
