@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
    color-scheme: dark;
    --ink: #f4eadf;
    --ink-soft: #c9c1b4;
    --ink-muted: #9e968b;
    --paper: #101114;
    --paper-strong: #f3eadb;
    --panel: #1d1d20;
    --panel-lift: #28292d;
    --stone: #aeb2b3;
    --stone-deep: #5f666b;
    --charcoal: #0b0d10;
    --charcoal-2: #15161a;
    --brass: #c4934f;
    --blue: #6d9cb2;
    --burgundy: #a05665;
    --olive: #8d9a66;
    --success: #76b58a;
    --warning: #d2a05a;
    --danger: #cf6b5d;
    --font-display: "Cormorant Garamond", Century, "Baskerville Old Face", Georgia, serif;
    --font-body: Manrope, Aptos, "Segoe UI", "Helvetica Neue", sans-serif;
    --shadow-soft: 0 18px 54px rgba(0, 0, 0, 0.28);
    --shadow-strong: 0 28px 80px rgba(0, 0, 0, 0.48);
    --radius-sm: 6px;
    --radius-md: 8px;
    --max: 1180px;
    --gutter: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 16% 9%, rgba(196, 147, 79, 0.11), transparent 30%),
        radial-gradient(circle at 80% 24%, rgba(109, 156, 178, 0.14), transparent 30%),
        radial-gradient(circle at 76% 78%, rgba(160, 86, 101, 0.08), transparent 34%),
        linear-gradient(180deg, #101114 0%, #171512 42%, #0b0d10 100%);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.55;
    min-width: 320px;
    overflow-x: clip;
}

body::selection {
    background: rgba(196, 147, 79, 0.38);
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

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

.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: 100;
    top: 12px;
    left: 12px;
    transform: translateY(-140%);
    background: var(--panel-lift);
    color: var(--ink);
    border: 1px solid rgba(196, 147, 79, 0.34);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    box-shadow: var(--shadow-soft);
}

.skip-link:focus {
    transform: translateY(0);
    outline: 3px solid rgba(185, 133, 67, 0.5);
    outline-offset: 3px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(17, 15, 13, 0.82);
    border-bottom: 1px solid rgba(196, 147, 79, 0.18);
    backdrop-filter: blur(18px);
}

.site-header[data-elevated="true"] {
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
}

.nav-shell {
    width: min(var(--max), calc(100% - 2 * var(--gutter)));
    min-height: 74px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    min-height: 48px;
}

.brand-symbol {
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #070604;
    border: 1px solid rgba(196, 147, 79, 0.32);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
    overflow: hidden;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.brand-symbol img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.brand-mark:hover .brand-symbol,
.brand-mark:focus-visible .brand-symbol {
    border-color: rgba(196, 147, 79, 0.74);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
    transform: translateY(-1px);
}

.brand-copy {
    display: grid;
    gap: 0;
    min-width: 0;
}

.brand-copy span,
.site-footer strong {
    font-family: var(--font-display);
    font-size: 1.16rem;
    font-weight: 600;
}

.brand-copy small {
    color: var(--ink-soft);
    font-size: 0.78rem;
}

.primary-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.primary-links a,
.tray-button {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: var(--radius-sm);
    padding: 9px 11px;
    color: var(--ink-soft);
    font-size: 0.96rem;
    line-height: 1;
    text-decoration: none;
    background: transparent;
    cursor: pointer;
    white-space: nowrap;
}

.primary-links a:hover,
.tray-button:hover {
    color: var(--ink);
    background: rgba(196, 147, 79, 0.12);
}

.primary-links a:focus-visible,
.tray-button:focus-visible {
    color: var(--ink);
    background: rgba(196, 147, 79, 0.12);
}

.language-switch {
    min-height: 42px;
    display: inline-grid;
    grid-template-columns: repeat(2, minmax(38px, 1fr));
    align-items: center;
    gap: 2px;
    padding: 3px;
    border: 1px solid rgba(196, 147, 79, 0.26);
    border-radius: var(--radius-sm);
    background: rgba(15, 13, 11, 0.42);
}

.language-switch button {
    min-height: 34px;
    border: 0;
    border-radius: 4px;
    background: transparent;
    color: var(--ink-soft);
    padding: 0 9px;
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
}

.language-switch button:hover,
.language-switch button[aria-pressed="true"] {
    background: var(--brass);
    color: #120f0b;
}

.tray-button strong {
    min-width: 22px;
    height: 22px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: var(--brass);
    color: #120f0b;
    font-size: 0.72rem;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

.tray-icon {
    width: 18px;
    height: 22px;
    flex: 0 0 18px;
    position: relative;
}

.tray-icon::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    left: 50%;
    top: 0;
    border: 2px solid currentColor;
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
    transform: translateX(-50%);
}

.tray-icon::after {
    content: "";
    position: absolute;
    left: 1px;
    right: 1px;
    bottom: 1px;
    height: 15px;
    border: 2px solid currentColor;
    border-top: 0;
    border-radius: 0 0 3px 3px;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(196, 147, 79, 0.28);
    border-radius: var(--radius-sm);
    background: rgba(42, 34, 25, 0.82);
    place-items: center;
    padding: 9px;
    cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
    width: 21px;
    height: 2px;
    background: var(--ink);
    display: block;
    margin: 3px 0;
}

.hero {
    position: relative;
    min-height: min(760px, calc(100svh - 12px));
    display: grid;
    align-items: end;
    isolation: isolate;
    overflow: hidden;
    background: var(--charcoal);
}

.hero-media,
.hero-media img,
.hero-shade,
.hero-lume {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 67% center;
    filter: saturate(0.96) contrast(1.04);
    transform: scale(1.02);
}

.hero-shade {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(15, 14, 12, 0.94) 0%, rgba(15, 14, 12, 0.78) 33%, rgba(15, 14, 12, 0.2) 66%, rgba(15, 14, 12, 0.02) 100%),
        linear-gradient(0deg, rgba(15, 14, 12, 0.72) 0%, rgba(15, 14, 12, 0.05) 42%);
}

.hero-lume {
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(112deg, transparent 22%, rgba(255, 236, 190, 0.18) 43%, transparent 58%);
    transform: translateX(-36%);
    mix-blend-mode: screen;
    animation: lumeSweep 7.5s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: min(650px, calc(100% - 2 * var(--gutter)));
    margin: 0 auto 118px;
    justify-self: start;
    margin-left: max(var(--gutter), calc((100% - var(--max)) / 2));
    color: var(--paper-strong);
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--brass);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

p {
    hyphens: none;
    overflow-wrap: break-word;
}

h1,
h2,
h3 {
    hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
}

h1,
h2,
.return-form h2,
.tray-head h2 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: 0;
    text-wrap: balance;
}

h1 {
    max-width: 12ch;
    font-size: clamp(3.9rem, 5.4vw, 5.15rem);
}

.hero-text {
    max-width: 58ch;
    margin: 20px 0 0;
    color: rgba(243, 234, 219, 0.82);
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button:disabled {
    cursor: progress;
    opacity: 0.72;
    transform: none;
}

.button:focus-visible,
.text-button:focus-visible,
.icon-button:focus-visible,
.demo-fallback-launcher:focus-visible,
.demo-advisor-card a:focus-visible,
.filter-chip:focus-visible,
.prompt-list button:focus-visible,
.language-switch button:focus-visible,
.brand-mark:focus-visible,
.nav-toggle:focus-visible,
.primary-links a:focus-visible,
.tray-button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid #e3b96f;
    outline-offset: 3px;
}

.demo-fallback-launcher {
    position: fixed;
    z-index: 76;
    left: 20px;
    bottom: 20px;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(227, 185, 111, 0.64);
    border-radius: 999px;
    padding: 10px 16px;
    background: rgba(14, 14, 16, 0.94);
    color: var(--paper-strong);
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.44);
    backdrop-filter: blur(14px);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.035em;
    cursor: pointer;
}

.demo-fallback-launcher:hover {
    border-color: #e3b96f;
    transform: translateY(-2px);
}

.demo-fallback-pulse {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--warning);
    box-shadow: 0 0 0 0 rgba(210, 160, 90, 0.54);
    animation: fallbackPulse 2.4s ease-out infinite;
}

@keyframes fallbackPulse {
    55% {
        box-shadow: 0 0 0 9px rgba(210, 160, 90, 0);
    }
}

.demo-fallback-dialog {
    width: min(980px, calc(100% - 28px));
    max-height: calc(100dvh - 28px);
    border: 0;
    padding: 0;
    overflow: visible;
    background: transparent;
    color: var(--ink);
}

.demo-fallback-dialog::backdrop {
    background: rgba(7, 8, 10, 0.78);
    backdrop-filter: blur(9px);
}

.demo-fallback-shell {
    position: relative;
    max-height: calc(100dvh - 28px);
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid rgba(227, 185, 111, 0.34);
    border-radius: 10px;
    padding: clamp(20px, 3.6vw, 38px);
    background:
        linear-gradient(130deg, rgba(196, 147, 79, 0.11), transparent 32%),
        radial-gradient(circle at 94% 2%, rgba(109, 156, 178, 0.16), transparent 28%),
        #141519;
    box-shadow: 0 36px 100px rgba(0, 0, 0, 0.64);
}

.demo-fallback-shell::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    border-radius: 10px 0 0 10px;
    background: linear-gradient(180deg, var(--warning), var(--brass) 52%, var(--blue));
}

.demo-fallback-head,
.demo-fallback-view-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.demo-fallback-head h2,
.demo-fallback-view h3,
.demo-fallback-overview h3,
.demo-fallback-feature h4,
.demo-order-card h4,
.demo-advisor-card h4 {
    margin: 0;
    color: var(--paper-strong);
    font-family: var(--font-display);
    font-weight: 560;
    line-height: 1.02;
}

.demo-fallback-head h2 {
    max-width: 14ch;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.demo-fallback-badge {
    margin: 0 0 8px;
    color: #edc98d;
    font-size: 0.73rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.demo-fallback-notice {
    margin: 22px 0 30px;
    border: 1px solid rgba(210, 160, 90, 0.32);
    border-left: 4px solid var(--warning);
    border-radius: var(--radius-sm);
    padding: 13px 15px;
    background: rgba(210, 160, 90, 0.08);
    color: #ddd2c2;
    font-size: 0.91rem;
}

.demo-fallback-overview > h3,
.demo-fallback-view h3 {
    font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.demo-fallback-overview > p {
    margin: 9px 0 22px;
    color: var(--ink-soft);
}

.demo-fallback-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.demo-fallback-feature {
    min-width: 0;
    min-height: 292px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid rgba(196, 147, 79, 0.2);
    border-radius: var(--radius-md);
    padding: 20px;
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
}

.demo-fallback-feature:hover {
    border-color: rgba(227, 185, 111, 0.5);
}

.demo-fallback-step {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-bottom: 20px;
    border: 1px solid rgba(227, 185, 111, 0.38);
    border-radius: 50%;
    color: #edc98d;
    font-size: 0.73rem;
    font-weight: 900;
}

.demo-fallback-feature h4 {
    font-size: 1.58rem;
}

.demo-fallback-feature p {
    margin: 10px 0 22px;
    color: var(--ink-soft);
    font-size: 0.91rem;
}

.demo-fallback-feature .button {
    width: 100%;
    margin-top: auto;
}

.demo-fallback-view {
    min-height: 470px;
}

.demo-fallback-view-head {
    flex-direction: column;
    gap: 18px;
    margin-bottom: 24px;
}

.demo-fallback-view-head .text-button {
    padding-left: 0;
}

.demo-fallback-view-head .eyebrow {
    margin-bottom: 5px;
}

.demo-fallback-form,
.demo-fallback-advisor-form {
    margin-bottom: 20px;
    border: 1px solid rgba(196, 147, 79, 0.2);
    border-radius: var(--radius-md);
    padding: 16px;
    background: rgba(8, 9, 11, 0.35);
}

.demo-fallback-form > label,
.demo-fallback-advisor-form label {
    display: grid;
    gap: 7px;
    color: var(--ink-soft);
    font-size: 0.84rem;
    font-weight: 800;
}

.demo-fallback-advisor-form {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(150px, 0.72fr) auto;
    gap: 12px;
    align-items: end;
}

.demo-fallback-result {
    min-height: 190px;
}

.demo-fallback-loading,
.demo-fallback-error {
    margin: 0;
    border: 1px dashed rgba(227, 185, 111, 0.34);
    border-radius: var(--radius-md);
    padding: 30px;
    color: var(--ink-soft);
    text-align: center;
}

.demo-fallback-error {
    border-color: rgba(207, 107, 93, 0.48);
    color: #efb4a9;
}

.demo-order-card {
    display: grid;
    grid-template-columns: minmax(190px, 0.72fr) minmax(0, 1.7fr);
    overflow: hidden;
    border: 1px solid rgba(196, 147, 79, 0.26);
    border-radius: var(--radius-md);
    background: rgba(244, 234, 223, 0.055);
}

.demo-order-media {
    position: relative;
    min-height: 330px;
    background: #e9e1d5;
}

.demo-order-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.demo-order-media span {
    position: absolute;
    left: 12px;
    bottom: 12px;
    border-radius: 999px;
    padding: 6px 9px;
    background: rgba(11, 13, 16, 0.88);
    color: var(--paper-strong);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.demo-order-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: clamp(20px, 3vw, 30px);
}

.demo-result-kicker {
    margin: 0 0 8px;
    color: #edc98d;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.demo-order-copy h4,
.demo-advisor-card h4 {
    font-size: 1.85rem;
}

.demo-order-copy > p:not(.demo-result-kicker) {
    margin: 10px 0 18px;
    color: var(--ink-soft);
}

.demo-order-facts {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 0 0 22px;
}

.demo-order-facts div {
    min-width: 0;
    border: 1px solid rgba(196, 147, 79, 0.16);
    border-radius: var(--radius-sm);
    padding: 10px 11px;
    background: rgba(8, 9, 11, 0.28);
}

.demo-order-facts dt {
    color: var(--ink-muted);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.demo-order-facts dd {
    margin: 3px 0 0;
    overflow-wrap: anywhere;
    color: var(--paper-strong);
    font-size: 0.87rem;
    font-weight: 750;
}

.demo-fallback-result-title {
    margin: 0 0 12px;
    color: var(--ink-soft);
    font-weight: 800;
}

.demo-advisor-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.demo-advisor-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(196, 147, 79, 0.22);
    border-radius: var(--radius-md);
    background: rgba(244, 234, 223, 0.05);
}

.demo-advisor-card > img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #e9e1d5;
}

.demo-advisor-card > div {
    padding: 18px;
}

.demo-advisor-card h4 {
    font-size: 1.55rem;
}

.demo-advisor-card p:not(.demo-result-kicker) {
    margin: 10px 0 18px;
    color: var(--ink-soft);
    font-size: 0.89rem;
}

.demo-advisor-card footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.demo-advisor-card footer span {
    color: var(--paper-strong);
    font-weight: 900;
}

.demo-advisor-card a {
    color: #edc98d;
    font-size: 0.84rem;
    font-weight: 800;
}

.demo-fallback-frame-note {
    margin: 0 0 14px;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.demo-fallback-xapp-view iframe {
    width: 100%;
    height: min(680px, calc(100dvh - 270px));
    min-height: 480px;
    display: block;
    border: 1px solid rgba(196, 147, 79, 0.28);
    border-radius: var(--radius-md);
    background: #101114;
}

.button-primary {
    background: var(--brass);
    color: #120f0b;
    box-shadow: 0 16px 34px rgba(196, 147, 79, 0.2);
}

.button-secondary {
    background: var(--charcoal);
    color: var(--paper-strong);
}

.button-ghost {
    border-color: rgba(243, 234, 219, 0.24);
    color: var(--ink);
    background: rgba(243, 234, 219, 0.06);
}

.button-ghost.on-light {
    color: var(--ink);
    border-color: rgba(196, 147, 79, 0.24);
    background: rgba(243, 234, 219, 0.06);
}

.button-small {
    min-height: 40px;
    padding: 9px 14px;
    color: #120f0b;
    background: var(--brass);
    white-space: nowrap;
}

.button.full {
    width: 100%;
}

.hero-proof {
    position: absolute;
    z-index: 4;
    left: max(var(--gutter), calc((100% - var(--max)) / 2));
    right: max(var(--gutter), calc((100% - var(--max)) / 2));
    bottom: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    max-width: 720px;
    border: 1px solid rgba(196, 147, 79, 0.18);
    background: rgba(22, 18, 14, 0.62);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-strong);
}

.hero-proof div {
    padding: 15px 18px;
    background: rgba(15, 13, 11, 0.58);
}

.hero-proof strong {
    display: block;
    color: var(--paper-strong);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.055em;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero-proof span {
    color: rgba(243, 234, 219, 0.7);
    font-size: 0.8rem;
}

.atelier-note {
    position: relative;
    display: grid;
    grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.55fr);
    gap: clamp(36px, 6vw, 92px);
    align-items: center;
    padding: 72px 0 64px;
}

.atelier-note::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196, 147, 79, 0.28), transparent);
}

.atelier-note-copy {
    display: grid;
    gap: 14px;
}

.atelier-note-copy h2 {
    margin: 0;
    max-width: 11ch;
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4vw, 3.55rem);
    font-weight: 500;
    line-height: 0.98;
    text-wrap: balance;
}

.atelier-note-copy p:not(.eyebrow) {
    margin: 0;
    max-width: 48ch;
    color: var(--ink-soft);
}

.atelier-values {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-block: 1px solid rgba(196, 147, 79, 0.2);
}

.atelier-values article {
    position: relative;
    display: grid;
    align-content: start;
    gap: 9px;
    min-width: 0;
    padding: 24px clamp(16px, 2.4vw, 28px) 26px;
}

.atelier-values article + article {
    border-left: 1px solid rgba(196, 147, 79, 0.2);
}

.atelier-values article > span {
    color: var(--brass);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.atelier-values strong {
    font-family: var(--font-display);
    font-size: 1.22rem;
    font-weight: 600;
    line-height: 1.15;
}

.atelier-values p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.section-wrap {
    width: min(var(--max), calc(100% - 2 * var(--gutter)));
    margin: 0 auto;
    padding: 88px 0;
    scroll-margin-top: 92px;
}

.collection {
    padding-top: 64px;
}

.section-heading {
    display: grid;
    gap: 12px;
    max-width: 720px;
    margin-bottom: 28px;
}

.section-heading.compact {
    margin-bottom: 22px;
}

.section-heading h2 {
    font-size: clamp(2.25rem, 4vw, 3.35rem);
}

.section-heading p:not(.eyebrow) {
    margin: 0;
    max-width: 66ch;
    color: var(--ink-soft);
}

.collection-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-chip {
    min-height: 44px;
    border: 1px solid rgba(196, 147, 79, 0.36);
    border-radius: var(--radius-sm);
    background: rgba(42, 34, 25, 0.72);
    color: var(--ink-soft);
    padding: 8px 12px;
    cursor: pointer;
}

.filter-chip.is-active,
.filter-chip:hover {
    border-color: rgba(196, 147, 79, 0.45);
    background: rgba(196, 147, 79, 0.95);
    color: #120f0b;
}

.sort-control {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink-soft);
}

.sort-control select,
.lookup-row input,
.return-form select,
.return-form textarea {
    min-height: 44px;
    width: 100%;
    border: 1px solid rgba(196, 147, 79, 0.38);
    border-radius: var(--radius-sm);
    background: rgba(15, 13, 11, 0.62);
    color: var(--ink);
    padding: 10px 12px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.watch-card {
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr;
    min-width: 0;
    border: 1px solid rgba(196, 147, 79, 0.16);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: linear-gradient(180deg, rgba(42, 34, 25, 0.95), rgba(28, 23, 18, 0.98));
    box-shadow: 0 1px 0 rgba(243, 234, 219, 0.08) inset, var(--shadow-soft);
    transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(0);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.watch-card:hover {
    border-color: color-mix(in srgb, var(--accent) 45%, rgba(196, 147, 79, 0.25));
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34);
}

.watch-card.is-hidden {
    display: none;
}

.watch-image-link {
    position: relative;
    display: block;
    background: linear-gradient(145deg, #2a2219, #15120f);
    overflow: hidden;
    text-decoration: none;
}

.watch-image {
    display: block;
    aspect-ratio: 1 / 1;
}

.watch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.005);
    transition: transform 420ms ease, filter 420ms ease;
}

.watch-card:hover .watch-image img {
    transform: scale(1.045);
    filter: saturate(1.03) contrast(1.02);
}

.card-glint {
    position: absolute;
    inset: -25%;
    background: linear-gradient(112deg, transparent 36%, rgba(255, 255, 255, 0.34) 48%, transparent 61%);
    transform: translateX(-76%) rotate(2deg);
    opacity: 0;
    pointer-events: none;
}

.watch-card:hover .card-glint {
    animation: cardGlint 1050ms ease;
}

.watch-card-body {
    display: grid;
    gap: 14px;
    padding: 20px;
}

.watch-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--ink-soft);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.watch-card h3,
.service-card h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.26rem;
    font-weight: 600;
    line-height: 1.15;
}

.watch-card p,
.service-card p,
.faq-item p,
.order-result p {
    margin: 0;
    color: var(--ink-soft);
}

.detail-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.detail-list li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--ink-soft);
    padding: 0;
    font-size: 0.78rem;
    font-weight: 700;
}

.detail-list li::before {
    content: "";
    width: 4px;
    height: 4px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent) 42%, var(--brass));
}

.card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
}

.card-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px 14px;
}

.card-detail-link {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    font-size: 0.92rem;
}

.card-bottom strong {
    font-family: var(--font-display);
    font-size: 1.32rem;
    font-weight: 600;
}

.support {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.75fr);
    gap: 20px;
    align-items: stretch;
}

.support-panel,
.service-card,
.faq-item,
.return-form,
.tray-card {
    border: 1px solid rgba(196, 147, 79, 0.16);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(42, 34, 25, 0.92), rgba(29, 24, 19, 0.96));
    box-shadow: var(--shadow-soft);
}

.support-panel {
    padding: 28px;
}

.lookup-form {
    display: grid;
    gap: 12px;
}

.lookup-form label,
.return-form label span {
    color: var(--ink);
    font-weight: 800;
}

.lookup-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}


.prompt-panel {
    display: grid;
    gap: 12px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(196, 147, 79, 0.16);
}

.prompt-panel h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 600;
}

.prompt-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.prompt-list button {
    flex: 1 1 220px;
    min-height: 44px;
    border: 1px solid rgba(196, 147, 79, 0.28);
    border-radius: var(--radius-sm);
    background: rgba(15, 13, 11, 0.44);
    color: var(--ink-soft);
    padding: 9px 12px;
    text-align: left;
    cursor: pointer;
}

.prompt-list button:hover {
    border-color: rgba(196, 147, 79, 0.54);
    color: var(--ink);
    background: rgba(196, 147, 79, 0.12);
}

.order-result {
    position: relative;
    min-height: 116px;
    margin-top: 20px;
    padding: 18px;
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, rgba(15, 13, 11, 0.62), rgba(42, 34, 25, 0.72));
    overflow: visible;
}

.order-result::before {
    content: "";
    position: absolute;
    width: 5px;
    inset: 16px auto 16px 0;
    border-radius: 0 999px 999px 0;
    background: var(--blue);
}

.order-result[data-tone="success"]::before {
    background: var(--success);
}

.order-result[data-tone="warning"]::before {
    background: var(--warning);
}

.order-result h3 {
    margin: 0 0 8px;
    font-size: 1.18rem;
}

.order-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.order-facts div {
    padding: 10px;
    border-radius: var(--radius-sm);
    background: rgba(15, 13, 11, 0.42);
    overflow-wrap: anywhere;
}

.order-facts span {
    display: block;
    color: var(--ink-soft);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.order-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-top: 16px;
}

.text-button {
    min-height: 44px;
    border: 0;
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--ink);
    padding: 0;
    font: inherit;
    font-weight: 900;
    text-decoration: underline;
    text-decoration-color: rgba(196, 147, 79, 0.68);
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
    cursor: pointer;
}

.text-button:hover {
    color: #f7d093;
}

.service-stack {
    display: grid;
    gap: 20px;
}

.service-card {
    display: grid;
    gap: 12px;
    align-content: start;
    padding: 24px;
}

.service-card .button {
    width: fit-content;
    margin-top: auto;
}

.service-card-featured {
    border-color: rgba(196, 147, 79, 0.32);
    background:
        radial-gradient(circle at 92% 12%, rgba(196, 147, 79, 0.16), transparent 36%),
        linear-gradient(180deg, rgba(52, 40, 27, 0.95), rgba(29, 24, 19, 0.96));
}

.service-kicker {
    width: fit-content;
    border-radius: 999px;
    background: rgba(196, 147, 79, 0.15);
    color: #e2b36c;
    padding: 5px 10px;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.text-link {
    width: fit-content;
    color: var(--ink);
    font-weight: 900;
    text-decoration-color: rgba(185, 133, 67, 0.7);
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}

.faq-groups {
    display: grid;
    gap: 28px;
}

.faq-group {
    display: grid;
    gap: 12px;
}

.faq-group-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(196, 147, 79, 0.16);
}

.faq-group-head h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.34rem;
    font-weight: 600;
}

.faq-group-head span {
    color: var(--ink-soft);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

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

.faq-item {
    padding: 0;
    overflow: clip;
}

.faq-item summary {
    min-height: 58px;
    padding: 17px 18px;
    cursor: pointer;
    font-weight: 900;
}

.faq-item summary::marker {
    color: var(--brass);
}

.faq-item p {
    padding: 0 18px 18px;
}

.return-dialog {
    width: min(560px, calc(100% - 32px));
    max-height: min(760px, calc(100dvh - 24px));
    border: 0;
    padding: 0;
    background: transparent;
}

.return-dialog::backdrop {
    background: rgba(12, 11, 10, 0.62);
    backdrop-filter: blur(8px);
}

.return-form {
    display: grid;
    gap: 16px;
    padding: 24px;
    max-height: min(760px, calc(100dvh - 24px));
    overflow-y: auto;
    overscroll-behavior: contain;
}

.dialog-head,
.tray-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 18px;
}

.return-form label {
    display: grid;
    gap: 8px;
}

.return-form textarea {
    resize: vertical;
    min-height: 110px;
}

.dialog-actions {
    position: sticky;
    bottom: -1px;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 12px;
    background: linear-gradient(180deg, rgba(29, 29, 32, 0), rgba(29, 29, 32, 0.96) 34%);
}

.return-result {
    min-height: 26px;
    color: var(--success);
    font-weight: 800;
}

.icon-button {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(196, 147, 79, 0.24);
    border-radius: var(--radius-sm);
    background: rgba(15, 13, 11, 0.54);
    color: var(--ink);
    font-size: 1.25rem;
    font-weight: 800;
    cursor: pointer;
}

.icon-button span {
    line-height: 1;
}

.tray {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    justify-items: end;
    background: rgba(8, 7, 6, 0.68);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
}

.tray.is-open {
    opacity: 1;
    pointer-events: auto;
}

.tray-card {
    width: min(420px, 100%);
    height: 100%;
    padding: 24px;
    overflow-y: auto;
    transform: translateX(22px);
    transition: transform 220ms ease;
}

.tray.is-open .tray-card {
    transform: translateX(0);
}

.tray-items {
    display: grid;
    gap: 12px;
    margin: 22px 0;
}

.tray-item {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.tray-item img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.tray-item strong,
.tray-item span {
    display: block;
}

.tray-item span {
    color: var(--ink-soft);
}


.detail-page {
    min-height: 100vh;
}

.back-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: var(--ink-soft);
    font-weight: 800;
    text-decoration-color: rgba(196, 147, 79, 0.62);
    text-underline-offset: 5px;
}

.watch-detail-hero,
.watch-detail-grid,
.watch-related {
    width: min(var(--max), calc(100% - 2 * var(--gutter)));
    margin-inline: auto;
}

.watch-detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.78fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
    padding: 72px 0 48px;
}

.watch-detail-copy {
    display: grid;
    gap: 18px;
}

.watch-detail-copy h1 {
    max-width: 760px;
}

.watch-detail-copy > p {
    max-width: 720px;
    color: var(--ink-soft);
    font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.detail-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.detail-facts div {
    border-left: 2px solid color-mix(in srgb, var(--accent) 72%, var(--brass));
    padding: 8px 0 8px 12px;
    min-width: 0;
    overflow-wrap: anywhere;
}

.detail-facts span,
.spec-list dt {
    display: block;
    color: var(--ink-muted);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.detail-facts strong {
    font-family: var(--font-display);
    font-size: 1.18rem;
    font-weight: 600;
}

.watch-detail-media {
    border: 1px solid rgba(196, 147, 79, 0.18);
    border-radius: var(--radius-md);
    background:
        linear-gradient(145deg, color-mix(in srgb, var(--accent) 22%, transparent), transparent 58%),
        rgba(42, 34, 25, 0.76);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.watch-detail-media img {
    width: 100%;
    display: block;
    aspect-ratio: 1;
    object-fit: cover;
}

.watch-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
    gap: 28px;
    padding: 16px 0 72px;
}

.detail-story,
.detail-panel,
.related-card {
    border: 1px solid rgba(196, 147, 79, 0.16);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(42, 34, 25, 0.9), rgba(29, 24, 19, 0.96));
    box-shadow: var(--shadow-soft);
}

.detail-story,
.detail-panel {
    padding: clamp(22px, 3vw, 34px);
}

.detail-story {
    display: grid;
    gap: 18px;
}

.detail-story [data-detail-about] {
    display: grid;
    gap: 12px;
}

.detail-story p,
.detail-panel p {
    margin: 0;
    color: var(--ink-soft);
}

.detail-story h2,
.detail-panel h2,
.watch-related h2 {
    font-size: clamp(1.6rem, 2.6vw, 2.35rem);
}

.detail-note-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.detail-note {
    padding-top: 16px;
    border-top: 1px solid rgba(196, 147, 79, 0.16);
}

.detail-note h3 {
    margin: 0 0 6px;
    font-size: 0.96rem;
}

.spec-list {
    display: grid;
    gap: 12px;
    margin: 0;
}

.spec-list div {
    padding: 12px;
    border-radius: var(--radius-sm);
    background: rgba(15, 13, 11, 0.4);
}

.spec-list dd {
    margin: 3px 0 0;
    color: var(--ink);
}

.watch-related {
    display: grid;
    gap: 18px;
    padding-bottom: 84px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.related-card {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 12px;
    color: var(--ink);
    text-decoration: none;
}

.related-card img {
    width: 96px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.related-card span {
    display: block;
    color: var(--ink-muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.related-card strong {
    font-family: var(--font-display);
    font-size: 1.12rem;
    font-weight: 600;
}

.site-footer {
    width: min(var(--max), calc(100% - 2 * var(--gutter)));
    margin: 0 auto;
    padding: 42px 0 52px;
    display: grid;
    grid-template-columns: minmax(220px, 1.2fr) auto minmax(250px, 1fr);
    align-items: start;
    gap: 32px;
    border-top: 1px solid rgba(196, 147, 79, 0.14);
    color: var(--ink-soft);
}

.footer-brand,
.footer-contact {
    display: grid;
    gap: 3px;
}

.footer-brand small {
    margin-top: 5px;
    color: var(--ink-muted);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.footer-contact {
    justify-items: end;
    text-align: right;
}

.site-footer a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: var(--ink);
    font-weight: 800;
}

.footer-links a {
    padding: 4px 9px;
    border-radius: var(--radius-sm);
    color: var(--ink-soft);
    text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--ink);
    background: rgba(196, 147, 79, 0.12);
}

.toast {
    position: fixed;
    z-index: 90;
    right: 18px;
    bottom: calc(18px + env(safe-area-inset-bottom));
    max-width: min(360px, calc(100% - 36px));
    border: 1px solid rgba(196, 147, 79, 0.2);
    border-radius: var(--radius-md);
    background: var(--charcoal);
    color: var(--paper-strong);
    padding: 14px 16px;
    box-shadow: var(--shadow-strong);
    transform: translateY(20px);
    opacity: 0;
    transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
    transform: translateY(0);
    opacity: 1;
}

body.motion-ready .reveal {
    opacity: 0;
    transform: translateY(22px);
}

body.motion-ready .reveal.is-visible {
    animation: revealUp 680ms cubic-bezier(0.21, 0.82, 0.29, 1) forwards;
    animation-delay: var(--delay, 0ms);
}

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lumeSweep {
    0%,
    62% {
        transform: translateX(-42%);
        opacity: 0;
    }
    74% {
        opacity: 1;
    }
    100% {
        transform: translateX(44%);
        opacity: 0;
    }
}

@keyframes cardGlint {
    0% {
        transform: translateX(-76%) rotate(2deg);
        opacity: 0;
    }
    34% {
        opacity: 0.78;
    }
    100% {
        transform: translateX(72%) rotate(2deg);
        opacity: 0;
    }
}

@media (min-width: 1800px) {
    :root {
        --max: 1480px;
        --gutter: 32px;
    }
}

@media (max-width: 980px) {
    :root {
        --gutter: 20px;
    }

    .hero {
        min-height: 720px;
    }

    h1 {
        max-width: 12ch;
    }

    .atelier-note {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .atelier-note-copy h2 {
        max-width: none;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .support {
        grid-template-columns: 1fr;
    }

    .service-stack {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-card-featured {
        grid-column: 1 / -1;
    }

    .demo-fallback-grid {
        grid-template-columns: 1fr;
    }

    .demo-fallback-feature {
        min-height: 0;
    }
}

@media (max-width: 900px) {
    :root {
        --gutter: 16px;
    }

    .nav-shell {
        min-height: 66px;
    }

    .brand-copy small {
        display: none;
    }

    .nav-toggle {
        display: grid;
    }

    .primary-links {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 74px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 12px;
        border: 1px solid rgba(196, 147, 79, 0.24);
        border-radius: var(--radius-md);
        background: rgba(29, 24, 19, 0.98);
        box-shadow: var(--shadow-soft);
    }

    .primary-links.is-open {
        display: flex;
    }

    .primary-links a,
    .tray-button,
    .language-switch {
        justify-content: space-between;
        width: 100%;
    }

    .tray-button {
        justify-content: flex-start;
    }

    .language-switch {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tray-button strong {
        margin-left: auto;
    }

    .hero {
        min-height: 680px;
        align-items: end;
    }

    .demo-fallback-advisor-form {
        grid-template-columns: 1fr 1fr;
    }

    .demo-fallback-advisor-form .button {
        grid-column: 1 / -1;
    }

    .hero-media img {
        object-position: 72% center;
    }

    .hero-shade {
        background:
            linear-gradient(0deg, rgba(15, 14, 12, 0.94) 0%, rgba(15, 14, 12, 0.76) 45%, rgba(15, 14, 12, 0.22) 100%),
            linear-gradient(90deg, rgba(15, 14, 12, 0.84), rgba(15, 14, 12, 0.08));
    }

    .hero-content {
        width: calc(100% - 2 * var(--gutter));
        margin: 0 auto 118px;
        justify-self: center;
    }

    h1 {
        max-width: 13ch;
        font-size: 2.52rem;
    }

    .hero-proof {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        left: var(--gutter);
        right: var(--gutter);
        bottom: 14px;
        max-width: none;
    }

    .hero-proof div {
        display: grid;
        gap: 2px;
        justify-items: center;
        padding: 9px 6px;
        text-align: center;
    }

    .hero-proof strong {
        font-size: 1.26rem;
    }

    .hero-proof span {
        font-size: 0.76rem;
    }

    .section-wrap {
        padding: 62px 0;
    }

    .atelier-note {
        padding: 54px 0;
    }

    .collection {
        padding-top: 38px;
    }

    .collection-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .sort-control {
        align-items: start;
        flex-direction: column;
    }

    .product-grid,
    .service-stack {
        grid-template-columns: 1fr;
    }

    .atelier-values {
        grid-template-columns: 1fr;
        border-block: 0;
    }

    .atelier-values article {
        grid-template-columns: 34px minmax(0, 1fr);
        column-gap: 12px;
        padding: 18px 0;
        border-top: 1px solid rgba(196, 147, 79, 0.2);
    }

    .atelier-values article + article {
        border-left: 0;
    }

    .atelier-values article:last-child {
        border-bottom: 1px solid rgba(196, 147, 79, 0.2);
    }

    .atelier-values article > span {
        grid-row: 1 / span 2;
        padding-top: 3px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-group-head {
        align-items: start;
        flex-direction: column;
        gap: 4px;
    }

    .service-card-featured {
        grid-column: auto;
    }

    .lookup-row {
        grid-template-columns: 1fr;
    }

    .order-facts,
    .detail-facts,
    .detail-note-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .watch-detail-hero,
    .watch-detail-grid {
        grid-template-columns: 1fr;
    }

    .watch-detail-hero {
        padding-top: 46px;
    }

    .related-card {
        grid-template-columns: 82px minmax(0, 1fr);
    }

    .related-card img {
        width: 82px;
    }

    .site-footer {
        grid-template-columns: 1fr;
        gap: 18px;
        padding-bottom: 88px;
    }

    .footer-links {
        margin-inline: -9px;
    }

    .footer-contact {
        justify-items: start;
        text-align: left;
    }

    .toast {
        top: calc(78px + env(safe-area-inset-top));
        right: 16px;
        bottom: auto;
        max-width: min(330px, calc(100% - 32px));
        transform: translateY(-14px);
    }

    .prompt-list button {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .brand-symbol {
        width: 42px;
        height: 42px;
    }

    .brand-copy span {
        font-size: 0.96rem;
    }

    h1 {
        font-size: 2.42rem;
    }

    .section-heading h2 {
        font-size: 2.12rem;
    }

    .hero-actions,
    .dialog-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .support-panel,
    .service-card,
    .return-form,
    .tray-card {
        padding: 18px;
    }

    .return-dialog,
    .return-form {
        max-height: calc(100dvh - 18px);
    }

    .order-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .demo-fallback-launcher {
        left: 12px;
        bottom: 12px;
        max-width: calc(100% - 82px);
    }

    .demo-fallback-dialog {
        width: calc(100% - 12px);
        max-height: calc(100dvh - 12px);
    }

    .demo-fallback-shell {
        max-height: calc(100dvh - 12px);
        padding: 18px;
    }

    .demo-fallback-head h2 {
        font-size: 2rem;
    }

    .demo-fallback-notice {
        margin-bottom: 22px;
    }

    .demo-fallback-advisor-form,
    .demo-order-card,
    .demo-order-facts,
    .demo-advisor-grid {
        grid-template-columns: 1fr;
    }

    .demo-fallback-advisor-form .button {
        grid-column: auto;
    }

    .demo-order-media {
        min-height: 240px;
    }

    .demo-fallback-xapp-view iframe {
        min-height: 560px;
        height: calc(100dvh - 220px);
    }
}

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

    body.motion-ready .reveal {
        opacity: 1;
        transform: none;
    }
}
