:root {
    --ink: #2d2527;
    --ink-soft: #665c5e;
    --paper: #fbf8f3;
    --paper-deep: #f0e7df;
    --white: #fff;
    --surface: #23352d;
    --accent: #7b2945;
    --accent-soft: #e7bdc4;
    --accent-text: #7b2945;
    --green: #177c55;
    --line: rgba(45,37,39,.14);
    --shadow: 0 24px 70px rgba(48,32,36,.14);
    --serif: Georgia, 'Times New Roman', serif;
    --sans: Arial, Helvetica, sans-serif;
}

body.theme-forest { --surface: #23352d; --accent: #7b2945; --accent-soft: #e7bdc4; --accent-text: #7b2945; }
body.theme-bordeaux { --surface: #5b1f2e; --accent: #8f3850; --accent-soft: #e2b6c1; --accent-text: #7d2c43; }
body.theme-navy { --surface: #1e3557; --accent: #315f91; --accent-soft: #b9cce0; --accent-text: #294f78; }
body.theme-terracotta { --surface: #693b2d; --accent: #a54f34; --accent-soft: #e5bcad; --accent-text: #8e422f; }
body.theme-plum { --surface: #4d294f; --accent: #805181; --accent-soft: #d4b3d4; --accent-text: #6d3c6e; }
body.theme-charcoal { --surface: #292d30; --accent: #5e676d; --accent-soft: #c7cdd0; --accent-text: #4d575c; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 9rem; }
body { margin: 0; color: var(--ink); background: var(--paper); font: 1rem/1.7 var(--sans); }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.shell { width: min(1180px, calc(100% - 3rem)); margin-inline: auto; }
.section { padding: clamp(5rem, 9vw, 8.5rem) 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 2000; padding: .75rem 1rem; color: #fff; background: var(--surface); }
.skip-link:focus { top: 1rem; }

.sticky-shell { position: sticky; top: 0; z-index: 1000; }
.contact-ribbon { color: #fff; background: var(--surface); }
.contact-ribbon__inner { min-height: 2.8rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.contact-ribbon__message { font-size: .82rem; letter-spacing: .025em; opacity: .85; }
.contact-ribbon__actions { display: flex; align-self: stretch; }
.direct-link { display: inline-flex; align-items: center; gap: .45rem; padding: .45rem 1rem; text-decoration: none; font-size: .84rem; font-weight: 800; }
.direct-link:hover, .direct-link:focus-visible { background: rgba(255,255,255,.1); }
.direct-link--whatsapp { background: var(--green); }

.site-header { border-bottom: 1px solid var(--line); background: rgba(251,248,243,.96); backdrop-filter: blur(15px); }
.header-inner { min-height: 5.25rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: flex; flex-direction: column; text-decoration: none; line-height: 1.1; }
.brand img { width: auto; max-width: 210px; max-height: 52px; object-fit: contain; }
.brand strong { font: italic 400 1.65rem/1 var(--serif); }
.brand span { margin-top: .35rem; color: var(--accent-text); font-size: .65rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 1.8rem; }
.main-nav a { position: relative; text-decoration: none; font-size: .82rem; font-weight: 800; letter-spacing: .02em; }
.main-nav > a:not(.nav-appointment)::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -.45rem; height: 2px; background: var(--accent); transition: right .2s ease; }
.main-nav > a:not(.nav-appointment):hover::after, .main-nav > a:not(.nav-appointment):focus-visible::after { right: 0; }
.nav-appointment { padding: .72rem 1.05rem; color: #fff; background: var(--accent); }
.cart-label-mobile { display: none; }
.menu-toggle { display: none; width: 2.9rem; height: 2.9rem; padding: .65rem; border: 1px solid var(--line); background: transparent; }
.menu-toggle > span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--ink); }
.demo-notice { padding: .5rem 1rem; color: #fff; background: var(--accent); text-align: center; font-size: .76rem; font-weight: 800; }

.eyebrow { margin: 0 0 1rem; color: var(--accent-soft); font-size: .7rem; font-weight: 900; letter-spacing: .22em; text-transform: uppercase; }
.eyebrow--dark { color: var(--accent-text); }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2 { margin: 0; font-family: var(--serif); font-weight: 400; letter-spacing: -.035em; }
h1 { max-width: 720px; font-size: clamp(3.2rem, 6.7vw, 6.7rem); line-height: .93; }
h2 { font-size: clamp(2.5rem, 5vw, 4.8rem); line-height: 1; }
.button { display: inline-flex; min-height: 3.3rem; align-items: center; justify-content: center; padding: .8rem 1.3rem; border: 1px solid transparent; text-decoration: none; font-size: .78rem; font-weight: 900; letter-spacing: .055em; text-transform: uppercase; cursor: pointer; }
.button--dark { color: #fff; background: var(--surface); }
.button--dark:hover, .button--dark:focus-visible { background: var(--accent); }
.text-link { display: inline-flex; align-items: center; gap: .55rem; color: var(--accent-text); text-decoration: none; font-weight: 900; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span, .text-link:focus-visible span { transform: translateX(.3rem); }

.hero { position: relative; padding: clamp(4rem, 8vw, 7.5rem) 0 clamp(5rem, 9vw, 8rem); overflow: hidden; background: linear-gradient(90deg, var(--paper) 0 69%, var(--paper-deep) 69% 100%); }
.hero::before { content: ''; position: absolute; width: 25rem; height: 25rem; left: -13rem; bottom: -15rem; border: 1px solid var(--accent-soft); border-radius: 50%; }
.hero__layout { display: grid; grid-template-columns: minmax(0, .92fr) minmax(390px, .78fr); gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.hero__content { position: relative; z-index: 2; }
.hero__intro { max-width: 620px; margin: 1.8rem 0 2rem; color: var(--ink-soft); font-size: clamp(1.05rem, 1.5vw, 1.25rem); }
.hero__actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.hero__availability { margin: 2.2rem 0 0; color: var(--ink-soft); font-size: .82rem; font-weight: 800; }
.hero__availability span { color: var(--accent); }
.hero__visual { position: relative; padding: 1.3rem 1.3rem 0 0; }
.hero__frame { position: relative; min-height: 610px; overflow: hidden; box-shadow: var(--shadow); }
.hero__frame::before { content: ''; position: absolute; inset: .9rem; z-index: 1; border: 1px solid rgba(255,255,255,.7); pointer-events: none; }
.hero__image { width: 100%; height: 610px; object-fit: cover; }
.hero__featured { position: relative; z-index: 2; width: calc(100% - 1.3rem); display: grid; grid-template-columns: 1fr auto; gap: .15rem 1rem; margin: 1rem 0 0 auto; padding: 1.15rem 1.35rem; color: #fff; background: var(--accent); box-shadow: 0 15px 40px rgba(64,30,43,.16); text-decoration: none; }
.hero__featured span { grid-column: 1 / -1; font-size: .72rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; opacity: .88; }
.hero__featured strong { font: 400 1.35rem/1.25 var(--serif); }
.hero__featured small { align-self: center; font-size: .82rem; font-weight: 800; white-space: nowrap; }

.introduction { background: #fff; }
.atelier-layout { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: clamp(3rem, 9vw, 9rem); align-items: start; }
.atelier-heading { position: relative; min-height: 330px; padding: 2rem 2rem 3rem 0; }
.atelier-heading::after { content: ''; position: absolute; left: 0; bottom: 0; width: 38%; height: 5px; background: var(--accent); }
.atelier-mark { position: absolute; z-index: 0; right: 1rem; bottom: -2rem; color: var(--paper-deep); font: italic 400 15rem/1 var(--serif); pointer-events: none; }
.atelier-heading > *:not(.atelier-mark) { position: relative; z-index: 1; }
.reading-copy { padding-top: 1.6rem; }
.reading-copy p { margin: 0 0 1.25rem; color: var(--ink-soft); font-size: 1.08rem; }
.reading-copy p:first-of-type::first-letter { float: left; margin: .08rem .55rem 0 0; color: var(--accent); font: 400 4rem/.75 var(--serif); }
.reading-copy .text-link { margin-top: .8rem; }

.catalogue { background: var(--paper); }
.section-heading { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section-heading > p:not(.eyebrow) { max-width: 620px; margin: 1.2rem 0 0; color: var(--ink-soft); }
.catalogue-heading { display: grid; grid-template-columns: 1fr .85fr; max-width: none; column-gap: 4rem; align-items: end; }
.catalogue-heading .eyebrow { grid-column: 1 / -1; }
.catalogue-heading > p:last-child { margin: 0 0 .3rem; }
.product-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 2.1rem 1.5rem; }
.product-card { grid-column: span 4; display: flex; flex-direction: column; min-width: 0; background: #fff; box-shadow: 0 10px 35px rgba(48,32,36,.07); }
.product-card--featured { grid-column: span 8; display: grid; grid-template-columns: minmax(0,1fr) minmax(330px,.9fr); }
.product-media { min-width: 0; padding: .75rem; background: #f3ede6; }
.product-media__main { position: relative; width: 100%; height: 330px; padding: 0; overflow: hidden; border: 0; background: #ece5dd; cursor: zoom-in; }
.product-card--featured .product-media__main { height: 470px; }
.product-media__main img { width: 100%; height: 100%; object-fit: contain; transition: transform .45s ease; }
.product-media__main:hover img { transform: scale(1.025); }
.product-media__main > span { position: absolute; right: .6rem; bottom: .6rem; padding: .42rem .6rem; color: #fff; background: rgba(45,37,39,.78); font-size: .66rem; font-weight: 800; }
.product-thumbnails { display: flex; gap: .45rem; margin-top: .6rem; overflow-x: auto; }
.product-thumbnail { flex: 0 0 62px; height: 48px; padding: 2px; border: 1px solid transparent; background: #fff; cursor: pointer; }
.product-thumbnail.is-active { border-color: var(--accent); }
.product-thumbnail img { width: 100%; height: 100%; object-fit: contain; }
.product-card__body { flex: 1; display: flex; flex-direction: column; padding: 1.5rem; }
.product-card--featured .product-card__body { justify-content: center; padding: clamp(1.6rem, 3vw, 2.35rem); }
.product-meta { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .55rem .8rem; align-items: center; }
.product-category { color: var(--accent-text); font-size: .66rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.product-state { padding: .24rem .45rem; color: #305d45; background: #e3f0e8; font-size: .62rem; font-weight: 900; }
.product-state--on_order { color: #775a22; background: #f6ebcb; }
.product-state--unavailable { color: #7d3030; background: #f4dddd; }
.product-card h3 { margin: .8rem 0 .45rem; font: 400 1.65rem/1.12 var(--serif); }
.product-card--featured h3 { font-size: clamp(1.9rem, 2.4vw, 2.55rem); }
.product-card__body > p { margin: 0 0 1.2rem; color: var(--ink-soft); font-size: .91rem; }
.product-card__bottom { display: flex; justify-content: space-between; gap: 1rem; align-items: flex-end; margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line); }
.product-price { display: flex; flex-direction: column; }
.product-price > strong { font: 400 1.35rem/1 var(--serif); }
.product-selected-count { margin-top: .38rem; color: var(--accent-text); font-size: .68rem; font-weight: 800; }
.add-product { min-height: 2.8rem; padding: .55rem .9rem; border: 1px solid var(--surface); color: #fff; background: var(--surface); font-size: .72rem; font-weight: 900; cursor: pointer; }
.add-product:hover, .add-product:focus-visible, .add-product.is-added { border-color: var(--accent); background: var(--accent); }
.add-product:disabled { border-color: #b8b1ad; background: #b8b1ad; cursor: not-allowed; }

.services { color: #fff; background: var(--surface); }
.services-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(3rem, 8vw, 8rem); }
.section-heading--light > p:not(.eyebrow) { color: rgba(255,255,255,.7); }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.18); }
.service-card { position: relative; min-height: 260px; padding: 2rem; border-right: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
.service-card:nth-child(even) { border-right: 0; }
.service-card > span { color: var(--accent-soft); font: italic 400 2.8rem/1 var(--serif); }
.service-card h3 { margin: 1.1rem 0 .55rem; font: 400 1.55rem/1.15 var(--serif); }
.service-card p { margin: 0; color: rgba(255,255,255,.72); font-size: .9rem; }
.service-card strong { display: block; margin-top: 1rem; color: var(--accent-soft); font-size: .73rem; }
.service-card--featured { background: rgba(255,255,255,.055); }

.process { background: #fff; }
.process-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 8vw, 8rem); }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 70px 1fr; gap: 1.2rem; padding: 1.55rem 0; border-bottom: 1px solid var(--line); }
.process-list li > span { color: var(--accent); font: italic 400 2.3rem/1 var(--serif); }
.process-list h3 { margin: 0 0 .3rem; font: 400 1.35rem/1.15 var(--serif); }
.process-list p { margin: 0; color: var(--ink-soft); font-size: .9rem; }

.order-section { position: relative; color: var(--ink); background: var(--paper-deep); }
.order-section::before { content: ''; position: absolute; inset: 0 50% 0 0; background: var(--accent); }
.order-grid { position: relative; display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(3rem, 7vw, 6rem); align-items: start; }
.order-copy { color: #fff; padding-right: 2rem; }
.order-copy h2 { margin-bottom: 1.3rem; }
.order-copy > p:not(.eyebrow) { color: rgba(255,255,255,.78); }
.order-direct { display: grid; gap: .7rem; margin: 2rem 0; }
.order-direct a { display: flex; flex-direction: column; padding: 1rem; border: 1px solid rgba(255,255,255,.32); text-decoration: none; }
.order-direct a:hover, .order-direct a:focus-visible { background: rgba(255,255,255,.09); }
.order-direct span { font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; opacity: .7; }
.order-direct strong { margin-top: .2rem; font-size: 1.05rem; }
.practical-info { margin: 2rem 0 0; }
.practical-info div { display: grid; grid-template-columns: 90px 1fr; gap: 1rem; padding: .75rem 0; border-top: 1px solid rgba(255,255,255,.22); }
.practical-info dt { font-weight: 900; }
.practical-info dd { margin: 0; opacity: .78; }
.order-panel { background: #fff; box-shadow: var(--shadow); }
.cart-box { padding: clamp(1.5rem, 4vw, 2.5rem); background: #f8f0f1; border-bottom: 1px solid var(--line); }
.cart-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.cart-heading h3, .order-form h3 { margin: 0; font: 400 2rem/1.1 var(--serif); }
.cart-heading > span { color: var(--ink-soft); font-size: .76rem; }
.cart-empty { margin: 1rem 0; color: var(--ink-soft); }
.cart-lines { display: grid; gap: .7rem; margin-top: 1rem; }
.cart-line { display: grid; grid-template-columns: minmax(120px,1fr) auto auto; gap: .65rem 1rem; align-items: center; padding: .8rem 0; border-top: 1px solid var(--line); }
.cart-line > div:first-child { display: flex; flex-direction: column; }
.cart-line > div:first-child span { color: var(--ink-soft); font-size: .72rem; }
.quantity-control { display: flex; align-items: center; border: 1px solid var(--line); background: #fff; }
.quantity-control button { width: 2rem; height: 2rem; border: 0; background: transparent; cursor: pointer; }
.quantity-control b { min-width: 1.5rem; text-align: center; font-size: .8rem; }
.remove-line { grid-column: 1 / -1; justify-self: start; padding: 0; border: 0; color: var(--accent); background: transparent; font-size: .72rem; text-decoration: underline; cursor: pointer; }
.cart-total { display: flex; justify-content: space-between; gap: 1rem; margin: 1rem 0; padding-top: 1rem; border-top: 2px solid var(--ink); }
.cart-total strong { font-size: 1.18rem; }
.order-form { padding: clamp(1.5rem, 4vw, 2.5rem); }
.form-intro { margin: .55rem 0 1.6rem; color: var(--ink-soft); }
.order-form > label:not(.checkbox), .order-form .form-row label { display: grid; gap: .35rem; margin-bottom: 1rem; font-size: .84rem; font-weight: 900; }
.order-form label > span { color: #a01f3f; }
.order-form label small { color: #736a64; font-weight: 400; }
.order-form input, .order-form select, .order-form textarea { width: 100%; min-height: 3rem; padding: .65rem .75rem; border: 1px solid #cfc7c1; border-radius: 0; color: var(--ink); background: #fff; }
.order-form textarea { resize: vertical; }
.order-form input:focus, .order-form select:focus, .order-form textarea:focus { outline: 2px solid var(--accent-soft); outline-offset: 1px; border-color: var(--accent); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.checkbox { display: grid; grid-template-columns: 1.15rem 1fr; gap: .55rem; margin: 1rem 0 1.2rem; align-items: start; font-size: .78rem; line-height: 1.5; }
.checkbox input { min-height: 0; margin-top: .2rem; }
.trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-note { margin: .8rem 0 0; color: var(--ink-soft); font-size: .76rem; line-height: 1.45; }
.form-status { min-height: 1.6rem; margin: .85rem 0 0; font-size: .84rem; font-weight: 800; }
.form-status.is-success { color: #14623f; }
.form-status.is-error { color: #9d1737; }

.faq { background: #fff; }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(3rem, 8vw, 8rem); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 1.25rem 2rem 1.25rem 0; cursor: pointer; font-weight: 900; }
.faq-list p { margin: -.4rem 2rem 1.3rem 0; color: var(--ink-soft); }

.site-footer { padding: 4rem 0 6rem; color: #fff; background: var(--surface); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: .45rem; }
.footer-grid strong { font: italic 400 1.6rem/1.2 var(--serif); }
.footer-grid span, .footer-grid a { color: rgba(255,255,255,.74); font-size: .84rem; }
.footer-bottom { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.5); font-size: .75rem; }
.mobile-contact { display: none; }

.product-lightbox { width: min(980px, calc(100% - 2rem)); max-width: none; padding: 0; overflow: hidden; border: 0; color: var(--ink); background: #fff; box-shadow: 0 28px 90px rgba(0,0,0,.42); }
.product-lightbox::backdrop { background: rgba(20,12,15,.85); backdrop-filter: blur(5px); }
.product-lightbox__bar { min-height: 3.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .7rem 1rem; border-bottom: 1px solid var(--line); }
.product-lightbox__bar p { margin: 0; font-weight: 900; }
.product-lightbox__bar button { width: 2.35rem; height: 2.35rem; border: 0; border-radius: 50%; color: #fff; background: var(--accent); font-size: 1.6rem; cursor: pointer; }
.product-lightbox__stage { position: relative; min-height: min(68vh,680px); display: grid; place-items: center; padding: 1rem 4.5rem; background: #f3eee7; }
.product-lightbox__stage img { max-width: 100%; max-height: min(65vh,650px); object-fit: contain; }
.product-lightbox__previous, .product-lightbox__next { position: absolute; top: 50%; width: 3rem; height: 3rem; border: 0; border-radius: 50%; color: #fff; background: rgba(45,37,39,.82); font-size: 2rem; transform: translateY(-50%); cursor: pointer; }
.product-lightbox__previous { left: .8rem; }
.product-lightbox__next { right: .8rem; }
.product-lightbox__position { margin: 0; padding: .55rem 1rem; color: var(--ink-soft); text-align: center; font-size: .76rem; font-weight: 900; }

.legal-body { background: #fff; }
.legal-page { width: min(820px, calc(100% - 2.5rem)); margin: 0 auto; padding: 4rem 0; }
.legal-page h1 { margin: .5rem 0 2rem; font: 400 clamp(2.7rem,7vw,4.5rem)/1 var(--serif); }
.legal-page h2 { margin: 2rem 0 .6rem; font-size: 1.5rem; }
.legal-page p { color: var(--ink-soft); }
.legal-warning { margin: 1.5rem 0 2.5rem; padding: 1rem; border-left: 4px solid var(--accent); background: var(--paper); }

@media (max-width: 980px) {
    .hero__layout { grid-template-columns: 1fr 380px; gap: 2.5rem; }
    .hero__frame, .hero__image { height: 520px; min-height: 0; }
    .product-card { grid-column: span 6; }
    .product-card--featured { grid-column: 1 / -1; }
    .services-layout, .process-layout { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
    html { scroll-padding-top: 8rem; }
    body { padding-bottom: 4.5rem; }
    .shell { width: min(100% - 1.5rem,720px); }
    .contact-ribbon__message { display: none; }
    .contact-ribbon__actions { width: 100%; justify-content: center; }
    .direct-link { flex: 1; justify-content: center; padding-inline: .5rem; }
    .header-inner { min-height: 4.5rem; }
    .brand img { max-width: 175px; max-height: 45px; }
    .menu-toggle { display: block; }
    .main-nav { position: absolute; left: 0; right: 0; top: 100%; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: .5rem .75rem 1rem; border-bottom: 1px solid var(--line); background: var(--paper); box-shadow: 0 16px 30px rgba(0,0,0,.12); }
    .main-nav.is-open { display: flex; }
    .main-nav a { padding: .85rem; }
    .nav-appointment { text-align: center; }
    .cart-label-desktop { display: none; }
    .cart-label-mobile { display: inline; }
    .hero { padding-top: 3.4rem; background: var(--paper); }
    .hero__layout { grid-template-columns: 1fr; }
    .hero__visual { width: min(100%,560px); justify-self: end; padding-left: 2rem; }
    .hero__frame, .hero__image { height: min(116vw,560px); }
    .atelier-layout, .catalogue-heading, .faq-grid { grid-template-columns: 1fr; }
    .atelier-heading { min-height: 260px; }
    .catalogue-heading > p:last-child { margin-top: 1.2rem; }
    .product-card, .product-card--featured { grid-column: 1 / -1; }
    .product-card--featured { display: flex; }
    .product-card--featured .product-media__main, .product-media__main { height: min(80vw,440px); }
    .order-section::before { display: none; }
    .order-section { padding-top: 0; }
    .order-grid { grid-template-columns: 1fr; }
    .order-copy { margin-inline: -.75rem; padding: 4.5rem .75rem; background: var(--accent); }
    .mobile-contact { position: fixed; z-index: 1100; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: 1fr 1fr; min-height: 4.2rem; color: #fff; background: var(--surface); box-shadow: 0 -8px 24px rgba(0,0,0,.2); }
    .mobile-contact a { display: flex; align-items: center; justify-content: center; gap: .45rem; text-decoration: none; font-size: .84rem; font-weight: 900; }
    .mobile-contact a:last-child { background: var(--accent); }
    .mobile-contact b { display: inline-grid; min-width: 1.45rem; min-height: 1.45rem; place-items: center; border-radius: 50%; color: var(--accent); background: #fff; font-size: .7rem; }
}

@media (max-width: 560px) {
    .section { padding: 4.5rem 0; }
    h1 { font-size: clamp(3rem,15vw,4.6rem); }
    h2 { font-size: clamp(2.45rem,12vw,3.7rem); }
    .hero__actions { align-items: flex-start; flex-direction: column; }
    .hero__visual { padding-left: 1rem; }
    .hero__featured { width: calc(100% - 1.3rem); grid-template-columns: 1fr; }
    .hero__featured small { margin-top: .15rem; white-space: normal; }
    .atelier-heading { min-height: 225px; }
    .atelier-mark { font-size: 11rem; }
    .service-grid { grid-template-columns: 1fr; }
    .service-card, .service-card:nth-child(even) { min-height: 0; border-right: 0; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .cart-heading { align-items: flex-start; flex-direction: column; }
    .cart-line { grid-template-columns: 1fr auto; }
    .cart-line > strong { grid-column: 1 / -1; }
    .footer-grid { grid-template-columns: 1fr; }
    .product-lightbox__stage { min-height: 58vh; padding-inline: 3.5rem; }
    .product-lightbox__previous, .product-lightbox__next { width: 2.6rem; height: 2.6rem; }
}

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