/* =====================================================
   THE METALLIQUE
   HOMEPAGE
===================================================== */

:root {
    --home-ivory: #F7F4EF;
    --home-white: #FFFFFF;
    --home-charcoal: #171717;
    --home-text: #2B2722;
    --home-muted: #6E665C;
    --home-border: rgba(23, 23, 23, 0.10);
    --home-gold: #B78C4A;
    --site-header-height: 92px;
    --section-gap: 172px;
    --container-width: min(1400px, calc(100% - 80px));
    --hero-width: min(1320px, calc(100% - 80px));
}

html {
    scroll-behavior: smooth;
}

body.page-home {
    background: var(--home-ivory);
    color: var(--home-text);
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}

body.page-home img {
    display: block;
    width: 100%;
}

body.page-home a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: var(--container-width);
    margin-inline: auto;
}

.section {
    padding: var(--section-gap) 0;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 22px;
    color: var(--home-gold);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
}

.section-heading h2 {
    margin: 0;
    color: var(--home-charcoal);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(34px, 4.4vw, 64px);
    font-weight: 400;
    line-height: 1.06;
    letter-spacing: -0.03em;
}

.section-heading p {
    max-width: 640px;
    margin: 18px auto 0;
    color: var(--home-muted);
    font-size: 18px;
    line-height: 1.9;
}

.center {
    text-align: center;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--home-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.text-link:focus-visible {
    outline: 2px solid rgba(183, 140, 74, 0.8);
    outline-offset: 3px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 18px 34px;
    border-radius: 0;
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    transition: background-color 250ms ease, color 250ms ease, border-color 250ms ease, opacity 250ms ease, transform 250ms ease;
    will-change: transform;
}

.btn:focus-visible {
    outline: 2px solid rgba(183, 140, 74, 0.8);
    outline-offset: 3px;
}

.btn-primary {
    background: var(--home-white);
    color: var(--home-charcoal);
}

.btn-primary:hover {
    background: var(--home-gold);
    color: var(--home-white);
}

.featured-product-copy .btn-primary,
.featured-product-copy .btn-primary:visited {
    background: rgba(255, 255, 255, 0.98);
    color: var(--home-charcoal) !important;
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: none;
    text-shadow: none;
    opacity: 1;
}

.featured-product-copy .btn-primary:hover {
    background: var(--home-gold);
    color: var(--home-white) !important;
}

.btn-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.78);
    color: var(--home-white);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--home-white);
}

.btn-accent {
    background: var(--home-gold);
    color: var(--home-white);
}

.btn-accent:hover {
    opacity: 0.88;
}

/* =====================================================
   HEADER
===================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--site-header-height);
    z-index: 9999;
    display: flex;
    align-items: center;
    padding: 0;
    border-bottom: 1px solid rgba(23, 23, 23, 0.08);
    background: rgba(247, 244, 239, 0.58);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(24px) saturate(135%);
    -webkit-backdrop-filter: blur(24px) saturate(135%);
    animation: navFadeIn 500ms ease both;
    transition: background-color 350ms ease, backdrop-filter 350ms ease, border-color 350ms ease, box-shadow 350ms ease;
}

.site-header.is-scrolled {
    background: rgba(247, 244, 239, 0.72);
    border-bottom-color: rgba(23, 23, 23, 0.12);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.34), 0 12px 24px rgba(23, 23, 23, 0.06);
    backdrop-filter: blur(28px) saturate(145%);
    -webkit-backdrop-filter: blur(28px) saturate(145%);
}

.nav-container {
    width: var(--hero-width);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand-mark {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 220px;
    color: #B78C4A;
    transition: opacity 300ms ease;
}

.brand-mark:hover {
    opacity: 0.8;
}

.brand-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 0.22em;
    line-height: 1;
    color: #B78C4A;
    text-shadow: none;
}

.brand-subtitle {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(23, 23, 23, 0.74);
    text-shadow: none;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 52px;
    margin-inline: auto;
}

.desktop-nav a {
    color: rgba(23, 23, 23, 0.88);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-shadow: none;
    transition: color 250ms ease, opacity 250ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
    color: var(--home-gold);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 32px;
    border: 1px solid rgba(23, 23, 23, 0.16);
    background: rgba(255, 255, 255, 0.48);
    color: rgba(23, 23, 23, 0.92);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    box-shadow: none;
    text-shadow: none;
    transition: background-color 300ms ease, color 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.nav-cta:hover {
    background: var(--home-gold);
    color: var(--home-white);
    border-color: var(--home-gold);
    box-shadow: none;
}

.nav-cta:visited {
    color: rgba(23, 23, 23, 0.92);
}

.mobile-toggle {
    display: none;
}

/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    isolation: isolate;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 72% center;
    animation: heroZoom 18s ease-in-out infinite alternate;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.22) 30%, rgba(255, 255, 255, 0.08) 56%, rgba(255, 255, 255, 0.02) 76%, rgba(255, 255, 255, 0) 100%);
}

.hero-scroll {
    display: none;
}

.hero-grid {
    position: relative;
    z-index: 2;
    width: var(--hero-width);
    min-height: 100vh;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding-top: calc(var(--site-header-height) + 28px);
    padding-bottom: 86px;
    padding-left: clamp(0px, 6vw, 120px);
}

.hero-copy {
    max-width: 620px;
}

.hero-kicker {
    display: inline-block;
    margin-bottom: 26px;
    color: #A97A33;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    animation: fadeUp 600ms ease both;
}

.hero-copy h1 {
    margin: 0 0 32px;
    color: #111111;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(40px, 5.9vw, 84px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.03em;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.10), 0 0 10px rgba(255, 255, 255, 0.05);
    animation: fadeUp 600ms ease both;
}

.hero-copy p {
    max-width: 520px;
    margin: 0 0 42px;
    color: #2B2B2B;
    font-size: 18px;
    line-height: 1.9;
    animation: fadeUp 650ms ease both;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    animation: fadeUp 700ms ease both;
}

.hero-actions .btn-primary {
    background: var(--home-gold);
    color: var(--home-white);
    border-color: var(--home-gold);
    box-shadow: 0 12px 24px rgba(23, 23, 23, 0.08);
}

.hero-actions .btn-primary:hover {
    background: #A97A33;
    border-color: #A97A33;
    color: var(--home-white);
}

.hero-actions .btn-outline {
    border-color: rgba(26, 26, 26, 0.72);
    color: #1A1A1A;
    background: rgba(255, 255, 255, 0.10);
}

.hero-actions .btn-outline:hover {
    background: var(--home-gold);
    border-color: var(--home-gold);
    color: var(--home-white);
}

.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(23, 23, 23, 0.72);
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
}

.scroll-indicator i {
    display: block;
    width: 1px;
    height: 56px;
    background: rgba(23, 23, 23, 0.64);
    animation: scrollLine 2.4s ease-in-out infinite;
}

/* =====================================================
   ABOUT
===================================================== */

.section-about {
    background: var(--home-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 84px;
    align-items: center;
}

.about-copy h2 {
    margin: 0;
    color: var(--home-charcoal);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(34px, 4.2vw, 62px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.about-copy p {
    max-width: 600px;
    margin: 24px 0 0;
    color: var(--home-muted);
    font-size: 18px;
    line-height: 1.9;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 42px;
}

.trust-item {
    padding: 18px 0 0;
    border-top: 1px solid var(--home-border);
}

.trust-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 16px;
    border: 1px solid rgba(183, 140, 74, 0.45);
    color: var(--home-gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
}

.trust-item h3 {
    margin: 0;
    color: var(--home-charcoal);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.about-media {
    overflow: hidden;
}

.about-media img {
    height: 620px;
    object-fit: cover;
}

/* =====================================================
   COLLECTIONS
===================================================== */

.section-collections {
    background: var(--home-ivory);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
    margin-top: 54px;
}

.collection-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(23, 23, 23, 0.08);
    overflow: hidden;
    transition: transform 350ms ease, box-shadow 350ms ease, border-color 350ms ease;
}

.collection-card:hover {
    transform: translateY(-8px);
    border-color: rgba(183, 140, 74, 0.22);
    box-shadow: 0 24px 50px rgba(23, 23, 23, 0.08);
}

.collection-card figure,
.collection-card img {
    width: 100%;
}

.collection-card img {
    height: 300px;
    object-fit: cover;
    transition: transform 700ms ease;
}

.collection-card:hover img {
    transform: scale(1.05);
}

.collection-card-body {
    padding: 26px 24px 28px;
    display: grid;
    gap: 14px;
}

.collection-card-body h3 {
    margin: 0;
    color: var(--home-charcoal);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.collection-card-body p {
    margin: 0;
    color: var(--home-muted);
    font-size: 15px;
    line-height: 1.8;
}

.collection-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--home-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.section-link {
    margin-top: 30px;
}

.section-link a {
    color: var(--home-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

/* =====================================================
   CAPABILITIES
===================================================== */

.section-capabilities {
    background: var(--home-ivory);
}

.editorial-intro {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.editorial-intro h2 {
    margin: 0;
    color: var(--home-charcoal);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(34px, 4.4vw, 64px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.editorial-intro p {
    max-width: 640px;
    margin: 18px auto 0;
    color: var(--home-muted);
    font-size: 18px;
    line-height: 1.9;
}

.editorial-capabilities {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
    margin-top: 54px;
    border-top: 1px solid rgba(183, 140, 74, 0.14);
    border-bottom: 1px solid rgba(183, 140, 74, 0.14);
}

.editorial-capability {
    position: relative;
    display: grid;
    justify-items: center;
    align-content: start;
    gap: 0;
    padding: 34px 18px 30px;
    text-align: center;
    transition: transform 350ms ease, color 350ms ease;
}

.editorial-capability:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 18px;
    right: 0;
    width: 1px;
    height: calc(100% - 36px);
    background: rgba(183, 140, 74, 0.16);
}

.editorial-capability:hover {
    transform: translateY(-6px);
}

.editorial-capability-number {
    color: rgba(183, 140, 74, 0.70);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.14em;
    line-height: 1;
    transition: color 350ms ease;
}

.editorial-capability-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 16px 0 18px;
    border: 1px solid rgba(183, 140, 74, 0.34);
    border-radius: 50%;
    color: var(--home-gold);
    transition: border-color 350ms ease, color 350ms ease, transform 350ms ease;
}

.editorial-capability-icon svg {
    width: 30px;
    height: 30px;
}

.editorial-capability h3 {
    margin: 0;
    color: var(--home-charcoal);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.14em;
    line-height: 1.45;
    text-transform: uppercase;
    transition: color 350ms ease;
}

.editorial-capability p {
    max-width: 170px;
    margin: 14px auto 0;
    color: var(--home-muted);
    font-size: 14px;
    line-height: 1.8;
}

.editorial-divider {
    width: 22px;
    height: 1px;
    margin-top: 18px;
    background: rgba(183, 140, 74, 0.32);
    transition: width 350ms ease, background-color 350ms ease;
}

.editorial-capability:hover .editorial-capability-number {
    color: var(--home-gold);
}

.editorial-capability:hover .editorial-capability-icon {
    border-color: var(--home-gold);
    color: #1A1A1A;
}

.editorial-capability:hover h3 {
    color: var(--home-gold);
}

.editorial-capability:hover .editorial-divider {
    width: 38px;
    background: var(--home-gold);
}

.editorial-intro-process {
    max-width: 900px;
}

.section-process {
    background: var(--home-ivory);
}

.process-journey {
    position: relative;
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0;
    margin: 56px 0 0;
    padding: 34px 0 0;
    list-style: none;
}

.process-journey::before {
    content: "";
    position: absolute;
    left: 42px;
    right: 42px;
    top: 88px;
    height: 1px;
    background: linear-gradient(90deg, rgba(183, 140, 74, 0.08) 0%, rgba(183, 140, 74, 0.62) 16%, rgba(183, 140, 74, 0.62) 84%, rgba(183, 140, 74, 0.08) 100%);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 1100ms ease;
}

.section-process.is-visible .process-journey::before {
    transform: scaleX(1);
}

.process-stage {
    position: relative;
    padding: 0 18px;
    text-align: center;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 650ms ease, transform 650ms ease;
}

.section-process.is-visible .process-stage {
    opacity: 1;
    transform: translateY(0);
}

.process-stage:nth-child(1) { transition-delay: 120ms; }
.process-stage:nth-child(2) { transition-delay: 210ms; }
.process-stage:nth-child(3) { transition-delay: 300ms; }
.process-stage:nth-child(4) { transition-delay: 390ms; }
.process-stage:nth-child(5) { transition-delay: 480ms; }
.process-stage:nth-child(6) { transition-delay: 570ms; }
.process-stage:nth-child(7) { transition-delay: 660ms; }

.process-stage:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 84px;
    right: -10px;
    width: 14px;
    height: 14px;
    border: 1px solid rgba(183, 140, 74, 0.48);
    background: var(--home-ivory);
    transform: rotate(45deg) scale(0.74);
    opacity: 0;
    transition: transform 420ms ease, opacity 420ms ease, border-color 350ms ease;
}

.section-process.is-visible .process-stage:not(:last-child)::after {
    opacity: 1;
    transform: rotate(45deg) scale(1);
}

.process-stage-number {
    display: block;
    color: rgba(183, 140, 74, 0.96);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.process-stage-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 12px auto 18px;
    border: 1px solid rgba(183, 140, 74, 0.34);
    border-radius: 50%;
    color: var(--home-gold);
    background: rgba(255, 255, 255, 0.18);
    transition: background-color 350ms ease, color 350ms ease, border-color 350ms ease, transform 350ms ease;
}

.process-stage-icon svg {
    width: 30px;
    height: 30px;
}

.process-stage h3 {
    margin: 0;
    color: var(--home-charcoal);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.16em;
    line-height: 1.45;
    text-transform: uppercase;
    transition: color 350ms ease;
}

.process-stage p {
    max-width: 180px;
    margin: 12px auto 0;
    color: var(--home-muted);
    font-size: 13px;
    line-height: 1.7;
}

.process-stage:hover .process-stage-icon {
    background: var(--home-gold);
    border-color: var(--home-gold);
    color: var(--home-white);
    transform: translateY(-2px);
}

.process-stage:hover h3 {
    color: var(--home-gold);
}

.process-stage:hover:not(:last-child)::after {
    border-color: var(--home-gold);
}

.process-cta {
    margin-top: 52px;
    display: flex;
    justify-content: center;
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
    margin-top: 36px;
}

.capability-card {
    min-height: 220px;
    padding: 28px 22px 26px;
    border: 1px solid rgba(183, 140, 74, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(250, 246, 239, 0.96) 100%);
    position: relative;
    overflow: hidden;
    transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
}

.capability-card:hover {
    transform: translateY(-4px);
    border-color: rgba(183, 140, 74, 0.28);
    box-shadow: 0 20px 40px rgba(23, 23, 23, 0.08);
}

.capability-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 18%, rgba(183, 140, 74, 0.08), transparent 32%),
        linear-gradient(135deg, rgba(183, 140, 74, 0.04) 0 1px, transparent 1px 100%);
    background-size: auto, 14px 14px;
    opacity: 0.75;
}

.capability-card > * {
    position: relative;
    z-index: 1;
}

.capability-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    border: 1px solid rgba(183, 140, 74, 0.28);
    background: linear-gradient(180deg, rgba(183, 140, 74, 0.06) 0%, rgba(183, 140, 74, 0.015) 100%);
    color: var(--home-gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.capability-icon svg {
    width: 24px;
    height: 24px;
}

.capability-card h3 {
    margin: 0;
    color: var(--home-charcoal);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.4;
    text-transform: uppercase;
}

.capability-card p {
    margin: 14px 0 0;
    color: var(--home-muted);
    font-size: 14px;
    line-height: 1.8;
}

/* =====================================================
   FEATURED PRODUCT
===================================================== */

.section-featured-product {
    background: #171717;
    color: var(--home-white);
}

.featured-product-grid {
    display: grid;
    grid-template-columns: 0.94fr 1.06fr;
    gap: 84px;
    align-items: center;
}

.featured-product-copy h2 {
    margin: 0;
    color: var(--home-white);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(34px, 4.4vw, 60px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.featured-product-copy p {
    max-width: 500px;
    margin: 20px 0 34px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
    line-height: 1.9;
}

.featured-product-media img {
    height: 520px;
    object-fit: cover;
}

/* =====================================================
   PROCESS
===================================================== */

.section-process {
    background: var(--home-ivory);
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 30px;
    flex-wrap: wrap;
    color: var(--home-gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.process-flow span {
    white-space: nowrap;
}

.process-flow i {
    display: block;
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, rgba(183, 140, 74, 0.15), rgba(183, 140, 74, 0.7));
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 14px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    position: relative;
}

.process-timeline::before {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    top: 28px;
    height: 2px;
    background: linear-gradient(90deg, rgba(183, 140, 74, 0) 0%, rgba(183, 140, 74, 0.58) 10%, rgba(183, 140, 74, 0.58) 90%, rgba(183, 140, 74, 0) 100%);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14);
    pointer-events: none;
}

.process-step {
    position: relative;
    padding: 58px 18px 24px;
    text-align: center;
    border: 1px solid rgba(183, 140, 74, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(247, 244, 239, 0.95) 100%);
    box-shadow: 0 12px 26px rgba(23, 23, 23, 0.04);
}

.process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 28px;
    right: -7px;
    width: 14px;
    height: 1px;
    background: rgba(183, 140, 74, 0.30);
}

.process-step::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 21px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(183, 140, 74, 0.85);
    background: var(--home-ivory);
    transform: translateX(-50%);
    box-shadow: 0 0 0 6px rgba(183, 140, 74, 0.06);
}

.process-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 14px;
    border: 1px solid rgba(183, 140, 74, 0.28);
    border-radius: 50%;
    color: var(--home-gold);
    background: linear-gradient(180deg, rgba(183, 140, 74, 0.06) 0%, rgba(183, 140, 74, 0.02) 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32), 0 8px 18px rgba(23, 23, 23, 0.04);
}

.process-icon svg {
    width: 24px;
    height: 24px;
}

.process-number {
    display: block;
    margin-bottom: 8px;
    color: rgba(183, 140, 74, 0.92);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.process-step span {
    display: block;
}

.process-step h3 {
    margin: 0;
    color: var(--home-charcoal);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.process-step p {
    margin: 8px 0 0;
    color: var(--home-muted);
    font-size: 13px;
    line-height: 1.7;
}

/* =====================================================
   MATERIALS
===================================================== */

.section-materials {
    background: var(--home-white);
}

.materials-strip-grid {
    display: grid;
    grid-template-columns: repeat(9, minmax(0, 1fr));
    gap: 10px;
    margin-top: 52px;
}

.materials-tile {
    display: grid;
    gap: 10px;
    background: transparent;
    border: 1px solid rgba(183, 140, 74, 0.16);
    padding: 0;
    overflow: hidden;
    transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
}

.materials-tile:hover {
    transform: translateY(-3px);
    border-color: rgba(183, 140, 74, 0.24);
    box-shadow: 0 18px 34px rgba(23, 23, 23, 0.08);
}

.materials-tile img {
    width: 100%;
    height: 96px;
    object-fit: cover;
    display: block;
}

.materials-label {
    display: block;
    min-height: 52px;
    padding: 14px 10px 15px;
    color: var(--home-charcoal);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.4;
    text-align: center;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.84);
}

.materials-brass .materials-visual {
    background:
        linear-gradient(145deg, rgba(255, 239, 191, 0.26), rgba(86, 53, 12, 0.22)),
        linear-gradient(90deg, #6d4e1c 0%, #9f7436 48%, #d9b066 100%);
}

.materials-iron .materials-visual {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 38%),
        linear-gradient(90deg, #161312 0%, #2a2420 50%, #0e0d0c 100%);
}

.materials-stainless .materials-visual {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.24), transparent 40%),
        linear-gradient(90deg, #5c5f61 0%, #9aa0a4 48%, #6f7275 100%);
}

.materials-aluminum .materials-visual {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent 36%),
        linear-gradient(90deg, #777775 0%, #b0afab 48%, #8b8a86 100%);
}

.materials-antique-brass .materials-visual {
    background:
        radial-gradient(circle at 26% 30%, rgba(255, 255, 255, 0.16), transparent 18%),
        linear-gradient(90deg, #5b3f1a 0%, #87602a 48%, #ad8350 100%);
}

.materials-matte-black .materials-visual {
    background:
        radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.07), transparent 15%),
        linear-gradient(90deg, #060606 0%, #151515 48%, #0b0b0b 100%);
}

.materials-brushed-gold .materials-visual {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.20), transparent 34%),
        linear-gradient(90deg, #956c23 0%, #c9a15b 48%, #e6c47d 100%);
}

.materials-hammered .materials-visual {
    background:
        radial-gradient(circle at 22% 32%, rgba(255, 255, 255, 0.16), transparent 18%),
        radial-gradient(circle at 68% 30%, rgba(255, 255, 255, 0.12), transparent 18%),
        linear-gradient(90deg, #4a3e30 0%, #7a5f3a 52%, #5c4831 100%);
}

.materials-powder-coat .materials-visual {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.10), transparent 36%),
        linear-gradient(90deg, #141416 0%, #2f2f33 48%, #111113 100%);
}

.materials-note {
    margin: 14px 0 0;
    color: var(--home-muted);
    font-size: 13px;
    line-height: 1.7;
    text-align: center;
    letter-spacing: 0.08em;
}

.footer-cta-button {
    min-width: 220px;
}

/* =====================================================
   CUSTOM MANUFACTURING
===================================================== */

.section-custom {
    background: var(--home-ivory);
}

.custom-grid {
    display: grid;
    grid-template-columns: 1fr 0.95fr 1fr;
    gap: 30px;
    align-items: start;
}

.custom-copy h2 {
    margin: 0;
    color: var(--home-charcoal);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.custom-copy p {
    max-width: 520px;
    margin: 20px 0 0;
    color: var(--home-muted);
    font-size: 16px;
    line-height: 1.9;
}

.bullet-list {
    margin: 24px 0 28px;
    padding: 0;
    list-style: none;
}

.bullet-list li {
    position: relative;
    padding: 11px 0 11px 24px;
    border-bottom: 1px solid rgba(23, 23, 23, 0.08);
    color: var(--home-text);
    font-size: 14px;
    line-height: 1.6;
}

.bullet-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    width: 8px;
    height: 8px;
    border: 1px solid var(--home-gold);
}

.custom-media img {
    width: 100%;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(23, 23, 23, 0.08);
}

.custom-media-center img {
    height: 440px;
}

.custom-copy-right h2 {
    margin-top: 8px;
}

.custom-media-bottom {
    margin-top: 26px;
}

.custom-media-bottom img {
    height: 320px;
}

/* =====================================================
   FOOTER CTA
===================================================== */

.section-footer-cta {
    position: relative;
    padding: 0;
    overflow: hidden;
    background: #111;
}

.footer-cta-media {
    position: absolute;
    inset: 0;
}

.footer-cta-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.52;
}

.footer-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.90) 0%, rgba(10, 10, 10, 0.86) 40%, rgba(10, 10, 10, 0.58) 100%);
}

.footer-cta-grid {
    position: relative;
    z-index: 1;
    padding: 150px 0;
}

.footer-cta-copy {
    max-width: 640px;
    color: var(--home-white);
    position: relative;
    z-index: 2;
}

.footer-cta-copy h2 {
    margin: 0;
    color: var(--home-white);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(34px, 4.4vw, 62px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.footer-cta-copy p {
    max-width: 560px;
    margin: 18px 0 32px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
    line-height: 1.9;
}

.footer-cta-media,
.footer-cta-overlay {
    pointer-events: none;
}

/* =====================================================
   FOOTER
===================================================== */

.site-footer {
    background: #121212;
    color: rgba(255, 255, 255, 0.72);
    padding: 80px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, minmax(0, 1fr));
    gap: 34px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand h3,
.site-footer h4 {
    margin: 0 0 14px;
    color: var(--home-white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.footer-brand p,
.site-footer li {
    font-size: 14px;
    line-height: 1.8;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer li a {
    color: rgba(255, 255, 255, 0.72);
    transition: color 250ms ease;
}

.site-footer li a:hover {
    color: var(--home-gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 18px;
    padding-top: 18px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-bottom-links {
    display: flex;
    gap: 18px;
}

.footer-bottom-links a:hover {
    color: var(--home-gold);
}

/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes navFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.03);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollLine {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(18px);
        opacity: 0;
    }
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1280px) {
    .editorial-capabilities {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .editorial-capability:nth-child(3n)::after {
        display: none;
    }

    .process-journey {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        row-gap: 44px;
    }

    .process-journey::before,
    .process-stage::after {
        display: none;
    }

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

    .materials-strip-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .process-timeline {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .process-step:not(:last-child)::after {
        display: none;
    }

    .process-timeline::before {
        display: none;
    }

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

    .custom-copy-right {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 26px;
        align-items: start;
    }

    .custom-copy-right .custom-media-bottom {
        grid-column: 2;
        margin-top: 0;
    }
}

@media (max-width: 1100px) {
    .desktop-nav,
    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border: 1px solid rgba(23, 23, 23, 0.18);
        color: var(--home-charcoal);
        font-size: 20px;
    }

    .about-grid,
    .featured-product-grid {
        grid-template-columns: 1fr;
    }

    .featured-product-media img {
        height: 460px;
    }
}

@media (max-width: 900px) {
    .hero {
        justify-content: center;
    }

    .container,
    .nav-container,
    .hero-grid {
        width: calc(100% - 40px);
    }

    .hero-grid {
        margin-inline: auto;
        padding-left: 0;
        padding-top: calc(var(--site-header-height) + 20px);
    }

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

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

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

    .editorial-capability:nth-child(2n)::after {
        display: none;
    }

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

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

    .process-flow {
        gap: 10px 12px;
    }

    .process-flow i {
        width: 20px;
    }

    .custom-grid,
    .custom-copy-right {
        grid-template-columns: 1fr;
    }

    .custom-copy-right .custom-media-bottom {
        grid-column: auto;
    }

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

@media (max-width: 640px) {
    :root {
        --section-gap: 140px;
    }

    .brand-mark {
        min-width: 0;
    }

    .brand-name {
        font-size: 28px;
        letter-spacing: 0.18em;
    }

    .brand-subtitle {
        letter-spacing: 0.18em;
    }

    .hero-grid {
        padding-top: calc(var(--site-header-height) + 16px);
        padding-bottom: 72px;
    }

    .hero-copy {
        max-width: 100%;
    }

    .hero-copy h1 {
        font-size: clamp(34px, 10vw, 46px);
    }

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

    .hero-actions .btn {
        width: 100%;
        max-width: 320px;
    }

    .editorial-capabilities,
    .process-journey {
        grid-template-columns: 1fr;
    }

    .editorial-capability::after,
    .process-stage::after,
    .process-journey::before {
        display: none;
    }

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

    .materials-visual {
        min-height: 92px;
    }

    .about-media img,
    .featured-product-media img,
    .custom-media-center img,
    .custom-media-bottom img {
        height: 360px;
    }

    .trust-grid,
    .collection-grid,
    .capability-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .process-flow {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
    }
}
