/**
 * Homepage redesign — Craftwood-inspired marquee, what-we-do, featured
 */

.home-redesign #section-home {
    overflow-x: hidden;
}

/* ---- Hero ---- */
.home-hero {
    position: relative;
    min-height: min(92vh, 900px);
    display: flex;
    align-items: center;
    padding: clamp(100px, 12vh, 140px) 0 clamp(48px, 8vh, 80px);
    background: var(--ink);
    color: var(--white);
}

.home-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 85% 40%, rgba(196, 149, 106, 0.18), transparent 55%),
        radial-gradient(ellipse 50% 40% at 10% 80%, rgba(139, 90, 43, 0.12), transparent 50%),
        linear-gradient(165deg, #0f0e0d 0%, #1a1612 45%, #0f0e0d 100%);
    pointer-events: none;
}

.home-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
}

/* Hero copy block */
.home-hero__copy {
    position: relative;
}

.home-hero__copy-inner {
    position: relative;
    padding-left: clamp(20px, 3vw, 32px);
    max-width: 580px;
}

.home-hero__copy-inner::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    border-radius: 3px;
    background: linear-gradient(180deg, var(--wood) 0%, var(--clay) 55%, transparent 100%);
}

.home-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 28px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--wood);
}

.home-hero__eyebrow-dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clay);
    box-shadow: 0 0 0 0 rgba(199, 91, 57, 0.5);
    animation: home-hero-pulse 2.4s ease-out infinite;
}

@keyframes home-hero-pulse {
    0% { box-shadow: 0 0 0 0 rgba(199, 91, 57, 0.45); }
    70% { box-shadow: 0 0 0 10px rgba(199, 91, 57, 0); }
    100% { box-shadow: 0 0 0 0 rgba(199, 91, 57, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero__eyebrow-dot {
        animation: none;
    }
}

.home-hero__title {
    margin: 0 0 20px;
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.home-hero__title-line {
    display: block;
    font-size: clamp(2.75rem, 5.8vw, 4.5rem);
    color: var(--white);
}

.home-hero__title-line--accent {
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(105deg, var(--wood) 0%, #e8c9a0 40%, var(--clay) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-top: 2px;
}

.home-hero__tagline {
    margin: 0 0 24px;
    font-size: clamp(1rem, 1.8vw, 1.12rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    max-width: 480px;
}

.home-hero__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
}

.home-hero__pills li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    backdrop-filter: blur(6px);
}

.home-hero__pills li i {
    font-size: 0.7rem;
    color: var(--wood);
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 24px;
    margin-bottom: 36px;
}

.home-hero__btn-main {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    font-size: 0.95rem;
}

.home-hero__btn-main i {
    transition: transform 0.25s ease;
}

.home-hero__btn-main:hover i {
    transform: translateX(4px);
}

.home-hero__btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    transition: color 0.2s ease, border-color 0.2s ease, gap 0.2s ease;
}

.home-hero__btn-ghost:hover {
    color: var(--wood);
    border-color: var(--wood);
    gap: 12px;
}

.home-hero__btn-ghost i {
    font-size: 0.75rem;
}

.home-hero__proof {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 24px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.home-hero__rating {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.home-hero__stars {
    display: flex;
    gap: 3px;
    color: var(--wood);
    font-size: 0.85rem;
}

.home-hero__rating-text {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
}

.home-hero__rating-text strong {
    color: var(--white);
    font-weight: 600;
}

.home-hero__proof-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.home-hero__proof-stat {
    margin: 0;
    line-height: 1.2;
}

.home-hero__proof-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--white);
}

.home-hero__proof-stat span {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

.home-hero__visual {
    position: relative;
}

.home-hero__visual img {
    width: 100%;
    max-height: 560px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
}

.home-hero__card {
    position: absolute;
    bottom: 24px;
    left: -20px;
    padding: 20px 24px;
    background: var(--clay);
    color: var(--ink);
    border-radius: 4px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.home-hero__card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1;
}

.home-hero__card span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ---- Marquee (RTL, slow) ---- */
.home-marquee {
    position: relative;
    padding: 28px 0 36px;
    background: #f7f4f0;
    overflow: hidden;
}

.home-marquee__viewport {
    overflow: hidden;
    width: 100%;
}

.home-marquee__track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: home-marquee-rtl 75s linear infinite;
}

.home-marquee__track[data-marquee-speed="slow"] {
    animation-duration: 90s;
}

.home-marquee__track:hover {
    animation-play-state: paused;
}

@keyframes home-marquee-rtl {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.home-marquee__group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 0;
}

.home-marquee__item {
    display: block;
    flex-shrink: 0;
    padding: 0 20px;
    transition: transform 0.35s ease;
}

.home-marquee__item:hover {
    transform: scale(1.03);
}

.home-marquee__item img {
    display: block;
    height: clamp(140px, 18vw, 220px);
    width: auto;
    max-width: none;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.08));
}

.home-marquee__fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(60px, 10vw, 120px);
    z-index: 2;
    pointer-events: none;
}

.home-marquee__fade--left {
    left: 0;
    background: linear-gradient(90deg, #f7f4f0 0%, transparent 100%);
}

.home-marquee__fade--right {
    right: 0;
    background: linear-gradient(270deg, #f7f4f0 0%, transparent 100%);
}

@media (prefers-reduced-motion: reduce) {
    .home-marquee__track {
        animation: none;
    }
}

/* ---- Stats ---- */
.home-stats {
    padding: 48px 0;
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.home-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.home-stats__num {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--ink);
    line-height: 1.1;
}

.home-stats__label {
    display: block;
    margin-top: 6px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
}

/* ---- What we do — Craftwood checkerboard mosaic ---- */
.home-wwd {
    --wwd-alt-bg: #383033;
    --wwd-cell-bg: #3e3939;
    --wwd-frame-bg: #f5f1e6;
    --wwd-alt-title: #fcfaf9;
    --wwd-alt-text: rgba(252, 250, 249, 0.88);
    --wwd-page-max: 1290px;
    --wwd-font-body: 'DM Sans', var(--font-body, 'Outfit', sans-serif);
    --wwd-font-heading: 'Hanken Grotesk', var(--font-body, 'Outfit', sans-serif);

    position: relative;
    background-color: var(--wwd-alt-bg);
    overflow: hidden;
}

.home-wwd__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(80px, 12vh, 150px) clamp(20px, 4vw, 30px) clamp(48px, 8vh, 80px);
    text-align: center;
}

.home-wwd__header-inner {
    width: 100%;
    max-width: var(--wwd-page-max);
}

.home-wwd__advanced-title {
    margin: 0;
    font-family: var(--wwd-font-heading);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.03em;
}

.home-wwd__advanced-title-text {
    display: inline-block;
    font-size: clamp(3.25rem, 11vw, 7.5rem);
    font-weight: 600;
    line-height: 0.95;
    text-transform: lowercase;
    letter-spacing: -0.03em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(252, 250, 249, 0.14);
    text-stroke: 1px rgba(252, 250, 249, 0.14);
    paint-order: stroke fill;
}

/* 2 rows × 4 cols: row1 text|img|text|img — row2 img|text|img|text */
.home-wwd__mosaic {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(300px, auto));
    gap: 0;
    width: 100%;
    max-width: var(--wwd-page-max);
    margin: 0 auto;
    padding: 0 0 clamp(80px, 12vh, 150px);
}

.home-wwd-cell {
    min-height: 280px;
    margin: 0;
}

.home-wwd-cell--text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--wwd-cell-bg);
    padding: clamp(28px, 4vw, 52px) clamp(24px, 3.5vw, 44px);
}

.home-wwd-cell__title {
    margin: 0 0 1.15em;
    font-family: var(--wwd-font-heading);
    font-size: clamp(1.15rem, 1.8vw, 1.65rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--wwd-alt-title);
}

.home-wwd-cell__text {
    margin: 0;
    font-family: var(--wwd-font-body);
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    font-weight: 400;
    line-height: 1.625;
    color: var(--wwd-alt-text);
}

.home-wwd-cell--photo {
    display: flex;
    align-items: stretch;
    background-color: var(--wwd-alt-bg);
    padding: clamp(16px, 2.5vw, 28px);
}

.home-wwd-cell__frame {
    display: flex;
    flex: 1;
    width: 100%;
    background: var(--wwd-frame-bg);
    padding: clamp(10px, 1.5vw, 18px);
    text-decoration: none;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.home-wwd-cell__frame:hover {
    transform: scale(1.01);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.home-wwd-cell__frame img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
}

@media (max-width: 1279px) {
    .home-wwd__header {
        padding-top: 95px;
        padding-bottom: 56px;
    }

    .home-wwd__mosaic {
        padding-bottom: 95px;
    }

    .home-wwd__advanced-title-text {
        font-size: clamp(2.75rem, 14vw, 5rem);
    }
}

@media (max-width: 1023px) {
    .home-wwd__mosaic {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .home-wwd-cell {
        min-height: 240px;
    }
}

@media (max-width: 599px) {
    .home-wwd__mosaic {
        grid-template-columns: 1fr;
    }

    .home-wwd-cell--text {
        min-height: auto;
        padding: 32px 24px;
    }

    .home-wwd-cell--photo {
        min-height: 260px;
    }
}

/* Fade-up on scroll */
.home-wwd-block--animate,
.home-featured__card.home-wwd-block--animate,
.home-services__card.home-wwd-block--animate,
.home-reviews__card.home-wwd-block--animate {
    opacity: 0;
    transform: translateY(36px);
    transition:
        opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: var(--wwd-delay, 0ms);
}

.home-wwd-block--animate.is-visible,
.home-featured__card.is-visible,
.home-services__card.is-visible,
.home-reviews__card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Trust strip ---- */
.home-trust {
    padding: 32px 0;
    background: var(--ink);
    color: var(--white);
}

.home-trust__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.home-trust__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.85);
}

.home-trust__item i {
    font-size: 1.35rem;
    color: var(--wood);
}

/* ---- Section head ---- */
.home-section-head {
    text-align: center;
    margin-bottom: 48px;
}

.home-section-head__eyebrow {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--clay);
    margin-bottom: 10px;
}

.home-section-head__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 500;
    margin: 0;
    color: var(--ink);
}

.home-section-head__title em {
    font-style: italic;
    color: var(--clay);
}

.home-section-head--light .home-section-head__title {
    color: var(--white);
}

.home-section-head--light .home-section-head__eyebrow {
    color: var(--wood);
}

/* ---- Featured ---- */
.home-featured {
    padding: var(--section-pad) 0;
    background: #faf8f5;
}

.home-featured__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.home-featured__card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
}

.home-featured__card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.home-featured__img {
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
}

.home-featured__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.home-featured__img:hover img {
    transform: scale(1.05);
}

.home-featured__body {
    padding: 20px;
}

.home-featured__body h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin: 0 0 8px;
}

.home-featured__price {
    font-weight: 600;
    color: var(--clay);
    margin: 0 0 16px;
}

.home-featured__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.home-featured__cta {
    text-align: center;
    margin-top: 40px;
}

/* ---- Services ---- */
.home-services {
    padding: var(--section-pad) 0;
    background: var(--ink);
    color: var(--white);
}

.home-services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.home-services__card {
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}

.home-services__card i {
    font-size: 1.5rem;
    color: var(--wood);
    margin-bottom: 16px;
}

.home-services__card h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin: 0 0 12px;
    font-weight: 500;
}

.home-services__card p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
}

/* ---- Reviews ---- */
.home-reviews {
    padding: var(--section-pad) 0;
    background: var(--white);
}

.home-reviews__track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.home-reviews__card {
    padding: 28px;
    background: #faf8f5;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.home-reviews__stars {
    color: var(--clay);
    margin-bottom: 14px;
    font-size: 0.85rem;
}

.home-reviews__text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--muted);
    margin: 0 0 20px;
    font-style: italic;
}

.home-reviews__author {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.9rem;
}

.home-reviews__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--clay);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
}

.home-reviews__cta {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* ---- Final CTA ---- */
.home-final-cta {
    padding: clamp(64px, 10vh, 100px) 0;
    background: linear-gradient(135deg, #1a1612 0%, #0f0e0d 100%);
    color: var(--white);
}

.home-final-cta__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.home-final-cta__copy h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin: 0 0 12px;
    font-weight: 500;
}

.home-final-cta__copy p {
    margin: 0;
    max-width: 480px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
}

.home-final-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
    .home-featured__grid,
    .home-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-reviews__track {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .home-hero__grid {
        grid-template-columns: 1fr;
    }

    .home-hero__copy-inner {
        margin: 0 auto;
        text-align: center;
        padding-left: 0;
        max-width: 560px;
    }

    .home-hero__copy-inner::before {
        display: none;
    }

    .home-hero__eyebrow {
        justify-content: center;
    }

    .home-hero__tagline {
        margin-left: auto;
        margin-right: auto;
    }

    .home-hero__pills {
        justify-content: center;
    }

    .home-hero__actions {
        justify-content: center;
    }

    .home-hero__proof {
        justify-content: center;
    }

    .home-hero__proof-divider {
        display: none;
    }

    .home-hero__visual {
        max-width: 480px;
        margin: 0 auto;
    }

    .home-hero__card {
        left: 16px;
    }

    .home-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-trust__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .home-featured__grid,
    .home-services__grid,
    .home-reviews__track {
        grid-template-columns: 1fr;
    }

    .home-stats__grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .home-final-cta__actions {
        width: 100%;
    }

    .home-final-cta__actions .btn-primary,
    .home-final-cta__actions .btn-secondary,
    .home-final-cta__actions .btn-wa {
        flex: 1;
        min-width: 140px;
        justify-content: center;
    }
}

/* =====================================================
   ABOUT PAGE (home tab — redesign)
   ===================================================== */
.home-redesign #section-about {
    overflow-x: hidden;
}

.about-section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.about-section-head__eyebrow {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--clay);
    margin-bottom: 10px;
}

.about-section-head__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 500;
    margin: 0 0 12px;
    color: var(--ink);
}

.about-section-head__title em {
    font-style: italic;
    color: var(--clay);
}

.about-section-head__sub {
    margin: 0;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--muted);
}

.about-section-head--light .about-section-head__title {
    color: var(--white);
}

.about-section-head--light .about-section-head__eyebrow {
    color: var(--wood);
}

.about-section-head--light .about-section-head__sub {
    color: rgba(255, 255, 255, 0.72);
}

/* Hero */
.about-hero {
    position: relative;
    min-height: min(88vh, 820px);
    display: flex;
    align-items: center;
    padding: clamp(100px, 12vh, 140px) 0 clamp(56px, 8vh, 80px);
    background: var(--ink);
    color: var(--white);
    overflow: hidden;
}

.about-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 65% 55% at 78% 35%, rgba(196, 149, 106, 0.16), transparent 55%),
        radial-gradient(ellipse 45% 40% at 8% 75%, rgba(199, 91, 57, 0.1), transparent 50%),
        linear-gradient(160deg, #0f0e0d 0%, #1a1612 50%, #0f0e0d 100%);
    pointer-events: none;
}

.about-hero__bg-title {
    position: absolute;
    top: 18%;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(5rem, 18vw, 14rem);
    font-weight: 600;
    line-height: 0.85;
    text-transform: lowercase;
    letter-spacing: -0.04em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(252, 250, 249, 0.05);
    text-stroke: 1px rgba(252, 250, 249, 0.05);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.about-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

.about-hero__copy-inner {
    position: relative;
    padding-left: clamp(20px, 3vw, 32px);
    max-width: 560px;
}

.about-hero__copy-inner::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    border-radius: 3px;
    background: linear-gradient(180deg, var(--wood) 0%, var(--clay) 55%, transparent 100%);
}

.about-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 24px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--wood);
}

.about-hero__eyebrow-dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clay);
    box-shadow: 0 0 0 0 rgba(199, 91, 57, 0.5);
    animation: home-hero-pulse 2.4s ease-out infinite;
}

.about-hero__title {
    margin: 0 0 18px;
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.about-hero__title-line {
    display: block;
    font-size: clamp(2.5rem, 5.5vw, 4.25rem);
    color: var(--white);
}

.about-hero__title-line--accent {
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(105deg, var(--wood) 0%, #e8c9a0 42%, var(--clay) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-top: 2px;
}

.about-hero__tagline {
    margin: 0 0 22px;
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    max-width: 480px;
}

.about-hero__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
}

.about-hero__pills li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    backdrop-filter: blur(6px);
}

.about-hero__pills li i {
    font-size: 0.7rem;
    color: var(--wood);
}

.about-hero__stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-hero__stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 600;
    line-height: 1.1;
    color: var(--white);
}

.about-hero__stat span {
    display: block;
    margin-top: 2px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.5);
}

.about-hero__stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
}

.about-hero__visual {
    position: relative;
    max-width: 480px;
    margin-left: auto;
}

.about-hero__visual img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    display: block;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
}

.about-hero__frame {
    position: absolute;
    inset: -12px -12px 12px 12px;
    border: 1px solid rgba(184, 149, 106, 0.35);
    pointer-events: none;
    z-index: -1;
}

.about-hero__card {
    position: absolute;
    bottom: 24px;
    left: -20px;
    padding: 18px 22px;
    background: var(--clay);
    color: var(--white);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.about-hero__card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.85rem;
    line-height: 1;
}

.about-hero__card span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@media (prefers-reduced-motion: reduce) {
    .about-hero__eyebrow-dot {
        animation: none;
    }
}

@media (max-width: 900px) {
    .about-hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-hero__copy-inner {
        margin: 0 auto;
        padding-left: 0;
        max-width: 560px;
    }

    .about-hero__copy-inner::before {
        display: none;
    }

    .about-hero__eyebrow {
        justify-content: center;
    }

    .about-hero__tagline {
        margin-left: auto;
        margin-right: auto;
    }

    .about-hero__pills {
        justify-content: center;
    }

    .about-hero__stats {
        justify-content: center;
    }

    .about-hero__stat-divider {
        display: none;
    }

    .about-hero__visual {
        margin: 0 auto;
        max-width: 420px;
    }

    .about-hero__card {
        left: 16px;
    }

    .about-hero__bg-title {
        top: 8%;
        font-size: clamp(3.5rem, 22vw, 7rem);
    }
}

/* Story */
.about-story {
    padding: clamp(64px, 10vh, 100px) 0;
    background: #faf8f5;
}

.about-story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.about-story__visual {
    position: relative;
    min-height: 420px;
}

.about-story__img-main img {
    width: 78%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.about-story__img-accent {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 52%;
    border: 8px solid #faf8f5;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.about-story__img-accent img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
}

.about-story__badge {
    position: absolute;
    top: 24px;
    right: 12%;
    padding: 18px 22px;
    background: var(--clay);
    color: var(--white);
    text-align: center;
    box-shadow: 0 8px 28px rgba(199, 91, 57, 0.35);
}

.about-story__badge strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1;
}

.about-story__badge span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.about-story__heading {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    font-weight: 500;
    margin: 0 0 20px;
    color: var(--ink);
}

.about-story__heading em {
    font-style: italic;
    color: var(--clay);
}

.about-story__copy p {
    margin: 0 0 16px;
    line-height: 1.75;
    color: var(--muted);
}

.about-story__list {
    list-style: none;
    margin: 24px 0 32px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}

.about-story__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--ink);
}

.about-story__list li i {
    color: var(--clay);
    margin-top: 3px;
    font-size: 0.75rem;
}

.about-story__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Stats */
.about-stats {
    padding: 48px 0;
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.about-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.about-stats__num {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    color: var(--ink);
    line-height: 1.1;
}

.about-stats__label {
    display: block;
    margin-top: 6px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
}

/* Values */
.about-values {
    padding: var(--section-pad) 0;
    background: var(--white);
}

.about-values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-values__card {
    padding: 32px 24px;
    background: #faf8f5;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.about-values__card:hover {
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.about-values__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(199, 91, 57, 0.12);
    color: var(--clay);
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.about-values__card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0 0 10px;
    color: var(--ink);
}

.about-values__card p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--muted);
}

/* Process */
.about-process {
    padding: var(--section-pad) 0;
    background: var(--ink);
    color: var(--white);
}

.about-process__track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-process__step {
    position: relative;
    padding: 28px 24px 32px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-process__num {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
    color: rgba(255, 255, 255, 0.08);
    margin-bottom: 12px;
}

.about-process__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(184, 149, 106, 0.15);
    color: var(--wood);
    margin-bottom: 16px;
    font-size: 1rem;
}

.about-process__step h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0 0 10px;
}

.about-process__step p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
}

/* Quote */
.about-quote {
    padding: clamp(64px, 10vh, 96px) 0;
    background: #f5f1e6;
    text-align: center;
}

.about-quote__inner {
    max-width: 760px;
    margin: 0 auto;
}

.about-quote blockquote {
    margin: 0 0 16px;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.45;
    color: var(--ink);
}

.about-quote cite {
    font-size: 0.85rem;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
}

/* CTA */
.about-cta {
    padding: clamp(56px, 8vh, 80px) 0;
    background: linear-gradient(135deg, #1a1612 0%, #0f0e0d 100%);
    color: var(--white);
}

.about-cta__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.about-cta__copy h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 500;
    margin: 0 0 8px;
}

.about-cta__copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
}

.about-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 1023px) {
    .about-story__grid {
        grid-template-columns: 1fr;
    }

    .about-story__visual {
        max-width: 520px;
        margin: 0 auto;
    }

    .about-values__grid,
    .about-process__track {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 599px) {
    .about-story__list {
        grid-template-columns: 1fr;
    }

    .about-values__grid,
    .about-process__track {
        grid-template-columns: 1fr;
    }

    .about-stats__grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .about-cta__actions {
        width: 100%;
    }

    .about-cta__actions .btn-primary,
    .about-cta__actions .btn-wa {
        flex: 1;
        justify-content: center;
    }
}

/* =====================================================
   COLLECTION PAGE (shop tab — redesign)
   ===================================================== */
.home-redesign #section-collection {
    overflow-x: hidden;
    background: #faf8f5;
}

/* Hero */
.collection-hero {
    position: relative;
    min-height: min(82vh, 780px);
    display: flex;
    align-items: center;
    padding: clamp(100px, 12vh, 130px) 0 clamp(48px, 7vh, 72px);
    background: var(--ink);
    color: var(--white);
    overflow: hidden;
}

.collection-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 55% at 82% 38%, rgba(199, 91, 57, 0.14), transparent 55%),
        radial-gradient(ellipse 50% 45% at 12% 70%, rgba(184, 149, 106, 0.12), transparent 50%),
        linear-gradient(155deg, #0f0e0d 0%, #1c1814 48%, #0f0e0d 100%);
    pointer-events: none;
}

.collection-hero__bg-title {
    position: absolute;
    top: 16%;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(4rem, 16vw, 11rem);
    font-weight: 600;
    line-height: 0.85;
    text-transform: lowercase;
    letter-spacing: -0.04em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(252, 250, 249, 0.05);
    text-stroke: 1px rgba(252, 250, 249, 0.05);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.collection-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

.collection-hero__copy-inner {
    position: relative;
    padding-left: clamp(20px, 3vw, 32px);
    max-width: 540px;
}

.collection-hero__copy-inner::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    border-radius: 3px;
    background: linear-gradient(180deg, var(--clay) 0%, var(--wood) 55%, transparent 100%);
}

.collection-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 24px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--wood);
}

.collection-hero__eyebrow-dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clay);
    box-shadow: 0 0 0 0 rgba(199, 91, 57, 0.5);
    animation: home-hero-pulse 2.4s ease-out infinite;
}

.collection-hero__title {
    margin: 0 0 18px;
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.collection-hero__title-line {
    display: block;
    font-size: clamp(2.4rem, 5.2vw, 4rem);
    color: var(--white);
}

.collection-hero__title-line--accent {
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(105deg, #e8c9a0 0%, var(--wood) 40%, var(--clay) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-top: 2px;
}

.collection-hero__tagline {
    margin: 0 0 22px;
    font-size: clamp(0.98rem, 1.7vw, 1.08rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    max-width: 460px;
}

.collection-hero__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
}

.collection-hero__pills li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    backdrop-filter: blur(6px);
}

.collection-hero__pills li i {
    font-size: 0.7rem;
    color: var(--wood);
}

.collection-hero__stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.collection-hero__stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 600;
    line-height: 1.1;
    color: var(--white);
}

.collection-hero__stat span {
    display: block;
    margin-top: 2px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.5);
}

.collection-hero__stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
}

.collection-hero__visual {
    position: relative;
    max-width: 460px;
    margin-left: auto;
}

.collection-hero__visual img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
}

.collection-hero__frame {
    position: absolute;
    inset: -12px -12px 12px 12px;
    border: 1px solid rgba(199, 91, 57, 0.35);
    pointer-events: none;
    z-index: -1;
}

.collection-hero__card {
    position: absolute;
    bottom: 24px;
    right: -16px;
    left: auto;
    padding: 18px 22px;
    background: var(--wood);
    color: var(--ink);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.collection-hero__card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.85rem;
    line-height: 1;
}

.collection-hero__card span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@media (prefers-reduced-motion: reduce) {
    .collection-hero__eyebrow-dot {
        animation: none;
    }
}

@media (max-width: 900px) {
    .collection-hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .collection-hero__copy-inner {
        margin: 0 auto;
        padding-left: 0;
    }

    .collection-hero__copy-inner::before {
        display: none;
    }

    .collection-hero__eyebrow {
        justify-content: center;
    }

    .collection-hero__tagline {
        margin-left: auto;
        margin-right: auto;
    }

    .collection-hero__pills {
        justify-content: center;
    }

    .collection-hero__stats {
        justify-content: center;
    }

    .collection-hero__stat-divider {
        display: none;
    }

    .collection-hero__visual {
        margin: 0 auto;
        max-width: 400px;
    }

    .collection-hero__card {
        right: 12px;
    }

    .collection-hero__bg-title {
        top: 6%;
        font-size: clamp(3rem, 20vw, 6rem);
    }
}

/* Shop area */
.collection-shop {
    padding: clamp(32px, 5vh, 48px) 0 clamp(64px, 8vh, 96px);
}

/* Toolbar */
.collection-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 16px;
    padding: 20px;
    margin-bottom: 24px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.collection-toolbar__search {
    flex: 1 1 280px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    background: #f5f2ee;
    border: 1px solid transparent;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.collection-toolbar__search:focus-within {
    border-color: var(--clay);
    box-shadow: 0 0 0 3px rgba(199, 91, 57, 0.12);
    background: var(--white);
}

.collection-toolbar__search i {
    color: var(--muted);
    font-size: 0.9rem;
}

.collection-toolbar__search input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 14px 0;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
}

.collection-toolbar__filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.collection-filter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.collection-filter i {
    color: var(--clay);
    font-size: 0.85rem;
}

.collection-filter select {
    min-width: 150px;
    padding: 12px 14px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--white);
    font-family: inherit;
    font-size: 0.88rem;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.collection-filter select:focus {
    outline: none;
    border-color: var(--clay);
}

.collection-clear {
    font-size: 0.82rem;
    padding: 10px 16px;
    white-space: nowrap;
}

/* Category pills */
.collection-pills {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.collection-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    padding: 10px 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--white);
    color: var(--ink);
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.collection-pill__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 100px;
    background: rgba(0, 0, 0, 0.06);
    font-size: 0.72rem;
    font-weight: 700;
}

.collection-pill:hover,
.collection-pill.is-active {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}

.collection-pill.is-active .collection-pill__count {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

/* Results meta */
.collection-meta {
    margin-bottom: 24px;
}

.collection-results {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
}

/* Product grid */
.home-redesign #section-collection .collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: clamp(20px, 3vw, 28px);
}

.home-redesign #section-collection .collection-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.home-redesign #section-collection .collection-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.home-redesign #section-collection .collection-card__media {
    position: relative;
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    text-decoration: none;
}

.home-redesign #section-collection .collection-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.home-redesign #section-collection .collection-card:hover .collection-card__media img {
    transform: scale(1.06);
}

.home-redesign #section-collection .collection-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 14, 13, 0.45);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.home-redesign #section-collection .collection-card:hover .collection-card__overlay {
    opacity: 1;
}

.home-redesign #section-collection .collection-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 10px;
    background: var(--clay);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    z-index: 2;
}

.home-redesign #section-collection .collection-card__cat {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    font-size: 0.68rem;
    font-weight: 600;
    z-index: 2;
}

.home-redesign #section-collection .collection-card__soldout {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 6px 12px;
    background: rgba(15, 14, 13, 0.85);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.home-redesign #section-collection .collection-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px 18px 20px;
}

.home-redesign #section-collection .collection-card__title {
    margin: 0 0 8px;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.3;
}

.home-redesign #section-collection .collection-card__title a {
    color: var(--ink);
    text-decoration: none;
    transition: color 0.2s ease;
}

.home-redesign #section-collection .collection-card__title a:hover {
    color: var(--clay);
}

.home-redesign #section-collection .collection-card__excerpt {
    margin: 0 0 14px;
    font-size: 0.85rem;
    line-height: 1.55;
    color: var(--muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-redesign #section-collection .collection-card__footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.home-redesign #section-collection .collection-card__price {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--clay);
}

.home-redesign #section-collection .collection-card__actions {
    display: flex;
    gap: 8px;
}

.home-redesign #section-collection .collection-card__cart,
.home-redesign #section-collection .collection-card__detail {
    flex: 1;
    justify-content: center;
    font-size: 0.78rem;
    padding: 11px 10px;
}

.home-redesign #section-collection .collection-card__cart span {
    margin-left: 4px;
}

.home-redesign #section-collection .collection-card[hidden] {
    display: none !important;
}

/* Empty states */
.home-redesign #section-collection .collection-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 64px 24px;
    background: var(--white);
    border: 1px dashed rgba(0, 0, 0, 0.12);
}

.home-redesign #section-collection .collection-empty i {
    font-size: 2.5rem;
    color: var(--clay);
    margin-bottom: 16px;
}

.home-redesign #section-collection .collection-empty h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin: 0 0 8px;
}

.home-redesign #section-collection .collection-empty p {
    margin: 0 0 20px;
    color: var(--muted);
}

/* Help CTA */
.collection-help {
    padding: clamp(48px, 8vh, 72px) 0;
    background: linear-gradient(135deg, #1a1612 0%, #0f0e0d 100%);
    color: var(--white);
}

.collection-help__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.collection-help__copy h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
    margin: 0 0 8px;
}

.collection-help__copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
}

.collection-help__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 768px) {
    .collection-toolbar {
        flex-direction: column;
    }

    .collection-toolbar__filters {
        width: 100%;
    }

    .collection-filter {
        flex: 1 1 calc(50% - 5px);
    }

    .collection-filter select {
        width: 100%;
        min-width: 0;
    }

    .home-redesign #section-collection .collection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .home-redesign #section-collection .collection-card__excerpt {
        display: none;
    }
}

@media (max-width: 480px) {
    .home-redesign #section-collection .collection-grid {
        grid-template-columns: 1fr;
    }

    .collection-filter {
        flex: 1 1 100%;
    }
}
