/* ============================================
   L'ATELIER JÒIA — Style premium
   Inspiration : APM Monaco / Joaillerie contemporaine
   ============================================ */

:root {
    --blue: #173A6B;
    --blue-dark: #0E2748;
    --gold: #C9A34A;
    --gold-dark: #A88536;
    --ivory: #F8F5EF;
    --beige: #EFE9DD;
    --beige-light: #F5F0E6;
    --white: #FFFFFF;
    --text: #1F2A44;
    --text-soft: #5C6A87;
    --line: rgba(23, 58, 107, 0.12);

    --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --script: 'Italianno', 'Pinyon Script', cursive;

    --header-h: 86px;
    --ease: cubic-bezier(.16,.84,.36,1);
    --shadow-soft: 0 20px 50px -25px rgba(23,58,107,.25);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--ivory);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }
button { background: none; border: none; cursor: pointer; font-family: inherit; color: inherit; }

.container { max-width: 1440px; margin: 0 auto; padding: 0 48px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; color: var(--blue); }
h2 em, h1 em { font-style: italic; font-weight: 300; color: var(--gold); }

.eyebrow {
    display: inline-block;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
    position: relative;
    padding-left: 32px;
}
.eyebrow::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 22px; height: 1px;
    background: var(--gold);
}
.eyebrow.light { color: var(--ivory); }
.eyebrow.light::before { background: var(--ivory); }

.section-title { font-size: clamp(2rem, 4.2vw, 3.6rem); line-height: 1.1; font-weight: 400; }
.section-title.light { color: var(--ivory); }
.section-title.light em { color: var(--gold); }

.section-sub { margin-top: 18px; color: var(--text-soft); font-size: 1.05rem; max-width: 560px; margin-left: auto; margin-right: auto; }

.section-head { text-align: center; margin-bottom: 64px; }
.section-cta { text-align: center; margin-top: 70px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 38px;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .4s var(--ease);
    position: relative;
    overflow: hidden;
}
.btn-primary { background: var(--blue); color: var(--ivory); border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); }

.btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--ivory); }
.btn-outline.light { color: var(--ivory); border-color: var(--ivory); }
.btn-outline.light:hover { background: var(--ivory); color: var(--blue); }

.btn-gold { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

.btn.small { padding: 11px 22px; font-size: 11px; }

.link-arrow { font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); font-weight: 500; transition: letter-spacing .3s var(--ease); white-space: nowrap; flex-shrink: 0; }
.link-arrow:hover { letter-spacing: .22em; }

.link-underline {
    display: inline-block;
    font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
    color: var(--blue); font-weight: 500;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--gold);
    transition: all .3s var(--ease);
}
.link-underline:hover { color: var(--gold); }

/* Hint under Commander links (products section) — sibling, not inside anchor */
.product-hint-insta {
    display: block;
    margin-top: 8px;
    font-size: 8.5px;
    font-weight: 400;
    letter-spacing: .02em;
    color: var(--text-soft);
    font-style: italic;
    line-height: 1.3;
}
.product-hint-insta::before { content: 'par MP Instagram'; }
html[lang="en"] .product-hint-insta::before { content: 'via Instagram DM'; }

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 101;
    background: var(--blue);
    color: var(--ivory);
    height: 36px;
    transition: transform .5s var(--ease);
}
.topbar-inner {
    position: relative;
    height: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.topbar-track {
    position: relative;
    height: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.topbar-msg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) translateY(20px);
    opacity: 0;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(248,245,239,.95);
    white-space: nowrap;
    transition: opacity .7s var(--ease), transform .7s var(--ease);
    padding: 0 16px;
}
.topbar-msg.active {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
}
.topbar-msg.leaving {
    opacity: 0;
    transform: translate(-50%, -50%) translateY(-20px);
}
.topbar-link {
    cursor: pointer;
    transition: color .3s var(--ease);
}
.topbar-link:hover { color: var(--gold); }
.topbar-link em {
    font-style: normal;
    color: var(--gold);
    margin-left: 4px;
    font-weight: 500;
    transition: color .3s var(--ease);
}
.topbar-link:hover em { color: var(--ivory); }

/* When user scrolls past hero zone, hide topbar */
.topbar.hidden { transform: translateY(-100%); }

/* Header selectors (lang + country/currency) */
.lang-toggle, .country-toggle {
    background: transparent;
    color: var(--ivory);
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .14em;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 10px;
    cursor: pointer;
    transition: color .3s var(--ease);
    border-radius: 4px;
    text-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.lang-toggle:hover, .country-toggle:hover { color: var(--gold); }
.lang-toggle .chev { transition: transform .3s var(--ease); opacity: .7; }
.lang-toggle[aria-expanded="true"] .chev { transform: rotate(180deg); }
.country-toggle .flag {
    display: inline-block;
    width: 22px;
    height: 16px;
    background-size: cover !important;
    background-position: center !important;
    border-radius: 2px;
    box-shadow: 0 0 0 0.5px rgba(0,0,0,.2);
    flex-shrink: 0;
    overflow: hidden;
}
.country-toggle .chev { transition: transform .3s var(--ease); opacity: .7; }
.country-toggle[aria-expanded="true"] .chev { transform: rotate(180deg); }

.header.scrolled .lang-toggle,
.header.scrolled .country-toggle {
    color: var(--blue);
    text-shadow: none;
}
.header.scrolled .lang-toggle:hover,
.header.scrolled .country-toggle:hover { color: var(--gold); }

.header-divider {
    width: 1px;
    height: 18px;
    background: rgba(248, 245, 239, .35);
    margin: 0 6px;
    transition: background .3s var(--ease);
}
.header.scrolled .header-divider { background: rgba(23, 58, 107, .18); }

/* Language dropdown */
.lang-panel {
    position: absolute;
    top: 100%;
    right: 24px;
    min-width: 180px;
    background: var(--ivory);
    color: var(--text);
    box-shadow: 0 30px 60px -20px rgba(23,58,107,.35);
    border: 1px solid var(--line);
    margin-top: 6px;
    z-index: 102;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.lang-panel.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.lang-list {
    list-style: none;
    margin: 0;
    padding: 6px 0;
}
.lang-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 18px;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text);
    cursor: pointer;
    transition: background .2s var(--ease), padding-left .2s var(--ease);
}
.lang-list li:hover {
    background: var(--beige-light);
    padding-left: 22px;
}
.lang-list li.selected {
    background: rgba(201,163,74,.1);
    color: var(--blue);
    font-weight: 500;
}
.lang-list .flag {
    display: inline-block;
    width: 22px;
    height: 16px;
    background-size: cover !important;
    background-position: center !important;
    border-radius: 2px;
    box-shadow: 0 0 0 0.5px rgba(0,0,0,.15);
    flex-shrink: 0;
    overflow: hidden;
}

/* Country panel dropdown */
.country-panel {
    position: absolute;
    top: 100%;
    right: 24px;
    width: 340px;
    max-width: calc(100vw - 32px);
    background: var(--ivory);
    color: var(--text);
    box-shadow: 0 30px 60px -20px rgba(23,58,107,.35);
    border: 1px solid var(--line);
    margin-top: 6px;
    z-index: 102;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.country-panel.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.country-panel-inner {
    display: flex;
    flex-direction: column;
    max-height: 60vh;
}
/* Embedded lang section inside country panel (mobile only) */
.country-lang-section {
    display: none;
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--beige-light);
}
.country-section-label {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}
.country-lang-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.country-lang-options button {
    padding: 11px 14px;
    background: transparent;
    border: 1px solid var(--line);
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text);
    cursor: pointer;
    transition: all .25s var(--ease);
    text-align: center;
}
.country-lang-options button:hover {
    border-color: var(--gold);
    color: var(--blue);
}
.country-lang-options button.selected {
    background: var(--blue);
    color: var(--ivory);
    border-color: var(--blue);
}

.country-search-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
    color: var(--text-soft);
}
.country-search-wrap svg { flex-shrink: 0; }
#countrySearch {
    flex: 1;
    border: none;
    background: transparent;
    font-family: var(--sans);
    font-size: 13px;
    color: var(--text);
    padding: 4px 0;
}
#countrySearch:focus { outline: none; }
.country-list {
    list-style: none;
    overflow-y: auto;
    padding: 6px 0;
    margin: 0;
    flex: 1;
}
.country-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 18px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--text);
    cursor: pointer;
    transition: background .2s var(--ease), padding-left .2s var(--ease);
}
.country-list li:hover {
    background: var(--beige-light);
    padding-left: 22px;
}
.country-list li.selected {
    background: rgba(201,163,74,.1);
    color: var(--blue);
    font-weight: 500;
}
.country-list .country-flag {
    display: inline-block;
    width: 28px;
    height: 21px;
    background-size: cover !important;
    background-position: center !important;
    border-radius: 2px;
    box-shadow: 0 0 0 0.5px rgba(0,0,0,.15);
    flex-shrink: 0;
    overflow: hidden;
}
.country-list .country-name { flex: 1; }
.country-list .country-currency {
    color: var(--text-soft);
    font-size: 11px;
}
.country-empty {
    padding: 24px 18px;
    color: var(--text-soft);
    font-size: 13px;
    text-align: center;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 36px; left: 0; right: 0;
    z-index: 100;
    background: transparent;
    transition: background .5s var(--ease), box-shadow .5s var(--ease), padding .5s var(--ease);
    padding: 12px 0;
}
.header-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
}

.header.scrolled {
    top: 0;
    background: rgba(248, 245, 239, 0.96);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    box-shadow: 0 2px 30px -15px rgba(23,58,107,.18);
    padding: 6px 0;
}

/* Subpage layout: header sits below topbar permanently */
body.subpage .header.scrolled { top: 36px; }
@media (max-width: 640px) {
    body.subpage .header.scrolled { top: 32px; }
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    line-height: 1;
    text-decoration: none;
    transition: opacity .3s var(--ease);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: auto;
}
.logo:hover { opacity: .8; }

.logo-img {
    display: block;
    height: 92px;
    width: auto;
    transition: height .5s var(--ease), opacity .5s var(--ease), filter .5s var(--ease);
}
.logo-img-light {
    filter: drop-shadow(0 4px 16px rgba(0,0,0,.35));
}
.logo-img-dark {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.header.scrolled .logo-img { height: 72px; }
.header.scrolled .logo-img-light { opacity: 0; filter: none; }
.header.scrolled .logo-img-dark { opacity: 1; }

.nav { flex-shrink: 0; margin-right: auto; }
.nav ul { display: flex; gap: 36px; list-style: none; }
.nav a {
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--ivory);
    padding: 8px 0;
    position: relative;
    transition: color .3s var(--ease);
    white-space: nowrap;
}
.nav a::after {
    content: '';
    position: absolute;
    left: 50%; bottom: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: all .35s var(--ease);
    transform: translateX(-50%);
}
.nav a:hover { color: var(--gold); }
.nav a:hover::after { width: 100%; }

.header.scrolled .nav a { color: var(--blue); }
.header.scrolled .nav a:hover { color: var(--gold); }

.header-icons {
    display: flex;
    gap: 4px;
    align-items: center;
    flex-shrink: 0;
}
.icon-btn {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    color: var(--ivory);
    border-radius: 50%;
    transition: all .3s var(--ease);
    position: relative;
}
.icon-btn svg { width: 19px; height: 19px; }
.icon-btn:hover { color: var(--gold); background: rgba(255,255,255,.08); }
.header.scrolled .icon-btn { color: var(--blue); }
.header.scrolled .icon-btn:hover { color: var(--gold); background: rgba(23,58,107,.06); }

/* ============================================
   SEARCH PANEL
   ============================================ */
.search-panel {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--ivory);
    border-top: 1px solid var(--line);
    box-shadow: 0 20px 50px -20px rgba(23,58,107,.18);
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s var(--ease);
}
.search-panel.open { max-height: 70vh; }
.search-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid var(--line);
}
.search-icon { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
#searchInput {
    flex: 1;
    border: none;
    background: transparent;
    font-family: var(--serif);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 400;
    color: var(--blue);
    padding: 8px 0;
    letter-spacing: .01em;
}
#searchInput:focus { outline: none; }
#searchInput::placeholder { color: var(--text-soft); font-style: italic; }
.search-close {
    width: 36px; height: 36px;
    border-radius: 50%;
    color: var(--blue);
    display: flex; align-items: center; justify-content: center;
    transition: background .3s var(--ease);
    flex-shrink: 0;
}
.search-close:hover { background: rgba(23,58,107,.06); }
.search-close svg { width: 18px; height: 18px; }

.search-results {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 32px;
    max-height: calc(70vh - 90px);
    overflow-y: auto;
}
.search-results:empty { padding: 0; }
.search-result {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    color: var(--blue);
    transition: padding-left .3s var(--ease);
}
.search-result:hover { padding-left: 8px; }
.search-result:last-child { border-bottom: none; }
.search-result img {
    width: 64px; height: 64px;
    object-fit: cover;
    background: var(--beige);
}
.search-result-info { flex: 1; }
.search-result-info h4 {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 4px;
}
.search-result-info span { color: var(--gold); font-size: .9rem; }
.search-arrow { color: var(--gold); font-size: 1.2rem; }
.search-empty {
    text-align: center;
    padding: 32px 16px;
    color: var(--text-soft);
    font-size: .95rem;
}
.search-empty em { color: var(--blue); font-style: italic; }

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 11px 9px;
    z-index: 110;
    border-radius: 50%;
    transition: background .3s var(--ease);
}
.menu-toggle span {
    width: 100%; height: 1.5px;
    background: var(--ivory);
    transition: all .35s var(--ease);
    transform-origin: center;
}
.header.scrolled .menu-toggle span { background: var(--blue); }
.menu-toggle.open { background: rgba(23,58,107,.06); }
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: var(--blue); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: var(--blue); }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    color: var(--ivory);
    overflow: hidden;
    padding-bottom: 90px;
}
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-img,
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero-img {
    transform: scale(1.08);
    animation: heroZoom 14s ease-out forwards;
    z-index: 1;
}
.hero-video {
    z-index: 2;
    opacity: 0;
    transition: opacity 1.2s var(--ease);
    pointer-events: none;
}
.hero-video.ready { opacity: 1; }

/* Hide native iOS Safari play overlay on background videos */
.hero-video::-webkit-media-controls,
.editorial-video::-webkit-media-controls,
.hero-video::-webkit-media-controls-start-playback-button,
.editorial-video::-webkit-media-controls-start-playback-button,
.hero-video::-webkit-media-controls-panel,
.editorial-video::-webkit-media-controls-panel {
    display: none !important;
    -webkit-appearance: none;
    opacity: 0;
    pointer-events: none;
}
@keyframes heroZoom {
    to { transform: scale(1); }
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg,
        rgba(14,39,72,.15) 0%,
        rgba(14,39,72,.05) 35%,
        rgba(14,39,72,.45) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 32px;
    text-align: center;
    animation: heroFade 1.6s var(--ease) .3s both;
}
@keyframes heroFade {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-script {
    font-family: var(--script);
    font-weight: 400;
    font-size: clamp(2.6rem, 5.2vw, 4.5rem);
    line-height: 1;
    color: var(--ivory);
    letter-spacing: .01em;
    text-shadow: 0 4px 30px rgba(0,0,0,.3);
    margin-bottom: 26px;
    white-space: nowrap;
}

.hero-link {
    display: inline-block;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--ivory);
    padding-bottom: 5px;
    border-bottom: 1px solid var(--ivory);
    transition: color .35s var(--ease), border-color .35s var(--ease), letter-spacing .35s var(--ease);
}
.hero-link:hover {
    color: var(--gold);
    border-color: var(--gold);
    letter-spacing: .36em;
}

/* ============================================
   ANNOUNCEMENT
   ============================================ */
.announcement {
    background: var(--blue);
    color: var(--ivory);
    padding: 18px 0;
    font-size: 11px;
    letter-spacing: .3em;
    text-transform: uppercase;
    overflow: hidden;
    position: relative;
}
.announcement::before,
.announcement::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.announcement::before {
    left: 0;
    background: linear-gradient(90deg, var(--blue), rgba(23,58,107,0));
}
.announcement::after {
    right: 0;
    background: linear-gradient(-90deg, var(--blue), rgba(23,58,107,0));
}
.announcement-track {
    display: flex;
    width: max-content;
    gap: 60px;
    animation: announcementScroll 38s linear infinite;
    will-change: transform;
}
.announcement-track p {
    flex-shrink: 0;
    white-space: nowrap;
    opacity: .92;
}
.announcement:hover .announcement-track { animation-play-state: paused; }
@keyframes announcementScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============================================
   COLLECTIONS
   ============================================ */
.collections { padding: 130px 0; background: var(--ivory); position: relative; }
.collections::before {
    content: '';
    position: absolute;
    top: 60px; right: -100px;
    width: 320px; height: 320px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    opacity: .12;
    pointer-events: none;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.collection-card {
    position: relative;
    overflow: hidden;
    display: block;
    background: var(--white);
}
.collection-media {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}
.collection-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}
.collection-card:hover .collection-media img { transform: scale(1.06); }

.collection-info {
    padding: 26px 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--line);
}
.collection-info h3 { font-size: 1.6rem; font-weight: 400; }

/* ============================================
   EDITORIAL BANNER
   ============================================ */
.editorial-banner {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.editorial-media { position: absolute; inset: 0; overflow: hidden; }
.editorial-media img,
.editorial-media video {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.editorial-img { z-index: 1; }
.editorial-video {
    z-index: 2;
    opacity: 0;
    transition: opacity 1.2s var(--ease);
    pointer-events: none;
}
.editorial-video.ready { opacity: 1; }
.editorial-media::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(14,39,72,.85) 0%, rgba(14,39,72,.35) 60%, transparent 100%);
}
.editorial-text {
    position: relative;
    z-index: 2;
    max-width: 540px;
    color: var(--ivory);
    padding: 100px 48px;
    margin-left: 8%;
}
.editorial-text h2 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.05;
    color: var(--ivory);
    margin-bottom: 24px;
}
.editorial-text h2 em { color: var(--gold); }
.editorial-text p { font-size: 1.05rem; margin-bottom: 36px; color: rgba(248,245,239,.9); font-weight: 300; }

/* Editorial reveal — staggered text appearance */
.editorial-reveal { opacity: 1; transform: none; transition: none; }
.editorial-reveal .eyebrow,
.editorial-reveal p,
.editorial-reveal .btn {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.editorial-reveal .text-lines {
    display: block;
}
.editorial-reveal .text-lines .line {
    display: block;
    overflow: hidden;
    line-height: inherit;
}
.editorial-reveal .text-lines .line > span {
    display: inline-block;
    transform: translateY(110%);
    transition: transform .8s var(--ease);
    will-change: transform;
}
.editorial-reveal.in .eyebrow {
    opacity: 1; transform: translateY(0);
    transition-delay: .05s;
}
.editorial-reveal.in .text-lines .line:nth-child(1) > span { transform: translateY(0); transition-delay: .15s; }
.editorial-reveal.in .text-lines .line:nth-child(2) > span { transform: translateY(0); transition-delay: .25s; }
.editorial-reveal.in .text-lines .line:nth-child(3) > span { transform: translateY(0); transition-delay: .35s; }
.editorial-reveal.in p {
    opacity: 1; transform: translateY(0);
    transition-delay: .5s;
}
.editorial-reveal.in .btn {
    opacity: 1; transform: translateY(0);
    transition-delay: .6s;
}

/* ============================================
   PRODUCTS
   ============================================ */
.products { padding: 130px 0; background: var(--beige-light); }
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px 24px;
}
.product-card {
    background: var(--white);
    position: relative;
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.product-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-3px); }

.product-media {
    position: relative;
    aspect-ratio: 1 / 1.15;
    overflow: hidden;
    background: var(--beige);
}
.product-media img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease), opacity .7s var(--ease);
}
.product-img-hover {
    opacity: 0;
    transform: scale(1.04);
}
.product-card:has(.product-img-hover):hover .product-img-main {
    opacity: 0;
    transform: scale(1.04);
}
.product-card:hover .product-img-hover {
    opacity: 1;
    transform: scale(1);
}

.tag {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--ivory);
    color: var(--blue);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 6px 12px;
    border: 1px solid var(--gold);
    z-index: 3;
}
.tag-sale {
    background: var(--blue);
    color: var(--ivory);
    border-color: var(--blue);
    font-weight: 600;
}
.tag-custom {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.product-info {
    padding: 22px 22px 26px;
    text-align: center;
}
.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
    font-weight: 500;
}
.price {
    color: var(--gold);
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 6px;
    letter-spacing: .03em;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}
.price-old {
    color: var(--text-soft);
    text-decoration: line-through;
    font-weight: 400;
    font-size: .9em;
}
.price-sale {
    color: var(--gold);
    font-weight: 600;
}
.variants {
    color: var(--text-soft);
    font-size: .78rem;
    letter-spacing: .04em;
    margin-bottom: 12px;
    font-style: italic;
}
.price-variants {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 10px;
}
.price-variants .price { margin-bottom: 0; }
.variant-label {
    color: var(--text-soft);
    font-size: .82em;
    font-style: italic;
    font-weight: 400;
    margin-left: 2px;
}

/* ============================================
   CUSTOM (PERSONNALISABLES)
   ============================================ */
.custom {
    padding: 130px 0;
    background: var(--ivory);
    position: relative;
    overflow: hidden;
}
.custom::before {
    content: '';
    position: absolute;
    top: 80px; left: -120px;
    width: 280px; height: 280px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    opacity: .1;
}
.custom-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 80px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.custom-step {
    position: relative;
    padding: 28px 22px;
    background: var(--white);
    border: 1px solid var(--line);
    transition: all .5s var(--ease);
}
.custom-step:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}
.custom-step-num {
    display: block;
    font-family: var(--serif);
    font-style: italic;
    font-size: 2.2rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 14px;
}
.custom-step p {
    font-size: .95rem;
    color: var(--text);
    line-height: 1.55;
}
.custom-step p em {
    color: var(--text-soft);
    font-size: .85em;
    display: block;
    margin-top: 6px;
}
.custom-step a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ============================================
   CHARMS
   ============================================ */
.charms {
    padding: 130px 0;
    background: var(--beige-light);
    position: relative;
}
.charms-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 70px;
}
.charms-subhead {
    text-align: center;
    margin: 20px 0 36px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}
.charms-subhead::before,
.charms-subhead::after {
    content: '';
    width: 36px;
    height: 1px;
    background: var(--gold);
}
.fermoirs-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 220px));
    gap: 18px;
    justify-content: center;
    margin-bottom: 70px;
}
.charm-card {
    margin: 0;
    background: var(--white);
    border: 1px solid var(--line);
    transition: all .4s var(--ease);
    text-align: center;
    padding: 0 0 14px;
}
.charm-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}
.charm-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    margin-bottom: 12px;
    transition: opacity .4s var(--ease);
}
.charm-card figcaption {
    font-family: var(--sans);
    font-size: .8rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--blue);
    padding: 0 8px;
    line-height: 1.3;
}

/* Out-of-stock indicator (charm + composer card) */
.charm-out { position: relative; }
.charm-out img { opacity: .35; filter: grayscale(1); }
.charm-out figcaption,
.composer-card-charm.charm-out .composer-card-info h4 {
    color: var(--text-soft);
    text-decoration: line-through;
    text-decoration-color: rgba(23,58,107,.4);
}
.charm-out:hover {
    border-color: var(--line);
    transform: none;
    box-shadow: none;
}
.charm-out-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--blue);
    color: var(--ivory);
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 3px;
    z-index: 4;
    pointer-events: none;
    box-shadow: 0 4px 12px -4px rgba(0,0,0,.35);
}
.composer-card-charm.charm-out { cursor: not-allowed; }

/* ============================================
   ABOUT
   ============================================ */
.about { padding: 140px 0; background: var(--ivory); position: relative; overflow: hidden; }
.about::before {
    content: '';
    position: absolute;
    bottom: -120px; left: -120px;
    width: 380px; height: 380px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    opacity: .1;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}
.about-media {
    position: relative;
}
.about-media > img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}
.about-media-second {
    position: absolute;
    right: -50px; bottom: -60px;
    width: 55%;
    box-shadow: var(--shadow-soft);
    border: 8px solid var(--ivory);
}
.about-media-second img { aspect-ratio: 1 / 1; object-fit: cover; }

.about-text h2 { margin-bottom: 28px; }
.about-text p { margin-bottom: 20px; color: var(--text-soft); font-size: 1.02rem; line-height: 1.75; }
.about-text .link-underline { margin-top: 20px; }

/* ============================================
   COMMITMENTS
   ============================================ */
.commitments { padding: 130px 0; background: var(--beige-light); }
.commitments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.commitment-card {
    text-align: center;
    padding: 50px 32px;
    background: var(--ivory);
    border: 1px solid var(--line);
    transition: all .5s var(--ease);
    position: relative;
}
.commitment-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: var(--shadow-soft);
}
.commitment-icon {
    width: 70px; height: 70px;
    margin: 0 auto 24px;
    color: var(--gold);
}
.commitment-icon svg { width: 100%; height: 100%; }
.commitment-card h3 { font-size: 1.3rem; margin-bottom: 12px; font-weight: 500; }
.commitment-card p { color: var(--text-soft); font-size: .95rem; line-height: 1.65; }

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter { padding: 130px 0; background: var(--blue); position: relative; overflow: hidden; }
.newsletter::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    border: 1px solid rgba(201, 163, 74, .2);
    border-radius: 50%;
    pointer-events: none;
}
.newsletter::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 400px; height: 400px;
    border: 1px solid rgba(201, 163, 74, .15);
    border-radius: 50%;
    pointer-events: none;
}
.newsletter-card {
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.newsletter-card .section-title { margin-bottom: 18px; }
.newsletter-card p { color: rgba(248,245,239,.85); margin-bottom: 38px; font-size: 1.05rem; }
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
}
.newsletter-form input[type="email"] {
    width: 100%;
    max-width: 420px;
    padding: 16px 20px;
    background: transparent;
    border: 1px solid rgba(248,245,239,.35);
    color: var(--ivory);
    font-family: var(--sans);
    font-size: 14px;
    letter-spacing: .03em;
    transition: border-color .3s var(--ease);
}
.newsletter-form input[type="email"]::placeholder { color: rgba(248,245,239,.5); }
.newsletter-form input[type="email"]:focus { outline: none; border-color: var(--gold); }
.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(248,245,239,.7);
    font-size: 12px;
    max-width: 420px;
    text-align: left;
    cursor: pointer;
}
.checkbox input { margin-top: 3px; accent-color: var(--gold); }
.checkbox a { color: var(--gold); text-decoration: underline; }

.form-success {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: .1em;
    margin-top: 12px;
    display: none;
}
.form-success.show { display: block; }

/* ============================================
   CONTACT
   ============================================ */
.contact { padding: 140px 0; background: var(--ivory); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}
.contact-info h2 { margin-bottom: 24px; }
.contact-info p { color: var(--text-soft); margin-bottom: 38px; font-size: 1.05rem; }
.contact-list { list-style: none; margin-bottom: 40px; }
.contact-list li {
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.contact-list span {
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}
.contact-list a { color: var(--blue); font-weight: 400; transition: color .3s var(--ease); }
.contact-list a:hover { color: var(--gold); }

.socials { display: flex; gap: 14px; }
.socials a {
    width: 46px; height: 46px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--blue);
    transition: all .35s var(--ease);
}
.socials a:hover { background: var(--blue); color: var(--ivory); border-color: var(--blue); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; }

.contact-form {
    background: var(--white);
    padding: 50px 44px;
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}
.field input, .field textarea {
    border: none;
    border-bottom: 1px solid var(--line);
    padding: 10px 0;
    background: transparent;
    font-family: var(--sans);
    font-size: 15px;
    color: var(--text);
    transition: border-color .3s var(--ease);
    resize: vertical;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.contact-form .btn { margin-top: 12px; align-self: flex-start; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--blue-dark);
    color: var(--ivory);
    padding: 90px 0 30px;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: .5;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}
.footer-logo {
    height: 84px;
    width: auto;
    margin-bottom: 22px;
    border-radius: 16px;
    background: var(--ivory);
    box-shadow: 0 8px 24px -10px rgba(0,0,0,.4);
}
.footer-brand p { color: rgba(248,245,239,.7); font-size: .95rem; line-height: 1.7; max-width: 320px; }
.footer-col h4 {
    color: var(--gold);
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: rgba(248,245,239,.7); font-size: .92rem; transition: color .3s var(--ease); }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(248,245,239,.12);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: .82rem;
    letter-spacing: .08em;
    color: rgba(248,245,239,.55);
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 24px; left: 24px; right: 24px;
    z-index: 90;
    background: var(--ivory);
    border: 1px solid var(--gold);
    box-shadow: 0 20px 60px -20px rgba(0,0,0,.25);
    padding: 22px 28px;
    max-width: 720px;
    margin: 0 auto;
    transform: translateY(140%);
    transition: transform .6s var(--ease);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}
.cookie-inner p { font-size: .9rem; color: var(--text); flex: 1; min-width: 240px; }
.cookie-inner a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; }

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
    transition-delay: var(--delay, 0s);
    will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================
   PAGES (legal)
   ============================================ */
.page-hero {
    padding: 180px 0 80px;
    background: linear-gradient(180deg, var(--beige-light) 0%, var(--ivory) 100%);
    text-align: center;
}
.page-hero h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); }
.page-content { padding: 60px 0 120px; }
.page-content .container { max-width: 880px; }
.page-content h2 { font-size: 1.7rem; margin: 50px 0 18px; }
.page-content h3 { font-size: 1.25rem; margin: 30px 0 12px; color: var(--blue); }
.page-content p, .page-content li { color: var(--text-soft); margin-bottom: 14px; line-height: 1.8; }
.page-content ul { padding-left: 22px; margin-bottom: 18px; }
.page-content a { color: var(--gold); text-decoration: underline; }
.page-content strong { color: var(--text); font-weight: 600; }

/* ============================================
   COMMANDER PAGE
   ============================================ */
.commander-page { background: var(--ivory); }
.commander { padding: 40px 0 140px; }
.commander-inner { max-width: 980px; margin: 0 auto; }
.commander-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
    background: var(--white);
    border: 1px solid var(--line);
    padding: 30px;
    align-items: center;
}
.commander-media img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}
.commander-details { padding: 0 10px; }
.commander-eyebrow {
    display: inline-block;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.commander-title {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--blue);
    font-weight: 400;
    margin-bottom: 14px;
    line-height: 1.15;
}
.commander-price {
    font-size: 1.15rem;
    margin-bottom: 12px;
    display: flex;
    gap: 12px;
    align-items: baseline;
}
.commander-price .price-old {
    color: var(--text-soft);
    text-decoration: line-through;
    font-size: .85em;
}
.commander-price .price-sale {
    color: var(--gold);
    font-weight: 500;
    font-family: var(--serif);
    font-size: 1.4em;
    font-style: italic;
}
.commander-note {
    color: var(--text-soft);
    font-style: italic;
    font-size: .88rem;
    margin-bottom: 22px;
}
.commander-choice { margin-top: 22px; }
.commander-choice-label {
    display: block;
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 10px;
}
.commander-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.pill {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--text);
    padding: 9px 16px;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .05em;
    cursor: pointer;
    transition: all .25s var(--ease);
    border-radius: 4px;
}
.pill:hover { border-color: var(--gold); color: var(--blue); }
.pill.active {
    background: var(--blue);
    color: var(--ivory);
    border-color: var(--blue);
}
.commander-input {
    display: block;
    width: 100%;
    max-width: 220px;
    padding: 12px 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 4px;
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--blue);
    letter-spacing: .35em;
    text-align: center;
    text-transform: uppercase;
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.commander-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,163,74,.15);
}
.commander-input::placeholder {
    color: var(--text-soft);
    opacity: .5;
    letter-spacing: .3em;
    font-style: italic;
    font-size: .85em;
}
.commander-input-hint {
    margin-top: 8px;
    font-size: .78rem;
    color: var(--text-soft);
    font-style: italic;
    line-height: 1.4;
}
.commander-qty {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 4px;
}
.qty-btn {
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    color: var(--blue);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    border-radius: 3px;
    transition: background .2s var(--ease);
}
.qty-btn:hover:not(:disabled) { background: var(--beige-light); }
.qty-btn:disabled { opacity: .3; cursor: not-allowed; }
.qty-value {
    min-width: 32px;
    text-align: center;
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--blue);
}

.commander-summary {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 26px 30px;
    margin-bottom: 30px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}
.commander-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.commander-help {
    text-align: center;
    color: var(--text-soft);
    font-size: .88rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.5;
    transition: color .3s var(--ease), font-size .3s var(--ease);
}

.commander-notfound {
    text-align: center;
    padding: 60px 20px;
}
.commander-notfound p {
    color: var(--text-soft);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

/* ============================================
   COMPOSER PAGE
   ============================================ */
.composer-page { background: var(--ivory); }

.composer {
    padding: 60px 0 200px;
    background: var(--ivory);
    position: relative;
}

/* ----- Progress bar ----- */
.composer-progress {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin: 0 auto 80px;
    padding: 0;
    max-width: 720px;
    position: sticky;
    top: 92px;
    z-index: 20;
    background: rgba(248, 245, 239, .92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 14px 22px;
}
.progress-step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--text-soft);
    cursor: pointer;
    transition: color .3s var(--ease);
    position: relative;
    flex: 1;
    justify-content: center;
    white-space: nowrap;
}
.progress-step + .progress-step::before {
    content: '';
    position: absolute;
    left: -1px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 1px;
    background: var(--line);
}
.progress-num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 15px;
    color: var(--gold);
    letter-spacing: 0;
}
.progress-step.active { color: var(--blue); font-weight: 500; }
.progress-step.done { color: var(--gold); }
.progress-step.done .progress-num { color: var(--gold); }
.progress-step.skipped { opacity: .35; pointer-events: none; }
.progress-step:hover { color: var(--blue); }

/* ----- Step blocks ----- */
.composer-step {
    margin-bottom: 100px;
    scroll-margin-top: 160px;
}
.composer-step-disabled {
    opacity: .35;
    pointer-events: none;
    filter: grayscale(.7);
}
.composer-step-head {
    text-align: center;
    margin-bottom: 40px;
}
.composer-step-head h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    color: var(--blue);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px;
}
.composer-step-num {
    font-family: var(--serif);
    font-style: italic;
    color: var(--gold);
    font-size: .85em;
}
.composer-step-head p {
    color: var(--text-soft);
    font-size: .95rem;
    max-width: 520px;
    margin: 0 auto;
}

/* ----- Counter ----- */
.composer-counter {
    text-align: center;
    margin-bottom: 30px;
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}
.composer-counter #charmsCount {
    font-family: var(--serif);
    font-style: italic;
    font-size: 22px;
    color: var(--blue);
    display: inline-block;
    min-width: 22px;
    margin-right: 2px;
    transition: color .3s var(--ease);
}
.composer-counter.at-max { color: var(--gold); }
.composer-counter.at-max #charmsCount { color: var(--gold); }

/* ----- Grid layouts ----- */
.composer-grid {
    display: grid;
    gap: 18px;
}
.composer-grid-bases { grid-template-columns: repeat(3, 1fr); max-width: 900px; margin: 0 auto; }
.composer-grid-clasps { grid-template-columns: repeat(2, minmax(0, 260px)); justify-content: center; gap: 20px; }
.composer-grid-charms { grid-template-columns: repeat(6, 1fr); gap: 14px; }

/* ----- Card ----- */
.composer-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--line);
    padding: 0 0 16px;
    cursor: pointer;
    transition: all .35s var(--ease);
    font-family: var(--sans);
    text-align: center;
    overflow: hidden;
}
.composer-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}
.composer-card.selected {
    border-color: var(--blue);
    box-shadow: 0 0 0 1px var(--blue), var(--shadow-soft);
    background: var(--beige-light);
}
.composer-card-media {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--beige);
    margin-bottom: 14px;
}
.composer-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s var(--ease);
}
.composer-card:hover .composer-card-media img { transform: scale(1.04); }
.composer-card-info {
    padding: 0 12px;
}
.composer-card-info h4 {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 500;
    color: var(--blue);
    margin-bottom: 6px;
}
.composer-card-price {
    font-size: .85rem;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    align-items: baseline;
    flex-wrap: wrap;
}
.composer-card-price .price-old { color: var(--text-soft); text-decoration: line-through; font-size: .82em; }
.composer-card-price .price-sale { color: var(--gold); font-weight: 500; }

.composer-check {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: var(--blue);
    color: var(--ivory);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(.6);
    transition: opacity .3s var(--ease), transform .3s var(--ease);
    z-index: 3;
}
.composer-check svg { width: 14px; height: 14px; }
.composer-card.selected .composer-check { opacity: 1; transform: scale(1); }

.composer-card-charm { padding-bottom: 10px; user-select: none; }
.composer-card-charm .composer-card-media { position: relative; }
.composer-card-charm.selected { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), var(--shadow-soft); }
.composer-card-charm.disabled {
    opacity: .35;
    cursor: not-allowed;
    filter: grayscale(.8);
}
.composer-card-charm.disabled:hover {
    transform: none;
    border-color: var(--line);
    box-shadow: none;
}
.composer-card-charm .composer-card-info h4 {
    font-family: var(--sans);
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--blue);
    padding: 0 4px;
    line-height: 1.3;
    margin-bottom: 0;
}
.composer-card-charm .composer-check { display: none; }

.charm-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--gold);
    color: var(--white);
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
    min-width: 30px;
    height: 26px;
    padding: 0 8px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px -3px rgba(0,0,0,.3);
    z-index: 3;
    pointer-events: none;
}

.charm-remove {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 26px;
    height: 26px;
    background: var(--blue);
    color: var(--ivory);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .25s var(--ease), transform .25s var(--ease);
    z-index: 4;
    padding: 0;
}
.charm-remove:hover {
    background: var(--gold);
    transform: scale(1.08);
}

/* ----- Saved compositions list ----- */
.composer-saved {
    max-width: 720px;
    margin: 0 auto 24px;
}
.composer-saved-title {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    text-align: center;
}
.composer-saved-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.saved-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: var(--beige-light);
    border: 1px solid var(--line);
    border-radius: 4px;
    transition: border-color .3s var(--ease);
}
.saved-item:hover { border-color: var(--gold); }
.saved-item-num {
    flex-shrink: 0;
    width: 30px; height: 30px;
    background: var(--blue);
    color: var(--ivory);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px;
    font-weight: 500;
}
.saved-item-info { flex: 1; min-width: 0; }
.saved-item-details {
    font-family: var(--sans);
    font-size: .92rem;
    color: var(--blue);
    font-weight: 500;
    margin: 0 0 3px;
    line-height: 1.3;
}
.saved-item-charms {
    font-size: .78rem;
    color: var(--text-soft);
    margin: 0;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.saved-item-charms em {
    font-style: italic;
    color: var(--text-soft);
}
.saved-item-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.saved-item-price {
    color: var(--gold);
    font-family: var(--sans);
    font-weight: 500;
    font-size: .95rem;
}
.saved-item-remove {
    width: 30px; height: 30px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--text-soft);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s var(--ease);
    padding: 0;
}
.saved-item-remove svg { width: 14px; height: 14px; }
.saved-item-remove:hover {
    background: rgba(23,58,107,.08);
    color: var(--blue);
}

/* ----- Summary ----- */
.summary-header {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--line);
    text-align: center;
}
.composer-summary {
    max-width: 720px;
    margin: 0 auto 40px;
    background: var(--white);
    border: 1px solid var(--line);
    padding: 30px 34px;
}
.summary-row {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px dashed var(--line);
    align-items: baseline;
    font-size: .95rem;
}
.summary-row:last-child { border-bottom: none; }
.summary-key {
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}
.summary-val { color: var(--text); line-height: 1.5; }
.summary-val em { color: var(--text-soft); font-style: italic; font-size: .9em; }
.summary-price { color: var(--gold); font-weight: 500; font-family: var(--sans); white-space: nowrap; }
.summary-total { border-top: 2px solid var(--gold); border-bottom: none; margin-top: 8px; padding-top: 18px; }
.summary-total .summary-key { color: var(--blue); font-size: 12px; }
.summary-total .summary-price { font-size: 1.3rem; font-family: var(--serif); font-style: italic; }
.composer-empty {
    text-align: center;
    color: var(--text-soft);
    font-style: italic;
    padding: 20px 0;
}

.composer-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.composer-actions .btn:disabled {
    opacity: .35;
    cursor: not-allowed;
    transform: none;
}
.composer-actions .btn:disabled:hover { transform: none; background: var(--blue); }
.composer-help {
    text-align: center;
    color: var(--text-soft);
    font-size: .88rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.5;
    transition: color .3s var(--ease), font-size .3s var(--ease);
}
.composer-help-success {
    color: var(--gold);
    font-weight: 500;
    font-size: .95rem;
    letter-spacing: .01em;
}

/* ----- Sticky summary bar ----- */
.composer-sticky {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 30;
    max-width: 900px;
    margin: 0 auto;
    background: var(--blue);
    color: var(--ivory);
    border-radius: 999px;
    box-shadow: 0 20px 60px -20px rgba(23,58,107,.5);
    padding: 12px 24px;
    animation: stickyIn .5s var(--ease) both;
}
@keyframes stickyIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.composer-sticky-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.composer-sticky-label {
    display: block;
    font-size: 10px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 2px;
}
.composer-sticky-detail {
    display: block;
    font-size: .9rem;
    color: var(--ivory);
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 60vw;
}
.composer-sticky-total {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--gold);
}

/* ----- Toast ----- */
.composer-toast {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background: var(--blue);
    color: var(--ivory);
    padding: 14px 24px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 60px -20px rgba(23,58,107,.5);
    z-index: 200;
    opacity: 0;
    transition: opacity .3s var(--ease), transform .3s var(--ease);
    font-size: .9rem;
    max-width: calc(100vw - 40px);
    text-align: center;
}
.composer-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.composer-toast svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }

/* ============================================
   RESPONSIVE — PERFECT
   ============================================ */

/* ---------- LARGE DESKTOP (max 1440px) ---------- */
@media (max-width: 1440px) {
    .container, .header-inner { padding: 0 40px; }
}

/* ---------- NARROWER-THAN-16:9 — logo joins the left cluster ---------- */
@media (max-aspect-ratio: 16/9) and (min-width: 901px) {
    .logo {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin-right: 24px;
    }
    .nav { margin-right: 0; }
    .header-icons { margin-left: auto; }
    .header-inner { gap: 22px; }
}

/* ---------- DESKTOP (max 1280px) ---------- */
@media (max-width: 1280px) {
    .container, .header-inner { padding: 0 36px; }
    .nav ul { gap: 32px; }
    .logo-img { height: 84px; }
    .header.scrolled .logo-img { height: 66px; }
    .collections, .products, .about, .commitments, .newsletter, .contact { padding: 110px 0; }
    .about-grid, .contact-grid { gap: 70px; }
}

/* ---------- LAPTOP (max 1100px) ---------- */
@media (max-width: 1100px) {
    .container, .header-inner { padding: 0 32px; }
    .nav ul { gap: 24px; }
    .nav a { font-size: 11px; letter-spacing: .18em; }
    .logo { gap: 12px; }
    .logo-img { height: 76px; }
    .header.scrolled .logo-img { height: 62px; }

    .collections-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .products-grid { grid-template-columns: repeat(3, 1fr); gap: 28px 20px; }
    .commitments-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .charms-grid { grid-template-columns: repeat(5, 1fr); gap: 14px; }
    .custom-steps { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-media-second { width: 50%; right: 0; bottom: -40px; }
    .editorial-text { margin-left: 0; padding: 80px 36px; max-width: 100%; }
    .editorial-banner { min-height: 70vh; }
}

/* ---------- TABLET (max 900px) ---------- */
@media (max-width: 900px) {
    .container, .header-inner { padding: 0 28px; }

    .header { padding: 8px 0; }
    .header.scrolled { padding: 4px 0; }
    .logo { gap: 10px; }
    .logo-img { height: 68px; }
    .header.scrolled .logo-img { height: 56px; }
    .menu-toggle { display: flex; }
    .header-icons { margin-left: auto; }

    .nav {
        position: fixed;
        inset: 0;
        width: 100%; height: 100vh;
        height: 100dvh;
        background: var(--ivory);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform .55s var(--ease);
        z-index: 105;
        padding: 90px 24px 40px;
    }
    .nav.open { transform: translateX(0); }
    .nav ul { flex-direction: column; gap: 28px; text-align: center; }
    .nav a {
        color: var(--blue) !important;
        font-size: 1.05rem;
        letter-spacing: .25em;
        font-family: var(--serif);
        font-weight: 400;
        font-style: italic;
        text-transform: uppercase;
    }
    .nav a::after { display: none; }
    .menu-open { overflow: hidden; }

    .icon-account { display: none; }
    .country-toggle .currency { display: none; }
    .lang-toggle, .country-toggle { padding: 6px 8px; gap: 6px; }
    .header-divider { margin: 0 4px; }

    .hero { min-height: 92vh; min-height: 92dvh; padding-bottom: 70px; }
    .hero-content { padding: 0 24px; }
    .hero-script { font-size: clamp(2.4rem, 7vw, 3.6rem); margin-bottom: 22px; white-space: normal; }
    .hero-link { font-size: 10px; letter-spacing: .28em; }

    .collections, .products, .about, .commitments, .newsletter, .contact, .custom, .charms { padding: 90px 0; }
    .custom-steps { grid-template-columns: repeat(2, 1fr); margin-bottom: 60px; }
    .charms-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 50px; }
    .custom::before { display: none; }
    .section-head { margin-bottom: 50px; }
    .section-title { font-size: clamp(1.9rem, 5vw, 2.8rem); }
    .section-cta { margin-top: 50px; }

    .editorial-banner { min-height: 60vh; }
    .editorial-text { padding: 80px 28px; }
    .editorial-media::after {
        background: linear-gradient(180deg, rgba(14,39,72,.45) 0%, rgba(14,39,72,.85) 100%);
    }
    .editorial-text h2 { font-size: clamp(2rem, 6vw, 3rem); }

    .about::before { width: 240px; height: 240px; bottom: -80px; left: -80px; }
    .about-media > img { aspect-ratio: 4 / 5; }

    .commitment-card { padding: 40px 28px; }
    .commitment-icon { width: 60px; height: 60px; margin-bottom: 20px; }

    .newsletter::before { width: 460px; height: 460px; }
    .newsletter::after { width: 300px; height: 300px; }

    .contact-form { padding: 38px 28px; }

    .footer { padding: 70px 0 28px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 32px; margin-bottom: 50px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

    .cookie-banner { left: 16px; right: 16px; bottom: 16px; padding: 20px 22px; }
    .cookie-inner { flex-direction: column; align-items: stretch; gap: 16px; }
    .cookie-actions { justify-content: stretch; }
    .cookie-actions .btn { flex: 1; }
}

/* ---------- MOBILE LARGE (max 640px) ---------- */
@media (max-width: 640px) {
    .container, .header-inner { padding: 0 20px; }

    .topbar { height: 32px; }
    .topbar-inner { padding: 0 16px; }
    .topbar-msg { font-size: 9.5px; letter-spacing: .22em; }
    .header { top: 32px; }
    .lang-toggle, .country-toggle { font-size: 11px; padding: 6px 6px; gap: 5px; }
    .lang-toggle { display: none; }
    .lang-panel { display: none; }
    .country-toggle .currency { display: none; }
    .country-toggle .chev { display: none; }
    .header-divider { display: none; }
    .country-lang-section { display: block; }
    .country-panel { margin-top: 4px; }
    .country-panel-inner { max-height: 75vh; }
    .country-search-wrap { padding: 16px 18px; }
    #countrySearch { font-size: 14px; }
    .country-list { padding: 4px 0; }
    .country-list li {
        padding: 12px 18px;
        font-size: 12px;
        gap: 14px;
    }
    .country-list .country-flag { width: 26px; height: 19px; }
    .lang-panel { min-width: 200px; margin-top: 4px; }
    .lang-list li { padding: 14px 20px; gap: 14px; }

    .logo { gap: 8px; }
    .logo-img { height: 58px; }
    .header.scrolled .logo-img { height: 50px; }
    .header-inner { gap: 8px; }
    .icon-btn { width: 38px; height: 38px; }
    .icon-btn svg { width: 17px; height: 17px; }
    .menu-toggle { width: 38px; height: 38px; padding: 10px 8px; gap: 4px; }

    .hero { min-height: 88vh; min-height: 88dvh; padding-bottom: 60px; }
    .hero-content { padding: 0 20px; }
    .hero-script { font-size: clamp(2.2rem, 9vw, 3rem); margin-bottom: 20px; }
    .hero-link { font-size: 10px; letter-spacing: .26em; }

    .announcement { padding: 14px 20px; font-size: 10px; letter-spacing: .2em; }
    .announcement p { white-space: nowrap; overflow-x: auto; }

    .eyebrow { padding-left: 26px; font-size: 10px; letter-spacing: .22em; }
    .eyebrow::before { width: 16px; }
    .section-title { font-size: 1.85rem; }
    .section-sub { font-size: .95rem; padding: 0 8px; }

    .collections, .products, .about, .commitments, .newsletter, .contact, .custom, .charms { padding: 70px 0; }
    .custom-steps { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 50px; }
    .custom-step { padding: 22px 18px; }
    .custom-step-num { font-size: 1.8rem; margin-bottom: 10px; }
    .custom-step p { font-size: .88rem; }
    .charms-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 40px; }
    .charm-card figcaption { font-size: .7rem; letter-spacing: .08em; }
    .charms-subhead { font-size: 10px; letter-spacing: .3em; gap: 12px; margin: 10px 0 24px; }
    .charms-subhead::before, .charms-subhead::after { width: 24px; }
    .fermoirs-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 320px; margin: 0 auto 40px; gap: 10px; }
    .section-head { margin-bottom: 40px; }

    .collections-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .collection-card {
        background: transparent;
        flex: 0 0 calc((100% - 20px) / 3);
    }
    .collection-media { aspect-ratio: 3 / 4; }
    .collection-info {
        padding: 12px 4px 4px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        border-top: none;
    }
    .collection-info h3 { font-size: .95rem; line-height: 1.15; }
    .collection-info .link-arrow { font-size: 9px; letter-spacing: .12em; }
    .collections::before { display: none; }

    .products-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px 8px;
    }
    .product-card {
        background: transparent;
        flex: 0 0 calc((100% - 16px) / 3);
    }
    .product-card:hover { box-shadow: none; transform: none; }
    .product-media { aspect-ratio: 3 / 4; }
    .product-info { padding: 12px 4px 16px; text-align: left; }
    .product-info h3 { font-size: .85rem; line-height: 1.2; margin-bottom: 4px; }
    .price { font-size: .8rem; margin-bottom: 8px; }
    .product-info .link-underline { font-size: 9px; letter-spacing: .12em; padding-bottom: 2px; }
    .tag { font-size: 8px; padding: 3px 6px; top: 8px; left: 8px; letter-spacing: .12em; }

    .editorial-banner { min-height: 55vh; }
    .editorial-text { padding: 64px 20px; }
    .editorial-text p { font-size: .98rem; margin-bottom: 28px; }

    .about-grid { gap: 50px; }
    .about-text p { font-size: .98rem; }
    .about::before, .about-media-second { display: none; }
    .about-media > img { aspect-ratio: 4 / 5; }

    .commitments-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .commitment-card { padding: 28px 16px; }
    .commitment-icon { width: 50px; height: 50px; margin-bottom: 16px; }
    .commitment-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
    .commitment-card p { font-size: .85rem; line-height: 1.55; }

    /* Commander mobile */
    .commander { padding: 20px 0 100px; }
    .commander-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 20px;
        margin-bottom: 30px;
    }
    .commander-media { max-width: 320px; margin: 0 auto; }
    .commander-details { padding: 0; }
    .commander-title { font-size: 1.5rem; }
    .commander-price { font-size: 1rem; }
    .commander-summary { padding: 20px 18px; }
    .commander-actions { flex-direction: column; gap: 10px; }
    .commander-actions .btn { width: 100%; }
    .pill { padding: 8px 12px; font-size: 11px; }

    /* Composer mobile */
    .composer { padding: 30px 0 200px; }
    .composer-progress {
        top: 68px;
        gap: 0;
        padding: 8px 8px;
        border-radius: 12px;
        max-width: calc(100vw - 24px);
        margin-bottom: 50px;
    }
    .progress-step { font-size: 9px; letter-spacing: .12em; padding: 4px 6px; gap: 5px; }
    .progress-step + .progress-step::before { width: 8px; }
    .progress-num { font-size: 12px; }
    .progress-label { display: none; }
    .progress-step.active .progress-label,
    .progress-step.done .progress-label { display: inline; }
    .composer-step { margin-bottom: 70px; }
    .composer-step-head { margin-bottom: 30px; }
    .composer-step-head h2 { gap: 10px; font-size: 1.4rem; flex-wrap: wrap; }
    .composer-step-head p { font-size: .88rem; }
    .composer-grid-bases {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .composer-grid-bases .composer-card { flex: 0 0 calc((100% - 20px) / 3); }
    .composer-grid-clasps { grid-template-columns: 1fr 1fr; gap: 12px; max-width: 320px; margin: 0 auto; }
    .composer-grid-charms { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .composer-card { padding-bottom: 10px; }
    .composer-card-media { margin-bottom: 8px; }
    .composer-card-info h4 { font-size: .78rem; }
    .composer-card-charm .composer-card-info h4 { font-size: .62rem; letter-spacing: .06em; }
    .composer-card-price { font-size: .72rem; gap: 5px; }
    .composer-check { width: 22px; height: 22px; top: 8px; right: 8px; }
    .composer-check svg { width: 11px; height: 11px; }
    .charm-badge { min-width: 24px; height: 22px; font-size: 10px; padding: 0 6px; top: 6px; right: 6px; }
    .charm-remove { width: 22px; height: 22px; font-size: 15px; top: 6px; left: 6px; }
    .composer-summary { padding: 20px 18px; }
    .summary-row { grid-template-columns: 80px 1fr; gap: 10px; padding: 12px 0; font-size: .85rem; }
    .summary-row .summary-price { grid-column: 2; text-align: right; }
    .summary-key { font-size: 10px; letter-spacing: .18em; }
    .summary-total .summary-price { font-size: 1.1rem; }
    .composer-actions { flex-direction: column; gap: 10px; }
    .composer-actions .btn { width: 100%; }
    .saved-item { padding: 12px 14px; gap: 10px; }
    .saved-item-num { width: 26px; height: 26px; font-size: 12px; }
    .saved-item-details { font-size: .85rem; }
    .saved-item-charms { font-size: .72rem; }
    .saved-item-price { font-size: .85rem; }
    .saved-item-remove { width: 26px; height: 26px; }
    .saved-item-remove svg { width: 12px; height: 12px; }
    .composer-saved-title { font-size: 10px; letter-spacing: .22em; }
    .summary-header { font-size: 9px; letter-spacing: .24em; }
    .composer-sticky {
        bottom: 12px; left: 12px; right: 12px;
        padding: 10px 18px;
        border-radius: 16px;
    }
    .composer-sticky-label { font-size: 9px; letter-spacing: .22em; }
    .composer-sticky-detail { font-size: .78rem; max-width: 55vw; }
    .composer-sticky-total { font-size: 1.15rem; }
    .composer-toast { font-size: .82rem; padding: 12px 18px; top: 80px; }

    .newsletter { padding: 80px 0; }
    .newsletter-card p { font-size: 1rem; margin-bottom: 30px; }
    .newsletter-form input[type="email"] { padding: 14px 18px; }
    .newsletter::before { width: 320px; height: 320px; }
    .newsletter::after { width: 220px; height: 220px; }

    .contact-info p { font-size: 1rem; margin-bottom: 30px; }
    .contact-list li { padding: 16px 0; flex-wrap: wrap; gap: 6px; }
    .contact-form { padding: 30px 22px; gap: 18px; }
    .field input, .field textarea { font-size: 14px; }

    .footer { padding: 60px 0 24px; }
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px 14px;
        margin-bottom: 36px;
        text-align: left;
    }
    .footer-brand {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 8px;
    }
    .footer-brand p { max-width: 100%; }
    .footer-col { text-align: left; }
    .footer-col h4 {
        font-size: 10px;
        letter-spacing: .2em;
        margin-bottom: 16px;
    }
    .footer-col ul {
        align-items: flex-start;
        gap: 10px;
    }
    .footer-col a {
        font-size: .82rem;
        line-height: 1.4;
        display: inline-block;
    }
    .footer-logo { height: 70px; border-radius: 14px; }
    .footer-bottom { font-size: .78rem; }

    .btn { padding: 14px 28px; font-size: 11px; letter-spacing: .2em; }
    .btn.small { padding: 12px 18px; font-size: 10px; }
}

/* ---------- MOBILE SMALL (max 420px) ---------- */
@media (max-width: 420px) {
    .container, .header-inner { padding: 0 16px; }

    .country-search-wrap { padding: 14px 16px; }
    #countrySearch { font-size: 13px; }
    .country-list li { padding: 11px 16px; font-size: 11px; gap: 12px; letter-spacing: .03em; }
    .country-list .country-flag { width: 24px; height: 18px; }
    .country-panel-inner { max-height: 70vh; }
    .lang-list li { padding: 12px 18px; font-size: 11px; }

    .logo { gap: 6px; }
    .logo-img { height: 52px; }
    .header.scrolled .logo-img { height: 44px; }
    .header-icons { gap: 2px; }
    .icon-btn { width: 36px; height: 36px; }

    .hero-script { font-size: 2.2rem; }

    .section-title { font-size: 1.7rem; }
    .editorial-text h2 { font-size: 1.95rem; }

    .collections-grid { gap: 8px; }
    .collection-card { flex: 0 0 calc((100% - 16px) / 3); }
    .collection-info h3 { font-size: .8rem; }
    .products-grid { gap: 14px 6px; }
    .product-card { flex: 0 0 calc((100% - 12px) / 3); }
    .product-info { padding: 10px 2px 12px; }
    .product-info h3 { font-size: .75rem; }
    .price { font-size: .72rem; margin-bottom: 6px; }
    .tag { font-size: 7px; padding: 2px 5px; top: 6px; left: 6px; letter-spacing: .1em; }

    .newsletter::before, .newsletter::after { display: none; }
    .contact-list li { flex-direction: column; align-items: flex-start; }

    .cookie-inner p { font-size: .85rem; }
}

/* ---------- LANDSCAPE PHONE ---------- */
@media (max-height: 500px) and (orientation: landscape) {
    .hero { min-height: 100vh; padding-bottom: 36px; }
    .hero-script { font-size: clamp(1.8rem, 5vw, 2.6rem); margin-bottom: 16px; }
}

/* ---------- HOVER-DISABLE for touch ---------- */
@media (hover: none) {
    .collection-card:hover .collection-media img,
    .product-card:hover .product-media img { transform: none; }
    .product-card:hover { transform: none; box-shadow: none; }
    .commitment-card:hover { transform: none; box-shadow: none; border-color: var(--line); }
}

/* Accessibility: reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}
