:root {
    --paper: #faf9fc;
    --surface: #ffffff;
    --ink: #17131f;
    --muted: #635c72;
    --line: #eae5f4;
    --accent: #8a55e8;
    --accent-dark: #93703a;
    --navy: #15101f;
    --shadow: 0 14px 40px rgba(23,19,31, 0.08);
    --radius: 16px;
    --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
    --font-display: "Fraunces", Georgia, "Times New Roman", serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: clip;
}

img { max-width: 100%; display: block; }

.container { width: min(1140px, 92%); margin-inline: auto; }
.narrow { width: min(760px, 88%); margin-inline: auto; }

h1, h2, h3, .brand {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.015em;
    line-height: 1.12;
}

h1 { font-size: clamp(2.3rem, 5vw, 3.9rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.25rem; }

a { color: var(--accent-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.muted { color: var(--muted); }

.display { letter-spacing: -0.02em; }

.chapter-mark {
    display: block;
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: var(--accent-dark);
    margin-bottom: 16px;
}

/* ---------- header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(248, 246, 242, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s;
}
.site-header:has(+ main .hero) { border-color: transparent; }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 62px;
    gap: 16px;
}

.brand {
    font-size: 1.28rem;
    text-transform: uppercase;
    letter-spacing: .38em;
    color: var(--ink);
    display: inline-flex;
    align-items: baseline;
    gap: 7px;
}
.brand:hover { text-decoration: none; }
.brand-dot {
    width: 8px; height: 8px;
    background: var(--accent);
    transform: rotate(45deg);
    display: inline-block;
    border-radius: 2px;
}
.brand-light { color: #fff; }

.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a:not(.btn) {
    color: var(--ink);
    font-weight: 500;
    font-size: .92rem;
    opacity: .85;
    padding-bottom: 3px;
    border-bottom: 1.5px solid transparent;
    transition: opacity .2s, border-color .2s;
}
.site-nav a:not(.btn):hover { text-decoration: none; opacity: 1; }
.site-nav a.active { opacity: 1; border-color: var(--accent); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--ink);
    margin: 5px 0;
    transition: transform .25s, opacity .25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- buttons ---------- */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 999px;
    font-weight: 500;
    font-size: .95rem;
    letter-spacing: .01em;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: all .25s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(23,19,31,.12); }
.btn-accent { background: var(--ink); color: #fff; }
.btn-accent:hover { background: #222b36; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #222b36; }
.btn-outline { border-color: rgba(23,19,31,.35); color: var(--ink); background: transparent; }
.btn-outline:hover { border-color: var(--ink); background: rgba(23,19,31,.04); box-shadow: none; }
.btn-small { padding: 9px 18px; font-size: .85rem; }

.btn-link { display: inline-block; padding: 0; background: none; border: 0; color: inherit; font: inherit; text-decoration: underline; cursor: pointer; }
.btn-link:hover { color: var(--accent); }

.text-link { font-weight: 600; white-space: nowrap; font-size: .93rem; }

/* ---------- hero ---------- */
.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(96px, 15vw, 180px) 0 clamp(100px, 14vw, 170px);
    background:
        radial-gradient(ellipse 60% 45% at 78% 12%, rgba(138,85,232, 0.13), transparent),
        radial-gradient(ellipse 50% 40% at 12% 85%, rgba(23,19,31, 0.05), transparent);
}
.hero-glow {
    position: absolute;
    right: -240px; top: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(closest-side, rgba(138,85,232, 0.12), transparent 70%);
    animation: drift 14s ease-in-out infinite alternate;
    pointer-events: none;
}
@keyframes drift {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(-40px, 30px) scale(1.06); }
}
.hero-inner { position: relative; max-width: 860px; }
.hero-inner.centered { text-align: center; margin-inline: auto; }
.eyebrow {
    text-transform: uppercase;
    letter-spacing: .26em;
    font-size: .74rem;
    font-weight: 600;
    color: var(--accent-dark);
    margin-bottom: 26px;
}
.eyebrow.light { color: rgba(255,255,255,.75); }
.lead { font-size: clamp(1.05rem, 1.7vw, 1.22rem); color: var(--muted); max-width: 620px; margin-top: 26px; }
.centered .lead { margin-inline: auto; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; justify-content: center; }

/* ---------- statement band ---------- */
.statement-band {
    position: relative;
    background:
        radial-gradient(ellipse 55% 80% at 80% 20%, rgba(138,85,232,.16), transparent),
        var(--navy);
    color: #fff;
    padding: clamp(70px, 9vw, 110px) 0 0;
    text-align: center;
    overflow: hidden;
}
.statement-band .container { position: relative; z-index: 1; }
.band-art {
    display: block;
    width: 100%;
    height: clamp(180px, 26vw, 400px);
    object-fit: cover;
    object-position: center;
    margin-top: clamp(40px, 6vw, 70px);
}
.statement-line {
    font-family: var(--font-display);
    font-weight: 400;
    font-style: italic;
    font-size: clamp(1.9rem, 4.4vw, 3.4rem);
    line-height: 1.35;
    color: #efe9fb;
}
.statement-line + .statement-line { margin-top: 6px; }

/* ---------- sections ---------- */
.section { padding: clamp(70px, 10vw, 130px) 0; }
.section-alt { background: var(--surface); border-block: 1px solid var(--line); }
.section-head { max-width: 660px; margin-bottom: 52px; }
.section-head p { color: var(--muted); margin-top: 12px; font-size: 1.04rem; }
.page-head { padding-bottom: 30px; }

/* ---------- collection cards ---------- */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 28px;
}

.collection-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    padding-bottom: 28px;
    transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s;
    color: var(--ink);
    display: block;
}
.collection-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    text-decoration: none;
}
.collection-card .card-art { height: 210px; border-radius: 0; }
.collection-card h3 { padding: 24px 26px 6px; font-size: 1.55rem; }
.collection-card .statement,
.collection-card .themes { padding: 0 26px; }
.statement {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--muted);
}
.themes {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
    margin-top: 10px;
}
.collection-card .text-link {
    display: inline-block;
    margin: 18px 26px 0;
    color: var(--accent-dark);
}

.card-art {
    height: 190px;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
}
.card-art::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 20%, rgba(255,255,255,.18), transparent 55%);
}
.art-letter {
    font-family: var(--font-display);
    font-size: 4.2rem;
    opacity: .4;
    color: currentColor;
}
.art-letter-lg { font-size: 6rem; }

.ph-serenity {
    background:
        radial-gradient(circle at 75% 20%, rgba(255,255,255,.55), transparent 55%),
        linear-gradient(135deg, #eae1cf, #f6f1e6 55%, #d5c8ac);
    color: #8a7a58;
}
.collection-card .card-art-img {
    height: auto;
    aspect-ratio: auto;
    display: block;
    padding: 0;
}
.collection-card .card-art-img img {
    width: 100%;
    height: auto;
    display: block;
}
.card-art-img::after {
    display: none;
}
.ph-shadow {
    background:
        radial-gradient(circle at 25% 15%, rgba(120,130,150,.25), transparent 50%),
        linear-gradient(135deg, #14171c, #23272e 55%, #0c0e11);
    color: #9aa3af;
}
.ph-midnight {
    background:
        radial-gradient(circle at 70% 25%, rgba(110,150,210,.32), transparent 55%),
        linear-gradient(135deg, #0f1a2b, #1d3050 55%, #0a111e);
    color: #a9bedd;
}

.th-serenity      { background: linear-gradient(160deg, #efe7d6, #f7f2e7 50%, #d9cbaa); }
.th-shadow        { background: linear-gradient(160deg, #171a1f, #262b33 55%, #0d0f12); }
.th-midnight      { background: linear-gradient(160deg, #101b2c, #20334f 55%, #0a111e); }
.th-serenity-soft { background: linear-gradient(160deg, #efe7d6, #faf6ec); }
.th-shadow-soft   { background: linear-gradient(160deg, #191c21, #101317); }
.th-midnight-soft { background: linear-gradient(160deg, #14233a, #0c1320); }

/* ---------- listing cards ---------- */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }

.listing-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s;
    display: flex;
    flex-direction: column;
}
.listing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-media { display: block; aspect-ratio: 16 / 9; overflow: hidden; }
.card-media img, .card-media .card-art { width: 100%; height: 100%; object-fit: cover; }
.card-art { aspect-ratio: auto; height: 100%; }
.card-body { padding: 24px 26px 26px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.card-body h3 a { color: var(--ink); }
.chip {
    align-self: flex-start;
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: var(--accent-dark);
    background: rgba(138,85,232, 0.11);
    border: 1px solid rgba(138,85,232, 0.32);
    padding: 5px 13px;
    border-radius: 999px;
}
.chip-lg { font-size: .78rem; margin-bottom: 16px; }
.pill {
    font-size: .7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.pill-live { background: #e9f4ec; color: #256a37; }
.pill-sold { background: #fce4ec; color: #ad1457; }
.pill-bench { background: #fff3e0; color: #e65100; }
.pill-hidden { background: #f0efec; color: #77808a; }
.card-foot {
    margin-top: auto;
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.price { font-weight: 600; color: var(--ink); }
.price-lg { font-family: var(--font-display); font-size: 1.5rem; margin: 14px 0 22px; }

/* ---------- story split / values ---------- */
.split {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 56px;
    align-items: start;
}
.values { display: grid; gap: 16px; }
.value {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: grid;
    gap: 4px;
}
.value strong { font-family: var(--font-display); font-size: 1.08rem; font-weight: 500; }
.value span { color: var(--muted); font-size: .93rem; }

/* ---------- services ---------- */
.service-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.service-list { display: grid; gap: 34px; }
.service-row {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) + 6px);
    padding: clamp(28px, 4.5vw, 52px);
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 44px;
}
.service-row.flip { direction: rtl; }
.service-row.flip > * { direction: ltr; }
.service-info { display: flex; flex-direction: column; gap: 14px; }
.service-info h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.row-foot {
    margin-top: auto;
    padding-top: 18px;
    display: flex;
    align-items: center;
    gap: 18px;
}
.custom-note {
    border-left: 3px solid var(--accent);
    background: var(--surface);
    padding: 22px 26px;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.spec-panel {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 30px;
    align-self: start;
}
.spec-panel h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 16px;
}
.spec-list { list-style: none; display: grid; gap: 11px; }
.spec-list li {
    padding-left: 27px;
    position: relative;
    color: var(--muted);
    font-size: .95rem;
}
.spec-list li::before {
    content: "";
    position: absolute;
    left: 0; top: 7px;
    width: 8px; height: 8px;
    background: var(--accent);
    transform: rotate(45deg);
    border-radius: 2px;
}

/* ---------- model page (the Apple-esque part) ---------- */
.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;
}

.model-hero {
    min-height: min(78vh, 760px);
    display: grid;
    place-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 110px 6% 90px;
    color: #fff;
}
.model-hero-img {
    width: 100%;
    min-height: 0;
    padding: 0;
    aspect-ratio: 21 / 9;
    max-height: 640px;
    background-size: cover;
    background-position: center;
    place-items: end center;
}
.model-hero-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(14,10,22,0) 60%, rgba(14,10,22,0.45));
    pointer-events: none;
}
@media (max-width: 700px) {
    .model-hero-img { aspect-ratio: 16 / 9; }
}

.model-strip {
    background: var(--navy);
    color: #fff;
    padding: 30px 0;
    border-bottom: 1px solid rgba(138, 85, 232, 0.25);
}
.strip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}
.strip-info { display: grid; gap: 10px; }
.strip-info .statement { color: #cbb0f5; font-size: 1.12rem; }
.strip-cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.strip-price { font-family: var(--font-display); font-size: 1.3rem; }

.machine-photo {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

/* ---------- build gallery + lightbox ---------- */

/* ---------- customer job tracker ---------- */
.track-wrap { max-width: 860px; }
.track-form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 28px; }
.track-form label { display: block; margin-bottom: 10px; }
.track-row { display: flex; gap: 12px; flex-wrap: wrap; }
.track-row input { flex: 1 1 220px; max-width: 320px; }
.track-intro { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 26px; }

.status-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(24px, 4vw, 40px);
}
.status-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}
.status-ref { margin-top: 10px; }
.status-updated { text-align: right; display: grid; gap: 2px; }
.status-updated .muted { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; }

.pipeline {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 0;
    margin: 8px 0 30px;
}
.p-stage {
    flex: 1 1 0;
    min-width: 96px;
    display: grid;
    justify-items: center;
    gap: 8px;
    position: relative;
    padding-top: 4px;
}
.p-stage:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 13px; left: calc(50% + 12px);
    width: calc(100% - 24px);
    height: 2px;
    background: var(--line);
}
.p-stage.done:not(:last-child)::after { background: var(--accent); }
.p-dot {
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--surface);
    border: 2px solid var(--line);
    z-index: 1;
}
.p-stage.done .p-dot { background: var(--accent); border-color: var(--accent); }
.p-stage.current .p-dot {
    background: #fff;
    border-color: var(--accent);
    box-shadow: 0 0 0 5px rgba(138, 85, 232, 0.18);
}
.p-label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--muted);
    text-align: center;
}
.p-stage.current .p-label { color: var(--ink); font-weight: 600; }
.p-stage.done .p-label { color: var(--accent-dark); }

.status-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
    margin-top: 26px;
}
.meta-box {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px 18px;
    display: grid;
    gap: 4px;
}
.meta-label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--muted);
}
.vbadge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: .88rem;
    width: fit-content;
}
.badge-pass { background: #e9f4ec; color: #256a37; }
.badge-fail { background: #fbeceb; color: #a03430; }
.badge-pending { background: #fdf3e2; color: #8a6118; }
.badge-neutral { background: #f0efec; color: #77808a; }
.track-foot { margin-top: 22px; font-size: .92rem; }
.cert-download {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}
.cert-note { font-size: .88rem; flex: 1 1 260px; }

@media (max-width: 640px) {
    .pipeline { flex-direction: column; gap: 0; align-items: stretch; }
    .p-stage { grid-template-columns: 20px 1fr; justify-items: start; min-width: 0; padding: 8px 0; }
    .p-stage:not(:last-child)::after {
        top: 30px; left: 11px;
        width: 2px; height: calc(100% - 22px);
    }
    .p-label { text-align: left; }
}
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.g-item {
    margin: 0;
    cursor: zoom-in;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--line);
    aspect-ratio: 4 / 3;
    background: var(--surface);
}
.g-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}
.g-item:hover img { transform: scale(1.06); }
.g-main { grid-column: span 2; grid-row: span 2; }
.gallery-hint { font-size: .88rem; margin-top: 14px; }

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 8, 16, 0.94);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 200;
}
.lightbox.open { display: flex; }
.lightbox img {
    max-width: 86vw;
    max-height: 86vh;
    border-radius: 10px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.65);
}
.lightbox button {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    width: 52px; height: 52px;
    border-radius: 50%;
    cursor: pointer;
    transition: background .2s;
}
.lightbox button:hover { background: rgba(138, 85, 232, 0.55); }
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) {
    .gallery { grid-template-columns: repeat(2, 1fr); }
    .lb-prev { left: 10px; }
    .lb-next { right: 10px; }
}

.hero-emblem {
    width: 92px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(138, 85, 232, 0.45));
}
.model-hero.th-serenity,
.model-hero.th-serenity-soft { color: #4c4433; }
.model-title {
    font-size: clamp(2.8rem, 7vw, 5.2rem);
    letter-spacing: -.02em;
}
.statement-xl {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.35rem, 2.6vw, 1.9rem);
    margin-top: 22px;
    max-width: 720px;
    margin-inline: auto;
    opacity: .92;
}
.scroll-cue {
    position: absolute;
    bottom: 30px; left: 50%;
    width: 1.5px; height: 46px;
    background: currentColor;
    opacity: .4;
    animation: cue 2.2s ease-in-out infinite;
    transform-origin: top;
}
@keyframes cue {
    0%, 100% { transform: scaleY(.4); opacity: .2; }
    50%      { transform: scaleY(1); opacity: .55; }
}

.model-lede { padding-top: clamp(80px, 10vw, 120px); padding-bottom: clamp(20px, 3vw, 40px); }
.lede-xl {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.42;
    letter-spacing: -.01em;
    color: var(--ink);
}

.model-chapter { padding-block: clamp(44px, 6vw, 76px); }
.chapter-dark {
    background: var(--navy);
    padding-block: clamp(72px, 10vw, 116px);
    width: 100vw;
    margin-left: calc(50% - 50vw);
}
.chapter-mark { color: var(--accent-dark); }
.chapter-dark .chapter-mark { color: #cbb0f5; }
.chapter-text {
    font-size: clamp(1.08rem, 1.8vw, 1.3rem);
    line-height: 1.75;
    color: #333d49;
    max-width: 680px;
}
.chapter-dark .chapter-text { color: #c9cfd6; }

.validation-band {
    background: var(--navy);
    color: #fff;
    padding: clamp(48px, 7vw, 76px) 0;
}
.validation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    text-align: center;
}
.validation-grid strong {
    display: block;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.25rem;
    margin-bottom: 6px;
}
.validation-grid span { color: #9aa4ae; font-size: .93rem; }

.spec-quiet .chapter-mark { color: var(--muted); }
.spec-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px 40px;
    max-width: 900px;
    color: var(--muted);
    font-size: .98rem;
}
.spec-grid li { padding: 10px 0; border-bottom: 1px solid var(--line); }

.model-price {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: inherit;
    opacity: .9;
    margin: 10px 0 26px;
}
.cta-note { margin-top: 18px; font-size: .92rem; opacity: .7; }
.model-cta { color: #fff; }
.model-cta.th-serenity-soft { color: #4c4433; }
.model-cta .btn-accent { background: var(--accent); }
.model-cta.th-serenity-soft .cta-note,
.model-cta p { color: inherit; opacity: .75; }

/* ---------- about ---------- */
.about-cols {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 56px;
    align-items: start;
}
.about-story > p { color: #39424e; }
.pull-quote {
    margin-top: 32px;
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.4vw, 1.7rem);
    font-style: italic;
    font-weight: 400;
    color: var(--ink);
    border-left: 3px solid var(--accent);
    padding-left: 24px;
    line-height: 1.45;
}

/* ---------- contact ---------- */
.contact-cols {
    display: grid;
    grid-template-columns: 1.15fr .65fr;
    gap: 44px;
    align-items: start;
}
.contact-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(26px, 4vw, 44px);
}
.field { margin-bottom: 18px; }
.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
label { font-weight: 600; font-size: .9rem; display: block; margin-bottom: 6px; }
.optional { color: var(--muted); font-weight: 400; }
input[type="text"], input[type="email"], input[type="tel"], textarea, select {
    width: 100%;
    padding: 13px 15px;
    border: 1.5px solid var(--line);
    border-radius: 11px;
    background: var(--paper);
    font: inherit;
    color: var(--ink);
    transition: border-color .2s, background .2s;
}
input:focus, textarea:focus { outline: none; border-color: var(--accent); background: #fff; }
textarea { resize: vertical; }
.field-error { color: #b3372f; font-size: .85rem; margin-top: 5px; display: block; }
.form-note { font-size: .88rem; margin-top: 14px; }
.flash {
    padding: 14px 18px;
    border-radius: 11px;
    margin-bottom: 18px;
    font-weight: 500;
    transition: opacity 1s;
}
.flash.fade { opacity: 0; }
.flash-success { background: #e9f4ec; color: #256a37; border: 1px solid #bcdcc6; }
.flash-error { background: #fbeceb; color: #a03430; border: 1px solid #efc4c1; }

.contact-side {
    background: var(--navy);
    color: #e8eaee;
    border-radius: var(--radius);
    padding: clamp(26px, 4vw, 38px);
}
.contact-side h3 { color: #fff; margin-bottom: 8px; }
.contact-dl dt {
    text-transform: uppercase;
    font-size: .72rem;
    letter-spacing: .16em;
    color: #98a2ad;
    margin-top: 20px;
}
.contact-dl dd { margin-top: 5px; }
.contact-dl a { color: #d3bcf7; }
.hours-line { display: block; color: #cdd3da; font-size: .95rem; }
.social-links { margin-top: 22px; display: flex; gap: 16px; }
.social-links a { color: #d3bcf7; }

/* ---------- cta band & footer ---------- */
.cta-band {
    background:
        radial-gradient(circle at 85% -30%, rgba(138,85,232,.25), transparent 55%),
        var(--navy);
    color: #fff;
    padding: clamp(72px, 10vw, 110px) 0;
}
.cta-inner { max-width: 680px; }
.cta-inner.centered { text-align: center; margin-inline: auto; }
.cta-inner p { color: #aab3bd; margin: 14px 0 30px; font-size: 1.04rem; }

.site-footer {
    background: #0e0a16;
    color: #9aa4ae;
    padding: 68px 0 28px;
    font-size: .94rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 36px;
    padding-bottom: 44px;
}
.site-footer h4 {
    color: #fff;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    margin-bottom: 16px;
    font-weight: 600;
}
.site-footer a { display: block; color: #9aa4ae; margin-bottom: 9px; }
.site-footer a:hover { color: #d3bcf7; text-decoration: none; }
.footer-blurb { margin-top: 16px; max-width: 300px; }
.footer-base {
    border-top: 1px solid #1a2129;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: .84rem;
    color: #6b7682;
}
.footer-legal { display: inline-flex; gap: 18px; align-items: center; }
.footer-legal a { color: #8b95a1; }
.footer-legal a:hover { color: #d3bcf7; }
.footer-legal .btn-link { color: #8b95a1; font-size: inherit; }
.footer-legal .btn-link:hover { color: #d3bcf7; }

/* ---------- cookie consent banner ---------- */
.cookie-banner {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    background: #17131f;
    border-top: 1px solid #2a2138;
    box-shadow: 0 -6px 24px rgba(0, 0, 0, .35);
    z-index: 1200;
    padding: 14px 5%;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-inner {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}
.cookie-banner-title {
    margin: 0 0 2px;
    font-weight: 600;
    color: #fff;
    font-size: .95rem;
}
.cookie-banner-text { margin: 0; max-width: 620px; font-size: .88rem; color: #b8c0c8; }
.cookie-banner-text a { color: #d3bcf7; }
.cookie-banner-actions { display: inline-flex; gap: 10px; flex-shrink: 0; }
.cookie-banner-actions .btn-outline {
    border-color: rgba(255,255,255,.4);
    color: #fff;
    background: transparent;
}
.cookie-banner-actions .btn-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,.08);
}
@media (max-width: 720px) {
    .cookie-banner-inner { flex-direction: column; align-items: flex-start; }
}

/* ---------- prose (terms / privacy / policy pages) ---------- */
.prose { max-width: 780px; }
.prose h2 {
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.35rem;
    margin: 34px 0 12px;
    color: var(--ink);
}
.prose p { margin-bottom: 14px; }
.prose ul { margin: 0 0 16px; padding-left: 1.15rem; display: grid; gap: 6px; }
.prose li { line-height: 1.6; }
.prose strong { color: var(--ink); }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--accent-dark); }
.prose p.muted { font-size: .92rem; }

/* ---------- filter bar (collections page) ---------- */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 44px; }
.filter-pill {
    padding: 9px 20px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--ink);
    font-weight: 500;
    font-size: .9rem;
    transition: all .2s;
}
.filter-pill:hover { border-color: var(--accent); text-decoration: none; }
.filter-pill.active { background: var(--ink); border-color: var(--ink); color: #fff; }

/* ---------- reveal animation ---------- */
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
    .hero-glow, .scroll-cue { animation: none; }
}

/* ---------- back link / detail bits kept from earlier pages ---------- */
.backlink {
    display: inline-block;
    margin-bottom: 28px;
    font-weight: 500;
    color: var(--muted);
}
.detail-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 52px;
    align-items: center;
}
.detail-media { border-radius: calc(var(--radius) + 6px); border: 1px solid var(--line); overflow: hidden; }
.detail-media .card-art { height: 380px; }
.small-gap { margin-top: 14px; font-size: .92rem; }
.detail-cols {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 52px;
    align-items: start;
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
    .split, .detail-grid, .detail-cols, .about-cols, .contact-cols { grid-template-columns: 1fr; }
    .service-row { grid-template-columns: 1fr; gap: 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .validation-grid { grid-template-columns: 1fr; gap: 26px; }

    .nav-toggle { display: block; }
    .site-nav {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--surface);
        border-bottom: 1px solid var(--line);
        flex-direction: column;
        align-items: stretch;
        padding: 18px 5%;
        gap: 16px;
        box-shadow: var(--shadow);
    }
    .site-nav.open { display: flex; }
    .site-nav .btn { text-align: center; }
}
@media (max-width: 560px) {
    .field-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (min-width: 1600px) {
    .container { width: min(1300px, 90%); }
    body { font-size: 17px; }
}
