:root {
  --fig: #24151f;
  --fig-soft: #34222d;
  --mulberry: #76304d;
  --mulberry-dark: #582038;
  --rose: #dfc5c3;
  --gold: #ad8959;
  --white: #ffffff;
  --ivory: #f8f4ee;
  --ink: #2f292c;
  --muted: #736a6e;
  --border: rgba(47, 41, 44, .14);
  --heading: "Lora", Georgia, serif;
  --body: "Manrope", Arial, sans-serif;
  --container: 1280px;
  --gutter: clamp(18px, 5vw, 72px);
  --shadow: 0 22px 60px rgba(36, 21, 31, .13);
  --credit-bar-height: 30px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; padding-bottom: var(--credit-bar-height); overflow-x: hidden; background: var(--ivory); color: var(--ink); font-family: var(--body); font-size: 16px; line-height: 1.6; }
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.skip-link { position: fixed; left: 14px; top: 10px; z-index: 200; padding: 10px 16px; background: var(--white); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.surface-white { background: var(--white); }
.eyebrow { margin: 0 0 10px; color: var(--mulberry); font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow--light { color: #efd9cd; }

.site-header { height: 72px; padding: 10px 18px; display: grid; grid-template-columns: 1fr 48px; align-items: center; background: rgba(255,255,255,.97); border-bottom: 1px solid var(--border); position: relative; z-index: 80; }
.wordmark { width: fit-content; color: var(--fig); font-family: var(--heading); font-weight: 600; text-transform: uppercase; line-height: .9; letter-spacing: .06em; }
.wordmark span { display: block; font-size: 21px; }
.wordmark span + span { margin-top: 5px; padding-left: .42em; font-family: var(--body); font-size: 8px; font-weight: 600; letter-spacing: .42em; }
.site-nav { position: fixed; z-index: 90; top: 0; right: 0; bottom: 0; width: min(86vw, 360px); padding: 108px 34px 38px; display: flex; flex-direction: column; align-items: flex-start; gap: 4px; background: var(--white); box-shadow: var(--shadow); transform: translateX(105%); visibility: hidden; transition: transform .28s ease, visibility .28s ease; }
.site-nav.is-open { transform: translateX(0); visibility: visible; }
.site-nav a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--border); font-family: var(--heading); font-size: 22px; font-weight: 600; }
.menu-toggle { position: relative; z-index: 100; width: 48px; height: 48px; padding: 0; border: 1px solid var(--border); border-radius: 50%; background: var(--white); color: var(--fig); cursor: pointer; }
.menu-toggle span { position: absolute; left: 13px; width: 20px; height: 1.5px; background: currentColor; transition: transform .22s ease, top .22s ease; }
.menu-toggle span:first-child { top: 19px; }
.menu-toggle span:last-child { top: 27px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 23px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 23px; transform: rotate(-45deg); }
.menu-overlay { position: fixed; z-index: 70; inset: 0; display: none; border: 0; background: rgba(36,21,31,.46); }
.menu-overlay.is-visible { display: block; }

.hero-v2 { min-height: 570px; height: calc(100dvh - 72px); max-height: 780px; position: relative; overflow: hidden; background: var(--fig); color: var(--white); }
.hero-v2__media { position: absolute; inset: 0; display: block; }
.hero-v2__image { object-position: 58% center; }
.hero-v2__shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(25,12,20,.94) 0%, rgba(28,15,22,.58) 34%, rgba(28,15,22,.08) 67%); }
.hero-v2__copy { position: absolute; z-index: 2; left: 0; right: 0; bottom: 56px; padding: 0 22px; }
.hero-v2 h1 { max-width: 540px; margin: 0 0 13px; font-family: var(--heading); font-size: clamp(36px, 10vw, 48px); font-weight: 600; line-height: 1.05; letter-spacing: -.025em; }
.hero-v2__lead { max-width: 520px; margin: 0 0 18px; color: rgba(255,255,255,.88); font-size: 13.5px; line-height: 1.45; }
.button { min-height: 52px; width: fit-content; display: inline-flex; align-items: center; justify-content: center; gap: 18px; padding: 13px 22px; border: 1px solid transparent; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; transition: background .2s ease, color .2s ease, transform .2s ease; }
.button:active { transform: scale(.98); }
.button--light { background: var(--white); color: var(--fig); }
.button--rose { background: var(--mulberry); color: var(--white); }
.button--outline-light { border-color: rgba(255,255,255,.6); color: var(--white); }
.button--full { width: 100%; }

.category-strip, .catalog-section, .accessory-showcase, .selected-story, .related, .collection-products { padding: 72px 18px; }
.section-intro, .section-heading { max-width: var(--container); margin: 0 auto 30px; }
.section-intro h2, .section-heading h2, .traditional-feature h2, .selected-story h2, .closing-cta h2, .collection-hero h1 { margin: 0; font-family: var(--heading); font-size: clamp(34px, 9vw, 54px); font-weight: 600; line-height: 1.16; letter-spacing: -.02em; }
.section-heading { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.text-link { display: inline-flex; gap: 12px; padding: 8px 0 4px; border-bottom: 1px solid var(--gold); font-size: 13px; font-weight: 700; }

.category-strip { background: var(--ivory); }
.carousel-controls { max-width: var(--container); margin: -12px auto 18px; display: flex; justify-content: flex-end; gap: 10px; }
.carousel-controls button { width: 46px; height: 46px; display: grid; place-items: center; padding: 0; border: 1px solid rgba(47,41,44,.18); border-radius: 50%; background: var(--white); color: var(--fig); box-shadow: 0 8px 24px rgba(36,21,31,.08); font-size: 20px; line-height: 1; cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease; }
.carousel-controls button:active { transform: scale(.94); }
.category-scroll { display: grid; grid-auto-flow: column; grid-auto-columns: 82%; gap: 12px; overflow-x: auto; padding: 0 18px 16px; margin: 0 -18px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.category-scroll::-webkit-scrollbar, .related-row::-webkit-scrollbar { display: none; }
.category-tile { height: 400px; position: relative; overflow: hidden; scroll-snap-align: start; color: var(--white); }
.category-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(31,15,24,.76), transparent 60%); }
.category-tile > span { position: absolute; z-index: 2; left: 20px; right: 20px; bottom: 20px; }
.category-tile strong { display: block; font-family: var(--heading); font-size: 27px; font-weight: 600; line-height: 1.16; }
.category-tile small { margin-top: 10px; display: flex; justify-content: space-between; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.catalog-section { max-width: none; }
.catalog-section > *, .accessory-showcase > * { max-width: var(--container); margin-left: auto; margin-right: auto; }
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px 10px; }
.product-card { min-width: 0; }
.product-card__image { position: relative; display: block; aspect-ratio: 4 / 5.25; overflow: hidden; background: var(--ivory); }
.product-card__image img { transition: transform .35s ease; }
.product-card__badge { position: absolute; left: 8px; top: 8px; padding: 5px 8px; background: rgba(255,255,255,.9); color: var(--fig); font-size: 9px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.product-card__meta { display: block; padding-top: 11px; }
.product-card__meta strong { display: block; font-size: 14px; font-weight: 700; line-height: 1.35; }
.product-card__meta small { display: block; margin-top: 4px; color: var(--muted); font-size: 10px; }
.product-card__meta b { display: block; margin-top: 7px; color: var(--mulberry); font-size: 13px; font-variant-numeric: tabular-nums; }

.traditional-feature { padding: 0; display: grid; background: var(--fig); color: var(--white); }
.traditional-feature__media { height: 480px; overflow: hidden; }
.traditional-feature__media--second { display: none; }
.traditional-feature__copy { padding: 54px 22px 64px; }
.traditional-feature__copy p:not(.eyebrow) { margin: 18px 0 28px; color: rgba(255,255,255,.75); }

.selected-story { display: grid; gap: 42px; background: var(--ivory); }
.selected-story__collage { min-height: 460px; position: relative; }
.selected-story__collage img { position: absolute; box-shadow: var(--shadow); }
.selected-story__worn { left: 0; top: 0; width: 72%; height: 88%; }
.selected-story__studio { right: 0; bottom: 0; width: 49%; height: 60%; border: 8px solid var(--ivory); }
.selected-story__copy > p:not(.eyebrow) { color: var(--muted); }
.selection-points { margin: 26px 0; display: grid; gap: 0; border-top: 1px solid var(--border); }
.selection-points span { padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 13px; font-weight: 600; }
.selection-points b { margin-right: 14px; color: var(--gold); font-size: 10px; }

.accessory-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.accessory-card { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.accessory-card--large { grid-column: 1 / -1; aspect-ratio: 1 / 1.05; }
.accessory-card::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(to top, rgba(34,18,27,.74), transparent); }
.accessory-card span { position: absolute; z-index: 2; left: 16px; right: 16px; bottom: 14px; display: flex; justify-content: space-between; gap: 10px; color: var(--white); }
.accessory-card strong { font-size: 13px; }
.accessory-card b { font-size: 11px; white-space: nowrap; }

.closing-cta { padding: 62px 22px; display: grid; gap: 28px; background: var(--mulberry); color: var(--white); }
.closing-cta p { margin: 0 0 8px; color: var(--rose); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }

.location-section { padding: 72px 18px; display: grid; gap: 34px; background: var(--ivory); }
.location-section__copy h2 { max-width: 660px; margin: 0; font-family: var(--heading); font-size: clamp(34px, 9vw, 56px); font-weight: 600; line-height: 1.12; letter-spacing: -.02em; }
.location-section__copy > p:not(.eyebrow) { max-width: 620px; margin: 20px 0 26px; color: var(--muted); }
.location-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 24px; }
.location-section__map { min-height: 390px; position: relative; overflow: hidden; background: #e8e3dc; box-shadow: var(--shadow); }
.location-section__map iframe { width: 100%; height: 100%; min-height: 390px; border: 0; filter: saturate(.72) sepia(.12); }
.location-section__map span { position: absolute; left: 16px; bottom: 16px; padding: 9px 13px; background: rgba(255,255,255,.94); color: var(--fig); font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }

.site-footer { padding: 58px 22px 24px; display: grid; gap: 40px; background: var(--fig); color: var(--white); }
.wordmark--footer { color: var(--white); }
.site-footer__brand p { max-width: 320px; color: rgba(255,255,255,.62); font-size: 13px; }
.site-footer__links { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.site-footer__links div { display: flex; flex-direction: column; align-items: flex-start; }
.site-footer__links strong { margin-bottom: 12px; color: var(--rose); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.site-footer__links a { padding: 4px 0; color: rgba(255,255,255,.78); font-size: 12px; }
.site-footer__note { margin: 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.4); font-size: 10px; }

.collection-hero { padding: 64px 18px 42px; background: var(--white); text-align: center; }
.collection-hero p:last-child { max-width: 570px; margin: 14px auto 0; color: var(--muted); }
.filter-row { padding: 0 18px 18px; display: flex; gap: 8px; overflow-x: auto; background: var(--white); }
.filter-row a { min-height: 44px; display: inline-flex; align-items: center; padding: 10px 17px; border: 1px solid var(--border); border-radius: 100px; font-size: 12px; font-weight: 700; white-space: nowrap; }
.filter-row a.is-active { background: var(--fig); color: var(--white); border-color: var(--fig); }
.collection-products { max-width: var(--container); margin: auto; }

.product-main { max-width: 1420px; margin: auto; padding: 20px 18px 0; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; color: var(--muted); font-size: 10px; }
.product-detail { display: grid; gap: 34px; }
.product-gallery__main { aspect-ratio: 4 / 5; overflow: hidden; background: var(--white); }
.product-gallery__main img { transition: opacity .18s ease; }
.product-gallery__thumbs { margin-top: 8px; display: grid; grid-auto-flow: column; grid-auto-columns: 28%; gap: 8px; overflow-x: auto; }
.product-gallery__thumbs button { aspect-ratio: 4 / 5; padding: 0; border: 1px solid transparent; background: var(--white); opacity: .62; cursor: pointer; }
.product-gallery__thumbs button.is-active { border-color: var(--mulberry); opacity: 1; }
.product-info { padding-bottom: 24px; }
.product-info__category { margin: 0 0 10px; color: var(--mulberry); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.product-info h1 { margin: 0; font-family: var(--heading); font-size: clamp(38px, 10vw, 62px); font-weight: 600; line-height: 1.12; letter-spacing: -.02em; }
.product-info__price { margin: 12px 0 25px; color: var(--mulberry); font-size: 26px; font-weight: 700; font-variant-numeric: tabular-nums; }
.product-facts { margin: 0 0 22px; padding: 18px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.product-facts div { display: grid; grid-template-columns: 100px 1fr; padding: 5px 0; }
.product-facts dt { color: var(--muted); }
.product-facts dd { margin: 0; font-weight: 600; }
.product-info__description { margin: 0 0 24px; }
.question-link { min-height: 44px; display: block; margin: 14px auto 0; border: 0; border-bottom: 1px solid var(--mulberry); background: transparent; color: var(--mulberry); cursor: pointer; }
.product-about { margin-top: 24px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.product-about summary { min-height: 58px; display: flex; align-items: center; justify-content: space-between; font-family: var(--heading); font-size: 18px; font-weight: 600; cursor: pointer; list-style: none; }
.product-about summary::-webkit-details-marker { display: none; }
.product-about p { margin: 0 0 20px; color: var(--muted); }
.related { margin: 30px -18px 0; background: var(--white); }
.related-row { display: grid; grid-auto-flow: column; grid-auto-columns: 72%; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.related-card { scroll-snap-align: start; }
.related-card__image { aspect-ratio: 4 / 5; overflow: hidden; }
.related-card__meta { padding: 13px 2px; }
.related-card__meta strong, .related-card__meta small { display: block; }
.related-card__meta strong { font-size: 14px; }
.related-card__meta small { margin-top: 4px; color: var(--muted); font-size: 10px; }
.related-card__meta b { display: block; margin-top: 7px; color: var(--mulberry); font-size: 13px; }
.whatsapp-fab { position: fixed; z-index: 105; right: 16px; bottom: calc(var(--credit-bar-height) + 14px); min-width: 58px; height: 58px; padding: 0 17px; display: flex; align-items: center; justify-content: center; gap: 9px; border-radius: 100px; background: #25d366; color: #fff; box-shadow: 0 14px 34px rgba(18,92,47,.28); font-size: 12px; font-weight: 800; }
.whatsapp-fab svg { width: 26px; height: 26px; fill: currentColor; }
.whatsapp-fab span { display: none; }
.atelier-credit-bar { position: fixed; z-index: 104; right: 0; bottom: 0; left: 0; height: var(--credit-bar-height); display: flex; align-items: center; justify-content: center; padding: 0 16px; background: rgba(36,21,31,.97); color: rgba(255,255,255,.74); box-shadow: 0 -1px 0 rgba(255,255,255,.08), 0 -7px 22px rgba(36,21,31,.12); backdrop-filter: blur(8px); font-size: 10px; letter-spacing: .055em; line-height: 1; text-align: center; }
.atelier-credit-bar strong { color: var(--white); font-weight: 800; }
.demo-modal { width: min(540px, calc(100vw - 32px)); max-height: calc(100dvh - 32px); padding: 0; border: 0; background: transparent; color: var(--ink); }
.demo-modal::backdrop { background: rgba(25,12,20,.72); backdrop-filter: blur(4px); }
.demo-modal__inner { position: relative; padding: 38px 24px 28px; background: var(--white); box-shadow: var(--shadow); }
.demo-modal__close { position: absolute; top: 12px; right: 12px; width: 40px; height: 40px; border: 1px solid var(--border); border-radius: 50%; background: var(--white); color: var(--fig); font-size: 25px; line-height: 1; cursor: pointer; }
.demo-modal h2 { margin: 0; font-family: var(--heading); font-size: clamp(28px, 8vw, 42px); font-weight: 600; line-height: 1.14; }
.demo-modal p:not(.eyebrow) { margin: 18px 0 24px; color: var(--muted); }
.demo-modal__actions { display: grid; gap: 10px; }
.demo-modal__actions .button { width: 100%; }

@media (min-width: 700px) {
  .site-header { height: 82px; padding: 12px var(--gutter); grid-template-columns: auto 1fr; }
  .menu-toggle, .menu-overlay { display: none !important; }
  .site-nav { position: static; width: auto; padding: 0; flex-direction: row; justify-content: flex-end; gap: clamp(16px, 3vw, 38px); background: transparent; box-shadow: none; transform: none; visibility: visible; }
  .site-nav a { width: auto; padding: 10px 0; border: 0; font-family: var(--body); font-size: 11px; letter-spacing: .07em; text-transform: uppercase; }
  .hero-v2 { min-height: 0; height: calc(100vh - 82px); height: calc(100dvh - 82px); max-height: none; }
  .hero-v2__image { object-position: center top; }
  .hero-v2__shade { background: linear-gradient(90deg, rgba(25,12,20,.83), rgba(25,12,20,.25) 55%, transparent 78%); }
  .hero-v2__copy { left: var(--gutter); right: auto; bottom: 50%; width: 49%; max-width: 660px; padding: 0; transform: translateY(50%); }
  .hero-v2 h1 { font-size: clamp(54px, 5vw, 76px); }
  .category-strip, .catalog-section, .accessory-showcase, .selected-story, .related, .collection-products { padding: 100px var(--gutter); }
  .section-heading { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .category-scroll { max-width: var(--container); margin: auto; padding: 0; grid-auto-flow: unset; grid-template-columns: repeat(3, 1fr); overflow: visible; }
  .category-strip > .carousel-controls, .related > .carousel-controls { display: none; }
  .category-tile { height: 500px; }
  .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 52px 16px; }
  .product-card__meta { display: flex; justify-content: space-between; gap: 12px; }
  .product-card__meta strong { font-size: 16px; }
  .product-card__meta b { margin-top: 0; white-space: nowrap; }
  .traditional-feature { min-height: 720px; grid-template-columns: 1fr .78fr .78fr; align-items: stretch; }
  .traditional-feature__media { height: auto; }
  .traditional-feature__media--second { display: block; }
  .traditional-feature__copy { padding: 70px 46px; display: flex; flex-direction: column; justify-content: center; }
  .selected-story { grid-template-columns: 1.1fr .9fr; align-items: center; gap: clamp(50px, 8vw, 120px); }
  .selected-story__collage { min-height: 650px; }
  .accessory-layout { grid-template-columns: 1.25fr .8fr .8fr; gap: 14px; }
  .accessory-card, .accessory-card--large { grid-column: auto; aspect-ratio: 4 / 5; }
  .closing-cta { padding: 90px var(--gutter); grid-template-columns: 1fr auto; align-items: center; }
  .location-section { padding: 100px var(--gutter); grid-template-columns: .85fr 1.15fr; align-items: center; gap: clamp(50px, 7vw, 100px); }
  .site-footer { padding: 70px var(--gutter) 24px; grid-template-columns: 1fr 1fr; }
  .site-footer__note { grid-column: 1 / -1; }
  .collection-hero { padding: 86px var(--gutter) 48px; }
  .filter-row { justify-content: center; padding-bottom: 24px; }
  .product-detail { grid-template-columns: minmax(0, 1.35fr) minmax(340px, .8fr); gap: clamp(48px, 7vw, 100px); align-items: start; }
  .product-gallery { display: grid; grid-template-columns: minmax(0, 1fr) 118px; gap: 10px; }
  .product-gallery__thumbs { margin: 0; grid-auto-flow: row; grid-auto-columns: auto; grid-template-columns: 1fr; align-content: start; overflow: visible; }
  .product-info { position: sticky; top: 28px; padding-top: 40px; }
  .related { margin: 80px calc(var(--gutter) * -1) 0; }
  .related-row { grid-auto-flow: unset; grid-template-columns: repeat(4, 1fr); overflow: visible; }
  .whatsapp-fab { right: 24px; bottom: calc(var(--credit-bar-height) + 20px); }
  .whatsapp-fab span { display: inline; }
  .demo-modal__inner { padding: 46px 42px 34px; }
}

@media (hover: hover) {
  .product-card:hover img, .category-tile:hover img, .accessory-card:hover img, .related-card:hover img { transform: scale(1.025); }
  .product-card img, .category-tile img, .accessory-card img, .related-card img { transition: transform .35s ease; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
