:root {
    --bg: #f4efe7;
    --bg-alt: #e6d8c4;
    --surface: rgba(255, 255, 255, 0.46);
    --surface-strong: rgba(255, 255, 255, 0.72);
    --ink: #232220;
    --ink-soft: rgba(35, 34, 32, 0.76);
    --fume: #252423;
    --sand: #c5af94;
    --gold: #b6864b;
    --gold-soft: rgba(182, 134, 75, 0.18);
    --line: rgba(35, 34, 32, 0.12);
    --line-strong: rgba(35, 34, 32, 0.2);
    --shadow: 0 28px 80px rgba(28, 27, 26, 0.12);
    --shadow-deep: 0 40px 120px rgba(16, 16, 16, 0.2);
    --radius-lg: 36px;
    --radius-md: 26px;
    --radius-sm: 18px;
    --section-padding: clamp(1.25rem, 3vw, 2.4rem);
    --page-width: min(1440px, calc(100vw - (var(--section-padding) * 2)));
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: "Manrope", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 15% 20%, rgba(182, 134, 75, 0.16), transparent 28%),
        radial-gradient(circle at 85% 0%, rgba(37, 36, 35, 0.08), transparent 25%),
        linear-gradient(180deg, #f6f1e8 0%, #efe6da 38%, #f4efe7 100%);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        repeating-linear-gradient(90deg, rgba(35, 34, 32, 0.018) 0, rgba(35, 34, 32, 0.018) 1px, transparent 1px, transparent 32px),
        repeating-linear-gradient(0deg, rgba(35, 34, 32, 0.018) 0, rgba(35, 34, 32, 0.018) 1px, transparent 1px, transparent 32px);
    pointer-events: none;
    mix-blend-mode: multiply;
    opacity: 0.35;
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background:
        linear-gradient(130deg, rgba(255, 255, 255, 0.35), transparent 45%),
        radial-gradient(circle at 30% 80%, rgba(182, 134, 75, 0.14), transparent 28%);
    pointer-events: none;
    z-index: -1;
}

body.is-loading {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
    background: none;
    border: 0;
}

main {
    position: relative;
}

.site-loader {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 30%, rgba(182, 134, 75, 0.24), transparent 30%),
        linear-gradient(135deg, #1e1d1b 0%, #252423 50%, #34312d 100%);
    color: #f7f2ea;
    z-index: 80;
    transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
}

.site-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-mark {
    display: grid;
    gap: 1.25rem;
    text-align: center;
}

.loader-label {
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    font-size: 0.82rem;
}

.loader-weave {
    width: min(420px, 72vw);
    display: grid;
    gap: 0.75rem;
}

.loader-thread {
    height: 1px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), var(--gold), rgba(255, 255, 255, 0.25), transparent);
    animation: threadPulse 1.4s infinite var(--ease);
    transform-origin: left center;
}

.loader-thread:nth-child(2) {
    animation-delay: 0.15s;
}

.loader-thread:nth-child(3) {
    animation-delay: 0.3s;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.16);
    z-index: 60;
}

.scroll-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #9e7540, #d7b98a 55%, #f4ede2);
    box-shadow: 0 0 18px rgba(182, 134, 75, 0.45);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.15rem var(--section-padding);
    z-index: 40;
    transition: padding 0.4s var(--ease);
}

.navbar {
    width: var(--page-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.9rem 1rem 0.9rem 1.25rem;
    background: rgba(244, 239, 231, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    backdrop-filter: blur(22px);
    box-shadow: 0 18px 40px rgba(31, 30, 29, 0.08);
    transition: background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}

.site-header.is-scrolled .navbar {
    background: rgba(244, 239, 231, 0.74);
    border-color: rgba(35, 34, 32, 0.08);
    box-shadow: 0 22px 48px rgba(31, 30, 29, 0.12);
}

.brand {
    display: inline-flex;
    align-items: baseline;
    gap: 0.15rem;
    font-weight: 800;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
    font-size: 0.96rem;
}

.brand span {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-links a {
    position: relative;
    padding: 0.55rem 0.7rem;
    color: var(--ink-soft);
    font-size: 0.92rem;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.3rem;
    height: 1px;
    transform: scaleX(0);
    transform-origin: left center;
    background: var(--gold);
    transition: transform 0.35s var(--ease);
}

.nav-links a:hover,
.nav-links a.is-active {
    color: var(--ink);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
    transform: scaleX(1);
}

.nav-links .nav-cta {
    padding: 0.75rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(35, 34, 32, 0.12);
    background: rgba(255, 255, 255, 0.4);
}

.nav-links .nav-cta::after {
    display: none;
}

.nav-toggle {
    display: none;
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(35, 34, 32, 0.14);
    color: var(--ink);
}

.page-shell {
    scroll-snap-type: y proximity;
}

.panel {
    min-height: 100svh;
    padding: clamp(7rem, 10vw, 9.25rem) var(--section-padding) clamp(3rem, 6vw, 5rem);
    scroll-snap-align: start;
    position: relative;
    display: flex;
    align-items: center;
}

.hero {
    padding-top: clamp(9rem, 13vw, 11rem);
}

.section-inner {
    width: var(--page-width);
    margin: 0 auto;
}

.eyebrow {
    margin: 0 0 1.2rem;
    color: rgba(35, 34, 32, 0.68);
    text-transform: uppercase;
    letter-spacing: 0.34rem;
    font-size: 0.8rem;
}

h1,
h2,
h3,
.stat-card strong,
.floating-note strong,
.contact-note strong {
    font-family: "Cormorant Garamond", serif;
}

h1,
h2,
h3,
p {
    margin: 0;
}

h1 {
    max-width: 10ch;
    font-size: clamp(3.9rem, 8vw, 8rem);
    line-height: 0.88;
    letter-spacing: -0.06em;
}

h2 {
    max-width: 13ch;
    font-size: clamp(2.8rem, 5vw, 5.4rem);
    line-height: 0.92;
    letter-spacing: -0.05em;
}

h3 {
    font-size: clamp(1.55rem, 2vw, 2rem);
    line-height: 1;
    letter-spacing: -0.02em;
}

.section-text,
.hero-text,
.editorial-points p,
.category-card p,
.collection-overlay p,
.advantage-item p,
.process-step p,
.contact-copy p,
.site-footer p,
.stat-card span,
.hero-meta p {
    color: var(--ink-soft);
    line-height: 1.8;
    font-size: clamp(0.98rem, 1vw, 1.05rem);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.35rem;
    padding: 0.8rem 1.4rem;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: #f7f2ea;
    background: linear-gradient(135deg, var(--fume), #3a3732);
    box-shadow: 0 16px 32px rgba(37, 36, 35, 0.18);
}

.button-primary:hover {
    box-shadow: 0 20px 38px rgba(37, 36, 35, 0.24);
}

.button-secondary {
    border-color: rgba(35, 34, 32, 0.14);
    background: rgba(255, 255, 255, 0.38);
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}

.hero-copy {
    display: grid;
    gap: 1.8rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(35, 34, 32, 0.12);
}

.hero-meta div {
    display: grid;
    gap: 0.45rem;
}

.hero-meta span,
.editorial-points span,
.advantage-item > span,
.process-step > span,
.card-index {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.hero-media {
    position: relative;
    min-height: min(78svh, 860px);
    display: grid;
    align-items: center;
}

.hero-frame,
.story-visual,
.contact-form,
.process-track,
.stats-grid,
.advantage-rail,
.category-card,
.collection-card,
.contact-note {
    border: 1px solid rgba(35, 34, 32, 0.08);
    background: rgba(255, 255, 255, 0.34);
    backdrop-filter: blur(12px);
}

.hero-frame {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 1rem;
    box-shadow: var(--shadow-deep);
    overflow: hidden;
}

.hero-frame::before,
.story-visual::before,
.contact-form::before,
.process-track::before,
.stats-grid::before,
.advantage-rail::before {
    content: "";
    position: absolute;
    inset: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: inherit;
    pointer-events: none;
}

.hero-frame img {
    width: 100%;
    height: min(76svh, 780px);
    object-fit: cover;
    border-radius: calc(var(--radius-lg) - 12px);
}

.floating-note {
    position: absolute;
    z-index: 2;
    display: grid;
    gap: 0.35rem;
    max-width: 240px;
    padding: 1rem 1.15rem;
    background: rgba(244, 239, 231, 0.82);
    border: 1px solid rgba(35, 34, 32, 0.08);
    border-radius: var(--radius-sm);
    box-shadow: 0 16px 40px rgba(30, 29, 28, 0.12);
}

.floating-note span,
.vertical-caption,
.story-visual figcaption span,
.contact-note span {
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-size: 0.72rem;
    color: rgba(35, 34, 32, 0.56);
}

.floating-note-top {
    top: 10%;
    left: -10%;
}

.floating-note-bottom {
    right: -8%;
    bottom: 12%;
}

.vertical-caption {
    position: absolute;
    right: -2.4rem;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
}

.story {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}

.story-copy {
    display: grid;
    gap: 1.6rem;
}

.editorial-points {
    display: grid;
    gap: 1rem;
}

.editorial-points article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(35, 34, 32, 0.08);
}

.story-visual {
    position: relative;
    padding: 1rem;
    border-radius: clamp(28px, 4vw, 40px);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.story-visual img {
    width: 100%;
    min-height: 560px;
    object-fit: cover;
    border-radius: calc(var(--radius-lg) - 12px);
    transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
}

.story-visual figcaption {
    position: absolute;
    left: 2rem;
    right: 2rem;
    bottom: 2rem;
    display: grid;
    gap: 0.35rem;
    padding: 1.3rem 1.4rem;
    background: linear-gradient(180deg, rgba(28, 27, 26, 0.2), rgba(28, 27, 26, 0.68));
    color: #f8f3eb;
    border-radius: 18px;
}

.story-visual figcaption strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    line-height: 1;
}

.categories-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(1.5rem, 4vw, 4rem);
    align-items: start;
}

.sticky-intro {
    position: sticky;
    top: 8rem;
    display: grid;
    gap: 1.5rem;
}

.slider-controls {
    display: flex;
    gap: 0.85rem;
}

.slider-button {
    width: 3.25rem;
    height: 3.25rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(35, 34, 32, 0.1);
    background: rgba(255, 255, 255, 0.46);
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.slider-button:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(35, 34, 32, 0.2);
}

.slider-shell {
    position: relative;
    min-width: 0;
    overflow: hidden;
}

.category-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(300px, 34vw);
    gap: 1rem;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-y;
    cursor: grab;
}

.category-slider::-webkit-scrollbar {
    display: none;
}

.category-slider.is-dragging {
    cursor: grabbing;
}

.category-card {
    scroll-snap-align: start;
    min-height: 440px;
    padding: 1.25rem;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow: hidden;
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
    box-shadow: 0 20px 48px rgba(30, 29, 28, 0.08);
}

.category-card::before {
    content: none;
}

.category-card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 24px;
    filter: saturate(0.94) contrast(1.02);
    transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(30, 29, 28, 0.14);
    border-color: rgba(182, 134, 75, 0.28);
}

.category-card:hover .category-card-image {
    transform: scale(1.04);
    filter: saturate(1) contrast(1.06);
}

.collection-layout {
    display: grid;
    gap: 2rem;
}

.section-heading {
    display: grid;
    gap: 1rem;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: minmax(140px, auto);
    gap: 1rem;
}

.collection-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    min-height: 260px;
    box-shadow: var(--shadow);
}

.collection-card img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
    filter: saturate(0.92) contrast(1.04);
}

.collection-overlay {
    position: absolute;
    inset: auto 1rem 1rem 1rem;
    display: grid;
    gap: 0.45rem;
    padding: 1.25rem;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.12), rgba(20, 20, 20, 0.78));
    color: #f8f3eb;
    border-radius: 22px;
    transform: translateY(14px);
    opacity: 0.92;
    transition: transform 0.45s var(--ease), opacity 0.45s var(--ease), background 0.45s var(--ease);
}

.collection-overlay span {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.8rem, 2vw, 2.5rem);
    line-height: 0.95;
}

.collection-card:hover img {
    transform: scale(1.04);
    filter: saturate(1) contrast(1.06);
}

.collection-card:hover .collection-overlay {
    transform: translateY(0);
    opacity: 1;
}

.collection-card-large {
    grid-column: span 6;
    grid-row: span 2;
    min-height: 620px;
}

.collection-card-compact {
    grid-column: span 3;
    grid-row: span 1;
}

.collection-card-tall {
    grid-column: span 3;
    grid-row: span 2;
    min-height: 620px;
}

.collection-card-mid {
    grid-column: span 3;
    grid-row: span 1;
}

.collection-card-wide {
    grid-column: span 6;
    grid-row: span 1;
}

.advantages-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: clamp(1.5rem, 4vw, 4rem);
    align-items: start;
}

.advantage-rail {
    position: relative;
    display: grid;
    gap: 1rem;
    padding: 1.4rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.advantage-rail::after {
    content: "";
    position: absolute;
    left: 2.3rem;
    top: 2.3rem;
    bottom: 2.3rem;
    width: 1px;
    background: linear-gradient(180deg, rgba(182, 134, 75, 0.18), rgba(35, 34, 32, 0.08), rgba(182, 134, 75, 0.24));
}

.advantage-item {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    padding: 1.2rem 1rem 1.2rem 0;
    margin-left: 0.2rem;
}

.advantage-item > span {
    position: relative;
    display: grid;
    place-items: center;
    width: 3.15rem;
    height: 3.15rem;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(230, 216, 196, 0.8));
    border: 1px solid rgba(35, 34, 32, 0.08);
    z-index: 1;
}

.advantage-item div {
    display: grid;
    gap: 0.45rem;
}

.process {
    color: #f7f2ea;
}

.process::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, #1f1e1d 0%, #252423 42%, #37312b 100%);
    z-index: -1;
}

.process .eyebrow,
.process .section-text,
.process-step p {
    color: rgba(247, 242, 234, 0.78);
}

.process-layout {
    display: grid;
    gap: 2rem;
}

.process-heading h2 {
    color: #f8f3eb;
}

.process-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

.process-track::after {
    content: "";
    position: absolute;
    left: 2rem;
    right: 2rem;
    top: 4rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(182, 134, 75, 0.14), rgba(182, 134, 75, 0.82), rgba(182, 134, 75, 0.14));
}

.process-step {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: start;
    gap: 0.8rem;
    padding: 1rem;
}

.process-step > span {
    display: grid;
    place-items: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.26), rgba(182, 134, 75, 0.42));
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.stats-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(1.5rem, 4vw, 4rem);
    align-items: center;
}

.stats-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.stat-card {
    min-height: 220px;
    padding: 1.5rem;
    border-radius: 28px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.76), rgba(235, 225, 211, 0.58));
    display: grid;
    align-content: space-between;
    gap: 1rem;
    border: 1px solid rgba(35, 34, 32, 0.06);
}

.stat-card strong {
    font-size: clamp(3rem, 5vw, 4.8rem);
    line-height: 0.9;
    letter-spacing: -0.06em;
}

.stat-card-textual {
    background: linear-gradient(145deg, rgba(37, 36, 35, 0.92), rgba(79, 65, 49, 0.92));
    color: #f8f3eb;
}

.stat-card-textual span {
    color: rgba(248, 243, 235, 0.72);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(1.5rem, 4vw, 4rem);
    align-items: center;
}

.contact-copy {
    display: grid;
    gap: 1.4rem;
}

.contact-note {
    padding: 1.2rem 1.35rem;
    border-radius: 22px;
    display: grid;
    gap: 0.45rem;
    max-width: 420px;
}

.contact-form {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    padding: 1.4rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.contact-form label {
    display: grid;
    gap: 0.6rem;
}

.contact-form span {
    font-size: 0.88rem;
    color: rgba(35, 34, 32, 0.72);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(35, 34, 32, 0.12);
    border-radius: 20px;
    padding: 1rem 1.05rem;
    background: rgba(255, 255, 255, 0.74);
    color: var(--ink);
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(182, 134, 75, 0.58);
    box-shadow: 0 0 0 4px rgba(182, 134, 75, 0.12);
}

.field-full,
.contact-form .button,
.form-status {
    grid-column: 1 / -1;
}

.form-status {
    min-height: 1.5rem;
    font-size: 0.95rem;
    color: var(--gold);
}

.site-footer {
    padding: 1rem var(--section-padding) 2.4rem;
}

.footer-inner {
    width: var(--page-width);
    margin: 0 auto;
    padding-top: 1.8rem;
    border-top: 1px solid rgba(35, 34, 32, 0.12);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
}

.footer-brand {
    margin-bottom: 0.65rem;
}

.footer-inner > div:first-child {
    max-width: 560px;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.footer-socials a {
    width: 3rem;
    height: 3rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(35, 34, 32, 0.1);
    background: rgba(255, 255, 255, 0.4);
    transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
}

.footer-socials a:hover {
    transform: translateY(-2px);
    border-color: rgba(182, 134, 75, 0.42);
    background: rgba(255, 255, 255, 0.7);
}

.footer-socials svg {
    width: 1.15rem;
    height: 1.15rem;
    fill: currentColor;
}

.reveal {
    opacity: 0;
    transform: translate3d(0, 48px, 0);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.parallax-surface,
[data-parallax] {
    transform: translate3d(0, var(--parallax-offset, 0px), 0);
    will-change: transform;
}

.lazy-image {
    opacity: 0;
    transition: opacity 0.7s var(--ease), transform 0.8s var(--ease), filter 0.8s var(--ease);
}

.lazy-image.is-loaded {
    opacity: 1;
}

@keyframes threadPulse {
    0% {
        transform: scaleX(0.2);
        opacity: 0.3;
    }
    50% {
        transform: scaleX(1);
        opacity: 1;
    }
    100% {
        transform: scaleX(0.35);
        opacity: 0.4;
    }
}

@media (max-width: 1180px) {
    .hero-inner,
    .story-grid,
    .advantages-layout,
    .stats-layout,
    .contact-layout,
    .categories-layout {
        grid-template-columns: 1fr;
    }

    .sticky-intro {
        position: static;
    }

    .hero-media {
        min-height: auto;
    }

    .floating-note-top {
        top: 1rem;
        left: 1rem;
    }

    .floating-note-bottom {
        right: 1rem;
        bottom: 1rem;
    }

    .vertical-caption {
        display: none;
    }

    .process-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-track::after {
        display: none;
    }
}

@media (max-width: 920px) {
    .site-header {
        padding-top: 1rem;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 0.6rem);
        right: 0;
        left: 0;
        margin: 0 auto;
        width: min(100%, 420px);
        padding: 1rem;
        display: grid;
        gap: 0.35rem;
        background: rgba(244, 239, 231, 0.92);
        border-radius: 26px;
        border: 1px solid rgba(35, 34, 32, 0.08);
        box-shadow: 0 22px 50px rgba(29, 28, 27, 0.14);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
    }

    .nav-links.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-links a {
        width: 100%;
        border-radius: 16px;
    }

    .hero-meta {
        grid-template-columns: 1fr;
    }

    .collection-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .collection-card-large,
    .collection-card-compact,
    .collection-card-tall,
    .collection-card-mid,
    .collection-card-wide {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 340px;
    }

    .stats-grid,
    .contact-form,
    .process-track {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .panel {
        min-height: auto;
        padding-top: 6.5rem;
    }

    h1 {
        max-width: 12ch;
        font-size: clamp(3rem, 13vw, 4.2rem);
    }

    h2 {
        max-width: 14ch;
        font-size: clamp(2.2rem, 11vw, 3.3rem);
    }

    .navbar {
        padding-inline: 0.85rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-frame img,
    .story-visual img {
        min-height: 420px;
    }

    .story-visual figcaption strong {
        font-size: 1.5rem;
    }

    .floating-note {
        max-width: 72%;
    }

    .category-slider {
        grid-auto-columns: minmax(270px, 84vw);
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal,
    .reveal.is-visible,
    .parallax-surface,
    [data-parallax] {
        transform: none !important;
        opacity: 1 !important;
    }
}