@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=Italiana&display=swap");

:root {
    --ivory: #f4f0e8;
    --paper: #fbf9f4;
    --ink: #191a18;
    --muted: #696961;
    --line: rgba(25, 26, 24, 0.16);
    --stone: #ded8cb;
    --sage: #788177;
    --gold: #a88754;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    background: var(--paper);
    font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    line-height: 1.55;
}
body.menu-open { overflow: hidden; }
button, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 999;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    background: var(--ink);
    color: #fff;
    transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 76px;
    padding: 0 clamp(24px, 4vw, 68px);
    border-bottom: 1px solid transparent;
    transition: background 300ms ease, border-color 300ms ease, min-height 300ms ease;
}
.site-header.is-scrolled {
    min-height: 64px;
    background: rgba(251, 249, 244, 0.92);
    border-color: var(--line);
    backdrop-filter: blur(16px);
}
.wordmark {
    width: max-content;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: 0.24em;
}
.primary-navigation { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 38px); }
.primary-navigation a,
.header-actions button,
.header-actions a,
.header-actions select {
    border: 0;
    background: none;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.mobile-account-action { display:none; }
.primary-navigation a { position: relative; }
.primary-navigation a::after {
    position: absolute;
    content: "";
    left: 0;
    right: 100%;
    bottom: -8px;
    height: 1px;
    background: currentColor;
    transition: right 250ms ease;
}
.primary-navigation a:hover::after,
.primary-navigation a:focus-visible::after { right: 0; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 18px; }
.header-actions button,
.header-actions a { padding: 8px 0; cursor: pointer; }
.account-entry { position:relative; }
.account-quick-menu { position:absolute; z-index:110; top:calc(100% + 15px); right:-14px; width:286px; padding:11px; border:1px solid rgba(25,26,24,.12); border-radius:14px; background:rgba(251,249,244,.98); box-shadow:0 18px 42px rgba(57,43,22,.16); transform:translateY(-5px); opacity:0; transition:opacity .18s ease,transform .18s var(--ease); }
.account-quick-menu:not([hidden]) { opacity:1; transform:translateY(0); }
.account-quick-menu::before { position:absolute; top:-6px; right:31px; width:11px; height:11px; border-top:1px solid rgba(25,26,24,.12); border-left:1px solid rgba(25,26,24,.12); background:var(--paper); content:""; transform:rotate(45deg); }
.account-quick-profile { display:grid; grid-template-columns:42px minmax(0,1fr) auto; gap:11px; align-items:center; padding:12px; border-bottom:1px solid var(--line); }
.account-quick-avatar { display:grid; width:42px; height:42px; place-items:center; overflow:hidden; border:1px solid rgba(128,99,56,.35); border-radius:50%; background:linear-gradient(145deg,#d9ceb9,#8e7451); color:#fff; font-family:"Italiana",Georgia,serif; font-size:15px; letter-spacing:.04em; }
.account-quick-avatar img { width:100%; height:100%; object-fit:cover; }
.account-quick-profile b { display:block; overflow:hidden; font-size:11px; font-weight:600; letter-spacing:.04em; text-overflow:ellipsis; text-transform:none; white-space:nowrap; }
.account-quick-profile small { display:block; overflow:hidden; margin-top:2px; color:var(--muted); font-size:9px; letter-spacing:0; text-overflow:ellipsis; text-transform:none; white-space:nowrap; }
.account-quick-profile i { color:var(--gold); font-size:16px; font-style:normal; }
.account-quick-links { display:grid; grid-template-columns:1fr 1fr; gap:1px 16px; padding:9px 12px 11px; }
.account-quick-links a { padding:7px 0 !important; color:var(--muted); font-size:9px !important; font-weight:500; letter-spacing:.08em !important; text-transform:uppercase; transition:color .16s ease; }
.account-quick-links a:hover,.account-quick-links a:focus-visible { color:var(--gold); }
.account-quick-signout { width:100%; padding:11px 12px !important; border-top:1px solid var(--line) !important; color:var(--muted); font-size:9px !important; letter-spacing:.11em !important; text-align:left; text-transform:uppercase; }
.account-quick-signout:hover { color:var(--ink); }
.market-control { position: relative; }
.market-control select { padding: 8px 18px 8px 0; cursor: pointer; }
.bag-action span { display: inline-grid; place-items: center; width: 18px; height: 18px; margin-left: 4px; border: 1px solid currentColor; border-radius: 50%; font-size: 9px; }
.menu-toggle { display: none; border: 0; background: none; }

.hero {
    position: relative;
    --hero-tilt-x: 0deg;
    --hero-tilt-y: 0deg;
    display: grid;
    place-items: center;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    background: var(--ivory);
    perspective: 1200px;
    isolation: isolate;
}
.hero::after {
    position: absolute;
    z-index: 3;
    inset: 0;
    content: "";
    background:
        radial-gradient(circle at center, rgba(248, 246, 241, .78) 0, rgba(248, 246, 241, .42) 21%, transparent 49%),
        linear-gradient(to bottom, rgba(244, 240, 232, .22), transparent 25%, transparent 72%, rgba(244, 240, 232, .34));
    pointer-events: none;
}
.hero-scene {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    transform-style: preserve-3d;
}
.hero-stage {
    position: absolute;
    left: 50%;
    top: 50%;
    width: max(100vw, 177.66svh);
    height: max(100svh, 56.29vw);
    transform: translate3d(-50%, -50%, 0) rotateX(var(--hero-tilt-x)) rotateY(var(--hero-tilt-y));
    transform-style: preserve-3d;
    transition: transform 180ms ease-out;
    will-change: transform;
}
.hero-layer {
    position: absolute;
    display: block;
    max-width: none;
    pointer-events: none;
    user-select: none;
    translate: 0 0;
    transform: translate3d(var(--move-x, 0px), var(--move-y, 0px), var(--depth-z, 0px)) rotate(var(--layer-rotation, 0deg)) scale(var(--layer-scale, 1));
    transition: transform 180ms ease-out;
    will-change: transform, translate;
}
.hero-bg {
    z-index: 0;
    inset: -1.5%;
    width: 103%;
    height: 103%;
    object-fit: cover;
    --depth-z: -120px;
    --layer-scale: 1.08;
    animation: hero-bg-drift 18s var(--ease) infinite alternate;
}
.hero-strand {
    left: 0;
    width: 100%;
    object-fit: fill;
    filter: drop-shadow(0 22px 28px rgba(57, 47, 34, .13));
}
.hero-strand-primary {
    z-index: 4;
    left: -.4%;
    top: 13%;
    height: 75.13%;
    --depth-z: 80px;
    --layer-scale: 1.03;
    --layer-rotation: -1deg;
    animation: hero-float-primary 9s ease-in-out infinite alternate;
}
.hero-strand-secondary {
    z-index: 3;
    left: 2.2%;
    top: 5.5%;
    height: auto;
    --depth-z: 46px;
    --layer-scale: 1.25;
    --layer-rotation: 1deg;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 2.5%, #000 97.5%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 2.5%, #000 97.5%, transparent 100%);
    filter: drop-shadow(0 18px 22px rgba(57, 47, 34, .11)) blur(.15px);
    animation: hero-float-secondary 10.5s ease-in-out infinite alternate;
}
.hero-bead {
    height: auto;
    object-fit: contain;
    mix-blend-mode: normal;
    -webkit-mask-image: radial-gradient(ellipse 50% 50% at center, #000 58%, rgba(0,0,0,.86) 76%, transparent 100%);
    mask-image: radial-gradient(ellipse 50% 50% at center, #000 58%, rgba(0,0,0,.86) 76%, transparent 100%);
}
.hero-bead-left-front {
    z-index: 7;
    left: -2.3%;
    top: 38.8%;
    width: 15.2%;
    --depth-z: 165px;
    --layer-scale: 1.04;
    filter: blur(2.7px);
    opacity: .72;
    animation: hero-float-near 8s ease-in-out infinite alternate;
}
.hero-bead-mid-left {
    z-index: 2;
    left: 16.8%;
    top: 37.2%;
    width: 6%;
    --depth-z: -12px;
    --layer-scale: .98;
    filter: blur(.55px);
    animation: hero-float-mid 11s ease-in-out infinite alternate;
}
.hero-bead-top-stone {
    z-index: 1;
    left: 44.5%;
    top: 7.7%;
    width: 8.2%;
    --depth-z: -88px;
    --layer-scale: .9;
    filter: blur(1.6px);
    opacity: .74;
    animation: hero-float-far 13s ease-in-out infinite alternate;
}
.hero-bead-top-white {
    z-index: 1;
    left: 68.8%;
    top: 10.2%;
    width: 9.7%;
    --depth-z: -100px;
    --layer-scale: .84;
    filter: blur(2px);
    opacity: .72;
    animation: hero-float-far 12s ease-in-out infinite alternate-reverse;
}
.hero-bead-tiny-gold {
    z-index: 2;
    left: 73.7%;
    top: 22.3%;
    width: 4.8%;
    --depth-z: -28px;
    --layer-scale: .92;
    filter: blur(.35px);
    animation: hero-float-mid 9.5s ease-in-out infinite alternate-reverse;
}
.hero-bead-bottom-stone {
    z-index: 1;
    left: 29.2%;
    top: 73.6%;
    width: 10.7%;
    --depth-z: -72px;
    --layer-scale: .9;
    filter: blur(2.2px);
    opacity: .68;
    animation: hero-float-far 13.5s ease-in-out infinite alternate;
}
.hero-bead-foreground-bottom {
    z-index: 8;
    left: 49.2%;
    top: 86%;
    width: 14.8%;
    --depth-z: 190px;
    --layer-scale: 1.08;
    filter: blur(2.5px);
    opacity: .72;
    animation: hero-float-near 8.8s ease-in-out infinite alternate-reverse;
}
.hero-copy {
    position: relative;
    z-index: 4;
    width: min(100%, 100vw);
    padding: clamp(38px, 6vw, 80px);
    text-align: center;
    text-shadow: 0 1px 20px rgba(255, 255, 255, .85);
}
.eyebrow {
    margin: 0 0 20px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .24em;
    text-transform: uppercase;
}
.hero h1 {
    margin: 0;
    font-family: "Italiana", Georgia, serif;
    font-size: clamp(76px, 13vw, 200px);
    font-weight: 400;
    letter-spacing: .09em;
    line-height: .9;
}
.hero-line {
    display: flex;
    justify-content: center;
    gap: 1em;
    margin: 26px 0 0;
    font-family: "Italiana", Georgia, serif;
    font-size: clamp(19px, 2vw, 30px);
}
.scroll-cue { position: absolute; z-index: 5; bottom: 30px; display: flex; flex-direction: column; align-items: center; gap: 10px; font-size: 9px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.scroll-cue i { width: 1px; height: 34px; background: var(--ink); transform-origin: top; animation: scroll-line 2s ease-in-out infinite; }

.section-shell { padding: clamp(90px, 11vw, 170px) clamp(24px, 7vw, 112px); }
.section-index { margin-bottom: 46px; color: var(--muted); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
.section-shell h2,
.final-cta h2,
dialog h2 { margin: 0; font-family: "Italiana", Georgia, serif; font-size: clamp(46px, 6.5vw, 98px); font-weight: 400; line-height: .98; }
.section-shell p { color: var(--muted); }
.worktable {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    background: #d8d0c2;
    isolation: isolate;
}
.worktable::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(19, 20, 18, .18), transparent 45%), linear-gradient(to top, rgba(19, 20, 18, .14), transparent 45%);
}
.worktable-image {
    position: absolute;
    z-index: -2;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.worktable .section-index {
    position: relative;
    z-index: 1;
    width: max-content;
    padding: 7px 10px;
    background: rgba(248, 246, 241, .82);
    color: var(--ink);
    backdrop-filter: blur(8px);
}
.worktable-copy {
    position: relative;
    z-index: 1;
    width: min(520px, 100%);
    padding: clamp(28px, 4vw, 54px);
    background: rgba(248, 246, 241, .9);
    box-shadow: 0 28px 80px rgba(29, 26, 20, .15);
    backdrop-filter: blur(12px);
}
html[data-cirava-language="en"] #worktableTitle {
    font-size: clamp(36px, 6vw, 64px);
    text-transform: uppercase;
}
.worktable-copy p:not(.eyebrow) { max-width: 440px; margin: 28px 0 32px; color: #55564f; font-size: 15px; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 52px; padding: 0 28px; border: 1px solid var(--ink); font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; transition: color 220ms ease, background 220ms ease, transform 220ms ease; cursor: pointer; }
.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--ink); color: #fff; }
.button-dark:hover { background: transparent; color: var(--ink); }
.button-light { border-color: #fff; background: #fff; color: var(--ink); }
.button-outline-light { border-color: rgba(255,255,255,.45); color: #fff; }
.button-outline-light:hover { background: #fff; color: var(--ink); }

.image-placeholder {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
    padding: clamp(20px,3vw,42px);
    border: 1px solid rgba(25,26,24,.3);
    background: repeating-linear-gradient(135deg, rgba(25,26,24,.035) 0, rgba(25,26,24,.035) 1px, transparent 1px, transparent 18px), #e8e2d7;
    overflow: hidden;
}
.image-placeholder::before,
.image-placeholder::after { position: absolute; content:""; background: rgba(25,26,24,.28); }
.image-placeholder::before { width: 140%; height: 1px; left: -20%; top: 50%; transform: rotate(24deg); }
.image-placeholder::after { width: 140%; height: 1px; left: -20%; top: 50%; transform: rotate(-24deg); }
.image-placeholder > * { position: relative; z-index: 1; }
.image-placeholder > div { max-width: 470px; padding: 15px; background: rgba(244,240,232,.9); backdrop-filter: blur(5px); }
.image-placeholder strong { display: block; margin-bottom: 7px; font-size: 11px; letter-spacing: .14em; }
.image-placeholder p { margin: 0; color: var(--ink); font-size: 12px; line-height: 1.5; }
.placeholder-number,
.placeholder-spec { width: max-content; padding: 5px 8px; background: var(--ink); color: #fff; font-size: 9px; letter-spacing: .14em; }
.placeholder-spec { align-self: flex-end; }
.image-placeholder-wide { min-height: min(62vw, 690px); }
.image-placeholder-portrait { min-height: 0; aspect-ratio: 1; }
.image-placeholder-square { min-height: auto; aspect-ratio: 1; }
.image-placeholder-atelier { min-height: 650px; }
.image-placeholder-gift { min-height: 620px; aspect-ratio: 4/5; }
.content-image { display: block; width: 100%; height: 100%; object-fit: cover; background: var(--paper); }

.section-dark { background: var(--ink); color: #f4f0e8; }
.section-dark p { color: rgba(244,240,232,.62); }
.section-heading { display: grid; grid-template-columns: .7fr 1.3fr; margin-bottom: clamp(50px,8vw,110px); }
.section-heading .eyebrow { margin-top: 12px; }
.section-heading h2 { max-width: 1050px; }

.style-studio {
    box-sizing: border-box;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
    gap: clamp(48px, 7vw, 120px);
    align-items: center;
    min-height: 100vh;
    min-height: 100svh;
    padding: clamp(64px, 7.2vh, 96px) clamp(24px, 7vw, 112px);
    overflow: hidden;
}
.style-studio-visual {
    position: relative;
    justify-self: center;
    width: min(100%, 62svh, 680px);
    aspect-ratio: 3 / 4;
    background: #2b2b27;
    box-shadow: 0 35px 100px rgba(0, 0, 0, .3);
    cursor: ew-resize;
    isolation: isolate;
    overflow: hidden;
    touch-action: pan-y;
}
.style-studio-visual:focus-visible {
    outline: 1px solid #f4f0e8;
    outline-offset: 8px;
}
.style-studio-visual::after {
    position: absolute;
    z-index: 4;
    inset: 0;
    content: "";
    background:
        linear-gradient(to bottom, rgba(12, 13, 12, .28), transparent 24%),
        linear-gradient(to top, rgba(12, 13, 12, .48), transparent 27%);
    pointer-events: none;
}
.style-scene {
    position: absolute;
    z-index: 0;
    inset: 0;
    opacity: 0;
    transform: scale(1.012);
    transition: opacity 520ms var(--ease), transform 900ms var(--ease);
    pointer-events: none;
}
.style-scene.is-active {
    z-index: 1;
    opacity: 1;
    transform: scale(1);
}
.style-scene-base,
.style-bracelet-layer {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.style-bracelet-layer {
    z-index: 2;
    opacity: 0;
    transform: translateX(1.2%);
    -webkit-mask-image: radial-gradient(
        ellipse var(--bracelet-size-x) var(--bracelet-size-y) at var(--bracelet-x) var(--bracelet-y),
        #000 54%,
        rgba(0, 0, 0, .92) 68%,
        transparent 100%
    );
    mask-image: radial-gradient(
        ellipse var(--bracelet-size-x) var(--bracelet-size-y) at var(--bracelet-x) var(--bracelet-y),
        #000 54%,
        rgba(0, 0, 0, .92) 68%,
        transparent 100%
    );
    transition: opacity 260ms ease, transform 440ms var(--ease);
}
.style-bracelet-layer.is-active {
    opacity: 1;
    transform: translateX(0);
}
.style-visual-topline,
.style-swipe-hint,
.style-progress {
    position: absolute;
    z-index: 6;
}
.style-visual-topline {
    top: 24px;
    right: 24px;
    left: 24px;
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, .82);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.style-swipe-hint {
    right: 28px;
    bottom: 44px;
    left: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    color: rgba(255, 255, 255, .88);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    transition: opacity 320ms ease, transform 320ms ease;
}
.style-swipe-hint.is-dismissed {
    opacity: 0;
    transform: translateY(8px);
}
.style-progress {
    right: 28px;
    bottom: 22px;
    left: 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
}
.style-progress i {
    height: 1px;
    background: rgba(255, 255, 255, .28);
    transition: background 240ms ease;
}
.style-progress i.is-active { background: #fff; }
.style-studio-copy { max-width: 600px; }
.style-studio-copy > .eyebrow { color: rgba(244, 240, 232, .5); }
.style-studio-copy h2 {
    margin: 22px 0 0;
    font-family: "Italiana", Georgia, serif;
    font-size: clamp(52px, 5.25vw, 82px);
    font-weight: 400;
    line-height: .94;
}
html[data-cirava-language="en"] #styleStudioTitle {
    font-size: clamp(42px, 4.4vw, 70px);
    text-transform: uppercase;
}
.style-studio-intro {
    max-width: 450px;
    margin: 20px 0 0;
    font-size: clamp(14px, 1.2vw, 17px);
}
.style-story {
    min-height: 160px;
    margin-top: clamp(30px, 4.2vh, 46px);
    padding-top: 20px;
    border-top: 1px solid rgba(244, 240, 232, .23);
}
.style-story-heading {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    align-items: center;
}
.style-story-glyph {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(244, 240, 232, .28);
    border-radius: 50%;
    font-family: "Italiana", Georgia, serif;
    font-size: 23px;
}
.style-story-kicker {
    display: block;
    color: rgba(244, 240, 232, .48);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .17em;
    text-transform: uppercase;
}
.style-story h3 {
    margin: 4px 0 0;
    font-family: "Italiana", Georgia, serif;
    font-size: clamp(27px, 2.4vw, 38px);
    font-weight: 400;
}
.style-story > p:not(.style-materials) {
    max-width: 520px;
    margin: 18px 0 0;
    line-height: 1.6;
}
.style-story .style-materials {
    margin: 14px 0 0;
    color: rgba(244, 240, 232, .85);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.style-switches {
    display: grid;
    gap: 8px;
    margin-top: 22px;
}
.style-selector {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    min-height: 68px;
    border: 1px solid rgba(244, 240, 232, .21);
}
.style-selector > button {
    border: 0;
    background: transparent;
    color: #f4f0e8;
    font-size: 17px;
    cursor: pointer;
    transition: background 200ms ease, color 200ms ease;
}
.style-selector > button:first-child { border-right: 1px solid rgba(244, 240, 232, .16); }
.style-selector > button:last-child { border-left: 1px solid rgba(244, 240, 232, .16); }
.style-selector > button:hover,
.style-selector > button:focus-visible {
    background: #f4f0e8;
    color: var(--ink);
    outline: 0;
}
.style-selector-value {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-width: 0;
    padding: 12px 18px;
}
.style-selector-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(244, 240, 232, .08);
    font-family: "Italiana", Georgia, serif;
    font-size: 19px;
}
.style-selector-value small,
.style-selector-value strong,
.style-selector-value em { display: block; }
.style-selector-value small {
    color: rgba(244, 240, 232, .43);
    font-size: 7px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.style-selector-value strong {
    margin-top: 2px;
    overflow: hidden;
    font-family: "Italiana", Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.style-selector-value em {
    margin-top: 2px;
    overflow: hidden;
    color: rgba(244, 240, 232, .48);
    font-size: 9px;
    font-style: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.style-create-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
    padding: 14px 0 8px;
    border-bottom: 1px solid rgba(244, 240, 232, .56);
    color: #f4f0e8;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.split-heading { display: grid; grid-template-columns: 1.4fr .6fr; gap: 60px; align-items: end; margin-bottom: 70px; }
.split-heading > p { max-width: 420px; margin: 0 0 4px auto; }
.filter-row { display: flex; gap: 6px; margin-bottom: 28px; overflow-x: auto; }
.filter-button { padding: 9px 15px; border: 1px solid var(--line); border-radius: 100px; background: transparent; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; }
.filter-button.is-active { background: var(--ink); color: #fff; }
.design-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 28px 18px; }
.design-card[hidden] { display: none; }
.home-community-empty { grid-column:1 / -1; margin:0; padding:28px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); color:var(--muted); font-size:13px; }
.design-card:nth-child(even) { margin-top: 0; }
.design-card .content-image { height: auto; }
.card-meta { display: flex; justify-content: space-between; align-items: end; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.card-meta span { color: var(--muted); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.card-meta h3 { margin: 5px 0 0; font-family: "Italiana", Georgia, serif; font-size: 27px; font-weight: 400; }
.card-meta button,
.card-meta > a { padding: 5px 0; border: 0; border-bottom: 1px solid var(--ink); background: none; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; white-space: nowrap; }
.design-community-link { display: flex; justify-content: flex-end; margin-top: 42px; }

.text-link { display: inline-flex; gap: 16px; align-items: center; padding: 4px 0 7px; border-bottom: 1px solid currentColor; font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.button-link { border-width: 0 0 1px; background: none; cursor: pointer; }

.story-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.story-toggle { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 20px 0; border: 0; border-bottom: 1px solid var(--line); background: none; font-family: "Italiana", Georgia, serif; font-size: 26px; text-align: left; cursor: pointer; }
.story-toggle small { display: block; margin-bottom: 4px; color: var(--muted); font-family: "DM Sans", sans-serif; font-size: 8px; letter-spacing: .15em; text-transform: uppercase; }
.story-toggle i { font-family: "DM Sans", sans-serif; font-size: 20px; font-style: normal; transition: transform 250ms ease; }
.story-toggle[aria-expanded="true"] i { transform: rotate(45deg); }
.story-detail { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 350ms var(--ease); }
.story-detail p { min-height: 0; margin: 0; overflow: hidden; }
.story-toggle[aria-expanded="true"] + .story-detail { grid-template-rows: 1fr; }
.story-toggle[aria-expanded="true"] + .story-detail p { margin-top: 18px; }

.section-stone { background: var(--stone); }
.atelier { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(50px,8vw,130px); align-items: center; }
.atelier-copy > p:not(.eyebrow) { max-width: 540px; margin: 34px 0 42px; }
.making-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.making-list li { display: flex; gap: 28px; padding: 17px 0; border-bottom: 1px solid var(--line); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.making-list span { color: var(--muted); }

.size-guide {
    display: flex;
    align-items: center;
    min-height: 100vh;
    min-height: 100svh;
    padding: clamp(84px, 9vh, 118px) clamp(28px, 5vw, 82px) clamp(30px, 5vh, 58px);
    overflow: hidden;
    background: var(--paper);
}
.size-guide-shell {
    display: grid;
    grid-template-columns: minmax(300px, .72fr) minmax(0, 1.48fr);
    gap: clamp(36px, 5vw, 88px);
    width: min(100%, 1720px);
    min-height: min(620px, calc(100svh - 132px));
    margin: 0 auto;
}
.size-guide-sidebar { display: flex; flex-direction: column; min-width: 0; }
.size-guide-sidebar h2 {
    margin: 12px 0 0;
    font-family: "Italiana", Georgia, serif;
    font-size: clamp(54px, 6vw, 92px);
    font-weight: 400;
    line-height: .98;
}
.size-guide-intro { max-width: 390px; margin: 22px 0 0; color: var(--muted); }
.fit-ease-note {
    max-width: 430px;
    margin-top: 18px;
    padding: 14px 0 15px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.fit-ease-note .eyebrow { margin: 0; color: var(--gold); }
.fit-ease-note h3 {
    margin: 6px 0 5px;
    font-family: "Italiana", Georgia, serif;
    font-size: clamp(24px, 2vw, 31px);
    font-weight: 400;
    line-height: 1;
}
.fit-ease-note > p:not(.eyebrow) { max-width: 350px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
.fit-ease-note dl { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin: 13px 0 0; }
.fit-ease-note dl > div { min-width: 0; }
.fit-ease-note dt { color: var(--muted); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.fit-ease-note dd { margin: 3px 0 0; color: var(--ink); font-size: 12px; font-weight: 500; white-space: nowrap; }
.size-guide-tabs { margin-top: auto; border-bottom: 1px solid var(--line); }
.size-guide-tab {
    position: relative;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
    width: 100%;
    padding: 16px 0 15px;
    border: 0;
    border-top: 1px solid var(--line);
    background: none;
    text-align: left;
    cursor: pointer;
}
.size-guide-tab::after {
    position: absolute;
    content: "";
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: var(--ink);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 500ms var(--ease);
}
.size-guide-tab:hover::after,
.size-guide-tab:focus-visible::after,
.size-guide-tab.is-active::after { transform: scaleX(1); }
.size-guide-tab:focus-visible { outline: 1px solid var(--ink); outline-offset: 5px; }
.size-guide-tab-number { padding-top: 4px; color: var(--muted); font-size: 10px; letter-spacing: .14em; }
.size-guide-tab-copy { display: grid; min-width: 0; }
.size-guide-tab-copy strong { font-family: "Italiana", Georgia, serif; font-size: clamp(20px, 2vw, 29px); font-weight: 400; line-height: 1.12; }
.size-guide-tab-copy span {
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 12px;
    opacity: 0;
    transition: max-height 500ms var(--ease), margin 500ms var(--ease), opacity 300ms ease;
}
.size-guide-tab.is-active .size-guide-tab-copy span { max-height: 42px; margin-top: 7px; opacity: 1; }

.size-guide-stage {
    position: relative;
    min-width: 0;
    min-height: min(620px, calc(100svh - 132px));
    overflow: hidden;
    border: 1px solid rgba(25, 26, 24, .13);
    background: var(--paper);
}
.size-guide-stage::before {
    position: absolute;
    z-index: 3;
    content: "";
    inset: 0 auto 0 0;
    width: 3px;
    background: var(--gold);
}
.size-guide-panel {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    padding: clamp(26px, 3.3vw, 54px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(24px);
    transition: opacity 360ms ease, transform 500ms var(--ease), visibility 0s linear 500ms;
}
.size-guide-panel.is-active {
    z-index: 2;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    transition-delay: 80ms, 80ms, 0s;
}
.size-guide-panel-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(190px, .65fr); gap: 26px; align-items: end; }
.size-guide-panel-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -12px; }
.size-guide-panel-heading h3 { font-family: "Italiana", Georgia, serif; font-size: clamp(35px, 4.2vw, 60px); font-weight: 400; line-height: .98; }
.size-guide-panel-heading > p:not(.eyebrow),
.reference-heading > p { max-width: 300px; margin: 0; color: var(--muted); font-size: 13px; }
.measurement-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(190px, .65fr); gap: clamp(20px, 3vw, 48px); align-items: center; flex: 1; min-height: 0; margin-top: 18px; }
.measurement-illustration { min-width: 0; min-height: 260px; height: 100%; }
.measurement-illustration > img { display: block; width: 100%; height: 100%; object-fit: contain; background: #f4f4ef; }
.measurement-drawing { display: block; width: 100%; height: 100%; overflow: visible; }
.drawing-line { fill: none; stroke: var(--ink); stroke-width: 1.35; stroke-linecap: round; stroke-linejoin: round; }
.drawing-detail { opacity: .42; }
.drawing-tape { stroke: var(--gold); stroke-width: 3; }
.drawing-string { stroke: var(--gold); stroke-width: 2.5; }
.drawing-string-flat { stroke: var(--gold); stroke-width: 2; }
.drawing-ticks { opacity: .62; }
.drawing-marker { fill: var(--ink); }
.drawing-number { fill: #fff; font-family: "DM Sans", sans-serif; font-size: 11px; text-anchor: middle; }
.drawing-callout { opacity: .45; }
.drawing-label { fill: var(--ink); font-family: "DM Sans", sans-serif; font-size: 10px; font-weight: 600; letter-spacing: .13em; }
.drawing-caption { fill: var(--muted); font-family: "DM Sans", sans-serif; font-size: 11px; }
.drawing-ruler { fill: rgba(168, 135, 84, .08); stroke: var(--gold); stroke-width: 1.5; }
.drawing-mark { stroke: var(--ink); stroke-width: 2; }
.measurement-steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.measurement-steps li { display: grid; grid-template-columns: 28px 1fr; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.measurement-steps span { padding-top: 2px; color: var(--gold); font-size: 9px; letter-spacing: .1em; }
.measurement-steps p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
.size-guide-note { display: flex; justify-content: space-between; gap: 22px; margin: 0; padding-top: 14px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }

.reference-heading { grid-template-columns: minmax(0, 1fr) minmax(180px, .45fr); }
.reference-heading .eyebrow { grid-column: auto; margin-bottom: 8px; }
.size-table-wrap { display: flex; align-items: center; flex: 1; min-height: 0; margin: 22px 0; }
.size-reference-table { width: 100%; border-collapse: collapse; table-layout: fixed; font-size: clamp(11px, 1vw, 13px); }
.size-reference-table th,
.size-reference-table td { padding: clamp(13px, 2vh, 20px) 10px; border: 1px solid rgba(25, 26, 24, .13); text-align: center; }
.size-reference-table thead th { background: var(--ink); color: #fff; font-size: 9px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }
.size-reference-table thead th:first-child { width: 25%; text-align: left; }
.size-reference-table tbody th { background: rgba(120, 129, 119, .12); font-weight: 500; text-align: left; }
.size-reference-table tbody tr:nth-child(even) td { background: rgba(255, 255, 255, .36); }
.reference-footnote { display: grid; grid-template-columns: 110px 1fr; gap: 20px; padding-top: 15px; border-top: 1px solid var(--line); }
.reference-footnote span { color: var(--gold); font-size: 9px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.reference-footnote p { max-width: 540px; margin: 0; color: var(--muted); font-size: 11px; }

.bead-scale-panel .size-guide-panel-heading h3 { font-size: clamp(34px, 3.8vw, 54px); }
.bead-scale-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; flex: 1; min-height: 0; margin: 16px 0 10px; }
.bead-scale-figure { display: flex; flex-direction: column; min-width: 0; margin: 0; }
.bead-scale-image { position: relative; min-height: 0; aspect-ratio: 1.9; overflow: hidden; background: var(--paper); }
.bead-scale-image img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.bead-scale-image > span { position: absolute; top: 12px; left: 12px; padding: 6px 8px; background: rgba(25, 26, 24, .88); color: #fff; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.bead-scale-figure figcaption { padding: 8px 2px 0; }
.bead-size-list { display: grid; grid-template-columns: repeat(9, 1fr); gap: 2px; }
.bead-size-list-large { grid-template-columns: repeat(6, 1fr); }
.bead-size-list span { display: grid; place-items: center; min-width: 0; height: 24px; border-right: 1px solid var(--line); color: var(--ink); font-size: 9px; }
.bead-size-list span:last-child { border: 0; }
.bead-scale-figure figcaption p { margin: 4px 0 0; color: var(--muted); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.bead-scale-note { padding-top: 9px; font-size: 10px; }
.bead-scale-note span { color: var(--ink); font-weight: 500; white-space: nowrap; }

.size-guide-panel.is-active .drawing-line { stroke-dasharray: 1400; animation: guide-draw 900ms var(--ease) both; }
.size-guide-panel.is-active .drawing-detail { animation-delay: 100ms; }
.size-guide-panel.is-active .drawing-tape,
.size-guide-panel.is-active .drawing-string,
.size-guide-panel.is-active .drawing-string-flat { animation-delay: 220ms; }
.reference-panel.is-active tbody tr { animation: guide-row-in 420ms var(--ease) both; }
.reference-panel.is-active tbody tr:nth-child(2) { animation-delay: 60ms; }
.reference-panel.is-active tbody tr:nth-child(3) { animation-delay: 120ms; }
.reference-panel.is-active tbody tr:nth-child(4) { animation-delay: 180ms; }
.bead-scale-panel.is-active .bead-scale-figure { animation: guide-photo-in 560ms var(--ease) both; }
.bead-scale-panel.is-active .bead-scale-figure:nth-child(2) { animation-delay: 90ms; }

@keyframes guide-draw { from { stroke-dashoffset: 1400; opacity: 0; } to { stroke-dashoffset: 0; opacity: 1; } }
@keyframes guide-row-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes guide-photo-in { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: translateX(0); } }

.gift { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(50px,10vw,160px); align-items: center; background: #ece3df; }
.gift-copy p:not(.eyebrow) { max-width: 540px; margin: 32px 0; }
.final-cta { padding: clamp(110px,14vw,210px) 24px; background: var(--ink); color: #fff; text-align: center; }
.final-cta h2 { font-size: clamp(60px,9vw,140px); }
.final-cta .eyebrow { color: rgba(255,255,255,.6); }
.cta-actions { display: flex; justify-content: center; gap: 10px; margin-top: 52px; }

.site-footer { display: grid; grid-template-columns: 1.7fr repeat(3,1fr); gap: 40px; padding: 80px clamp(24px,7vw,112px) 30px; background: #121311; color: rgba(255,255,255,.68); }
.footer-brand p { margin-top: 16px; }
.footer-brand .wordmark { color: #fff; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-column h2 { margin: 0 0 10px; color: #fff; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.footer-column a,
.footer-column button { padding: 0; border: 0; background: none; color: inherit; font-size: 12px; cursor: pointer; }
.footer-column a:hover,
.footer-column button:hover { color: #fff; }
.footer-legal { grid-column: 1/-1; display: flex; gap: 25px; margin-top: 55px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.15); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.footer-legal button { padding: 0; border: 0; background: none; color: inherit; cursor: pointer; }
.footer-legal span:last-child { margin-left: auto; }

dialog { width: min(820px,calc(100vw - 32px)); padding: clamp(30px,6vw,75px); border: 0; background: var(--paper); color: var(--ink); }
dialog::backdrop { background: rgba(18,19,17,.76); backdrop-filter: blur(7px); }
dialog h2 { max-width: 680px; font-size: clamp(42px,6vw,72px); }
.dialog-close { position: absolute; top: 18px; right: 20px; width: 38px; height: 38px; border: 0; background: none; font-size: 28px; cursor: pointer; }
.quiz-dialog { width: min(1120px, calc(100vw - 48px)); max-width: none; height: min(860px, calc(100svh - 48px)); max-height: none; padding: 0; overflow: hidden; background: var(--paper); box-shadow: 0 32px 90px rgba(0,0,0,.34); }
.quiz-dialog iframe { display: block; width: 100%; height: 100%; border: 0; background: var(--paper); }
.quiz-dialog-close { z-index: 2; top: 16px; right: 17px; display: grid; place-items: center; border-radius: 50%; background: rgba(251,249,244,.9); font-size: 25px; }
.quiz-dialog-close:hover { background: var(--ivory); }
.dialog-paths { display: grid; margin-top: 45px; border-top: 1px solid var(--line); }
.dialog-paths a,
.dialog-paths button { display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 15px; padding: 22px 0; border: 0; border-bottom: 1px solid var(--line); background: none; text-align: left; cursor: pointer; }
.dialog-paths strong { font-family: "Italiana", Georgia, serif; font-size: 25px; font-weight: 400; }
.dialog-paths small { color: var(--muted); }
.design-dialog p:not(.eyebrow) { max-width: 620px; margin: 30px 0; color: var(--muted); }
.dialog-actions { display: flex; align-items: center; gap: 25px; margin-top: 35px; }
.notice { position: fixed; z-index: 300; left: 50%; bottom: 24px; max-width: min(480px,calc(100vw - 30px)); padding: 14px 20px; background: var(--ink); color: #fff; font-size: 12px; text-align: center; opacity: 0; transform: translate(-50%,20px); pointer-events: none; transition: opacity 250ms ease, transform 250ms ease; }
.notice.is-visible { opacity: 1; transform: translate(-50%,0); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 850ms var(--ease), transform 850ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.style-story.is-updating > * { animation: style-copy-in 420ms var(--ease) both; }
.style-story.is-updating > :nth-child(2) { animation-delay: 35ms; }
.style-story.is-updating > :nth-child(3) { animation-delay: 70ms; }

@keyframes hero-bg-drift { to { translate: -.7% -.45%; } }
@keyframes hero-float-primary { to { translate: .35% -.52%; } }
@keyframes hero-float-secondary { to { translate: -.42% .55%; } }
@keyframes hero-float-near { to { translate: .8% -.75%; } }
@keyframes hero-float-mid { to { translate: -.48% .55%; } }
@keyframes hero-float-far { to { translate: .32% .42%; } }
@keyframes scroll-line { 0%,100% { transform: scaleY(.25); opacity:.4; } 50% { transform: scaleY(1); opacity:1; } }
@keyframes style-copy-in {
    from { opacity: 0; transform: translateY(7px); }
    to { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
    .site-header { grid-template-columns: 1fr auto; }
    .primary-navigation { display: none; }
    .mobile-account-action { display:block; padding:8px 0; border:0; background:none; color:inherit; font-size:11px; font-weight:500; letter-spacing:.12em; text-transform:uppercase; cursor:pointer; }
    .style-studio { grid-template-columns: minmax(0, 1fr) minmax(330px, .86fr); gap: 46px; padding-inline: 42px; }
    .style-studio-visual { width: min(100%, 54svh, 560px); }
    .style-story { margin-top: 38px; }
    .atelier,
    .gift { gap: 50px; }
    .section-heading { grid-template-columns: 1fr; gap: 20px; }
    .design-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 42px 20px; }
    .size-guide { padding-inline: 30px; }
    .size-guide-shell { grid-template-columns: minmax(260px, .62fr) minmax(0, 1.38fr); gap: 28px; }
    .size-guide-panel-heading { grid-template-columns: 1fr; gap: 8px; }
    .size-guide-panel-heading .eyebrow { margin-bottom: 0; }
    .measurement-layout { grid-template-columns: minmax(0, 1.15fr) minmax(180px, .85fr); gap: 20px; }
}

@media (max-width: 780px) {
    .quiz-dialog { width: calc(100vw - 18px); height: calc(100svh - 18px); }
    .site-header { min-height: 62px; padding: 0 20px; }
    .menu-toggle { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(2,18px); gap: 5px; justify-self: end; padding: 12px 0; }
    .menu-toggle span:not(.sr-only) { display: block; width: 18px; height: 1px; background: var(--ink); transition: transform 250ms ease; }
    .menu-toggle[aria-expanded="true"] span:first-child { transform: translate(11px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translate(-11px) rotate(-45deg); }
    .primary-navigation { position: fixed; inset: 0; display: flex; flex-direction: column; justify-content: center; gap: 20px; background: var(--ivory); opacity: 0; visibility: hidden; transition: opacity 250ms ease; }
    .primary-navigation.is-open { opacity: 1; visibility: visible; }
    .primary-navigation a, .primary-navigation .mobile-account-action { font-family: "Italiana", Georgia, serif; font-size: 36px; letter-spacing:0; text-transform: none; }
    .header-actions { display: none; }
    .hero-copy { padding-inline: 24px; }
    .hero h1 { font-size: clamp(56px,19vw,86px); }
    .hero-line { flex-direction: column; gap: 0; }
    .hero-stage { width: max(155vw, 177.66svh); height: max(100svh, 87.2vw); }
    .hero-bead-left-front { left: -12%; top: 42%; width: 28%; }
    .hero-bead-mid-left { left: 11%; top: 39%; width: 10%; }
    .hero-bead-top-stone { left: 42%; top: 8%; width: 12%; }
    .hero-bead-top-white { left: 75%; top: 11%; width: 15%; }
    .hero-bead-tiny-gold { left: 81%; top: 25%; width: 7%; }
    .hero-bead-bottom-stone { left: 28%; top: 76%; width: 18%; }
    .hero-bead-foreground-bottom { left: 48%; top: 88%; width: 24%; }
    .hero::after { background: radial-gradient(circle at center, rgba(248,246,241,.82) 0, rgba(248,246,241,.5) 25%, transparent 61%); }
    .section-shell { padding: 85px 22px; }
    .atelier,
    .gift { grid-template-columns: 1fr; }
    .worktable { min-height: 820px; }
    .worktable-image { object-position: 51% center; }
    .worktable-copy { width: 100%; padding: 28px; }
    .image-placeholder-wide,
    .image-placeholder-atelier,
    .image-placeholder-gift { min-height: 480px; }
    .section-heading,
    .split-heading { grid-template-columns: 1fr; gap: 20px; margin-bottom: 50px; }
    .split-heading > p { margin: 0; }
    .style-studio {
        grid-template-columns: 1fr;
        gap: 55px;
        min-height: auto;
        padding: 78px 22px 88px;
    }
    .style-studio-visual {
        grid-row: 2;
        width: min(100%, 560px);
        aspect-ratio: 3 / 4;
    }
    .style-studio-copy {
        grid-row: 1;
        width: min(100%, 620px);
        max-width: none;
        margin-inline: auto;
    }
    .style-studio-copy h2 { font-size: clamp(54px, 14vw, 84px); }
    .style-story { min-height: 0; margin-top: 42px; }
    .design-grid { grid-template-columns: 1fr; }
    .design-card:nth-child(even) { margin-top: 0; }
    .image-placeholder-portrait { min-height: 0; }
    .story-grid { grid-template-columns: 1fr; gap: 55px; }
    .size-guide { align-items: flex-start; min-height: auto; padding: 84px 18px 30px; overflow: visible; }
    .size-guide-shell { display: flex; flex-direction: column; gap: 22px; min-height: 0; }
    .size-guide-sidebar h2 { margin-top: 8px; font-size: 48px; }
    .size-guide-intro { max-width: 520px; margin-top: 10px; font-size: 13px; }
    .fit-ease-note { max-width: 520px; margin-top: 16px; }
    .size-guide-tabs { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 20px; border: 1px solid var(--line); }
    .size-guide-tab { display: flex; min-height: 68px; padding: 11px 9px; border-top: 0; border-right: 1px solid var(--line); }
    .size-guide-tab:last-child { border-right: 0; }
    .size-guide-tab-number { display: none; }
    .size-guide-tab-copy strong { font-family: "DM Sans", sans-serif; font-size: 9px; font-weight: 600; letter-spacing: .08em; line-height: 1.35; text-transform: uppercase; }
    .size-guide-tab-copy span { display: none; }
    .size-guide-stage { min-height: 640px; }
    .size-guide-panel { padding: 24px 20px; }
    .size-guide-panel-heading h3 { font-size: 39px; }
    .measurement-layout { grid-template-columns: 1fr; gap: 8px; margin-top: 10px; }
    .measurement-illustration { min-height: 250px; height: 250px; }
    .measurement-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .measurement-steps li { display: block; padding: 11px; border-right: 1px solid var(--line); }
    .measurement-steps li:last-child { border-right: 0; }
    .measurement-steps p { margin-top: 5px; }
    .reference-heading { grid-template-columns: 1fr; }
    .bead-scale-grid { grid-template-columns: 1fr; overflow: auto; }
    .bead-scale-image { aspect-ratio: 1.75; }
    .site-footer { grid-template-columns: repeat(2,1fr); }
    .footer-brand { grid-column: 1/-1; margin-bottom: 30px; }
    .footer-legal { flex-wrap: wrap; }
    .footer-legal span:last-child { width: 100%; margin-left: 0; }
}

@media (max-width: 480px) {
    .image-placeholder { padding: 18px; }
    .image-placeholder > div { padding: 10px; }
    .style-studio { padding-inline: 16px; }
    .style-studio-visual { width: 100%; }
    .style-visual-topline { top: 18px; right: 18px; left: 18px; }
    .style-swipe-hint { right: 18px; bottom: 38px; left: 18px; gap: 10px; font-size: 8px; }
    .style-progress { right: 18px; bottom: 18px; left: 18px; }
    .style-selector { grid-template-columns: 40px minmax(0, 1fr) 40px; }
    .style-selector-value { grid-template-columns: 34px minmax(0, 1fr); gap: 10px; padding-inline: 12px; }
    .style-selector-icon { width: 32px; height: 32px; font-size: 16px; }
    .style-selector-value strong { font-size: 19px; }
    .image-placeholder-wide,
    .image-placeholder-atelier,
    .image-placeholder-gift { min-height: 380px; }
    .cta-actions,
    .dialog-actions { flex-direction: column; align-items: stretch; }
    .site-footer { grid-template-columns: 1fr 1fr; gap: 45px 25px; }
    .dialog-paths a,
    .dialog-paths button { grid-template-columns: 30px 1fr; }
    .dialog-paths small { grid-column: 2; }
    .size-guide-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .size-guide-tab:nth-child(2) { border-right: 0; }
    .size-guide-tab:nth-child(n+3) { border-top: 1px solid var(--line); }
    .size-guide-stage { min-height: 680px; }
    .measurement-illustration { min-height: 220px; height: 220px; }
    .measurement-steps { grid-template-columns: 1fr; }
    .measurement-steps li { display: grid; border-right: 0; }
    .size-table-wrap { margin: 16px 0; overflow-x: auto; }
    .size-reference-table { min-width: 590px; }
    .bead-scale-image { aspect-ratio: 1.45; }
    .bead-scale-note { display: block; }
    .bead-scale-note span { display: block; margin-bottom: 6px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
    .hero-stage { transform: translate3d(-50%, -50%, 0); }
    .hero-layer { transform: translate3d(0, 0, 0) scale(var(--layer-scale, 1)); }
}
