.craft-intro {
    padding: 6.5rem 0 5rem;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.craft-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: radial-gradient(ellipse at center top, rgba(197, 160, 89, 0.06), transparent 70%);
    pointer-events: none;
}

.craft-intro__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.5rem;
    position: relative;
}

.craft-intro__eyebrow {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.craft-intro__title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 1.25rem;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.craft-intro__divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 1.5rem;
    position: relative;
}

.craft-intro__divider::before,
.craft-intro__divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    transform: translateY(-50%);
}

.craft-intro__divider::before {
    left: -12px;
}

.craft-intro__divider::after {
    right: -12px;
}

.craft-intro__description {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 620px;
    margin: 0 auto;
}

.craft-showcase {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 1rem 0;
}

.craft-showcase__info {
    padding: 1rem 0;
}

.craft-slider__track {
    position: relative;
    min-height: 260px;
}

.craft-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    pointer-events: none;
    text-align: center;
}

.craft-slide--active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.craft-slide__num {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    font-style: italic;
}

.craft-slide__title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 2.8vw, 2.1rem);
    font-weight: 500;
    color: var(--charcoal);
    margin: 0 0 1.1rem 0;
    line-height: 1.15;
}

.craft-slide__text {
    font-family: var(--font-body);
    font-size: 0.94rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-secondary);
    margin: 0 auto;
    max-width: 520px;
}

.craft-slider__dots {
    display: flex;
    gap: 0.6rem;
    margin-top: 2.25rem;
    align-items: center;
    justify-content: center;
}

.craft-slider__dot {
    width: 28px;
    height: 2px;
    background: var(--border-light);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 1px;
}

.craft-slider__dot:hover {
    background: var(--gold);
}

.craft-slider__dot--active {
    background: var(--burgundy);
    width: 48px;
}

.craft-stats {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1rem;
    margin-top: 5.5rem;
    padding: 2rem 2.5rem;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 18px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 6px 30px rgba(74, 29, 63, 0.06);
}

.craft-stat {
    text-align: center;
    flex: 1;
    padding: 0.5rem 0.5rem;
}

.craft-stat__num {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 500;
    color: var(--burgundy);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.craft-stat__num sup,
.craft-stat__num sub {
    font-size: 0.55em;
    font-weight: 400;
    color: var(--gold);
    margin-left: 2px;
    vertical-align: super;
}

.craft-stat__num sub {
    vertical-align: baseline;
    font-size: 0.5em;
    margin-left: 3px;
}

.craft-stat__label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.craft-stat__divider {
    width: 1px;
    background: var(--border-light);
    flex-shrink: 0;
}

.craft-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3.5rem;
}

.craft-section-header__eyebrow {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.85rem;
}

.craft-section-header__title {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 4vw, 2.75rem);
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: -0.3px;
}

.craft-section-header__divider {
    width: 50px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 1.25rem;
}

.craft-section-header__description {
    font-family: var(--font-body);
    font-size: 0.94rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto;
}

.craft-journey {
    padding: 5.5rem 0;
    background: var(--cream);
}

.craft-timeline {
    max-width: 1050px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4.5rem;
}

.craft-timeline__item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.craft-timeline__item--reverse .craft-timeline__visual {
    order: 2;
}

.craft-timeline__visual {
    position: relative;
    aspect-ratio: 5 / 4;
}

.craft-timeline__image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(74, 29, 63, 0.12);
    transition: transform 0.5s ease;
}

.craft-timeline__item:hover .craft-timeline__image {
    transform: scale(1.02);
}

.craft-timeline__num {
    position: absolute;
    top: -25px;
    left: -25px;
    width: 70px;
    height: 70px;
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--burgundy);
    box-shadow: 0 8px 20px rgba(74, 29, 63, 0.15);
    z-index: 2;
}

.craft-timeline__item--reverse .craft-timeline__num {
    left: auto;
    right: -25px;
}

.craft-timeline__stage {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.85rem;
}

.craft-timeline__title {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 500;
    color: var(--charcoal);
    margin: 0 0 1.25rem 0;
    line-height: 1.15;
}

.craft-timeline__text {
    font-family: var(--font-body);
    font-size: 0.94rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-secondary);
    margin: 0;
}

.craft-timeline__text em {
    font-style: italic;
    color: var(--burgundy);
    font-weight: 400;
}

.craft-techniques {
    padding: 5.5rem 0;
    background: var(--white);
}

.craft-techniques__list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.craft-loading {
    text-align: center;
    padding: 3rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.craft-technique {
    background: var(--cream);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.craft-technique:hover {
    box-shadow: 0 12px 40px rgba(74, 29, 63, 0.1);
    transform: translateY(-3px);
}

.craft-technique__header {
    position: relative;
    height: 240px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.craft-technique__header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(74, 29, 63, 0.35) 0%,
            rgba(53, 16, 40, 0.75) 100%);
}

.craft-technique__header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 1rem;
}

.craft-technique__name {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 400;
    color: var(--white);
    margin: 0 0 0.5rem 0;
    letter-spacing: 0.5px;
}

.craft-technique__tagline {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

.craft-technique__body {
    padding: 2rem 2.5rem;
}

.craft-technique__description {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
    max-width: 800px;
}

.craft-technique__slider {
    position: relative;
    margin-bottom: 1.25rem;
}

.craft-technique__track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.5rem 0;
}

.craft-technique__track::-webkit-scrollbar {
    display: none;
}

.craft-technique__prev,
.craft-technique__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: var(--white);
    border: 1px solid var(--border-light);
    color: var(--charcoal);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3;
    opacity: 0;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(74, 29, 63, 0.12);
}

.craft-technique__slider:hover .craft-technique__prev,
.craft-technique__slider:hover .craft-technique__next {
    opacity: 1;
}

.craft-technique__prev:hover,
.craft-technique__next:hover {
    background: var(--burgundy);
    color: var(--white);
    border-color: var(--burgundy);
}

.craft-technique__prev {
    left: 8px;
}

.craft-technique__next {
    right: 8px;
}

.craft-technique-product {
    flex-shrink: 0;
    width: 210px;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.4s ease;
}

.craft-technique-product:hover {
    transform: translateY(-4px);
}

.craft-technique-product__image {
    position: relative;
    width: 100%;
    height: 270px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 4px;
}

.craft-technique-product__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.craft-technique-product:hover .craft-technique-product__image img {
    transform: scale(1.06);
}

.craft-technique-product__info {
    padding: 0.85rem 0.15rem;
    text-align: center;
}

.craft-technique-product__name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--charcoal);
    margin: 0;
    line-height: 1.3;
}

.craft-technique__footer {
    text-align: right;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.craft-technique__view-all {
    font-family: var(--font-body);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--burgundy);
    text-decoration: none;
    transition: color 0.3s ease;
}

.craft-technique__view-all:hover {
    color: var(--gold);
}

.craft-gi {
    padding: 5.5rem 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.craft-gi__inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4.5rem;
    align-items: center;
    max-width: 950px;
    margin: 0 auto;
}

.craft-gi__visual {
    display: flex;
    justify-content: center;
}

.craft-gi__seal {
    position: relative;
}

.craft-gi__seal-ring {
    width: 200px;
    height: 200px;
    border: 3px double var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    box-shadow:
        0 15px 40px rgba(74, 29, 63, 0.15),
        inset 0 0 0 8px var(--cream);
}

.craft-gi__seal-inner {
    text-align: center;
}

.craft-gi__seal-top,
.craft-gi__seal-bottom {
    font-family: var(--font-body);
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0;
}

.craft-gi__seal-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--burgundy);
    margin: 0.3rem 0;
    line-height: 1;
    letter-spacing: 2px;
}

.craft-gi__seal-tag {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--burgundy);
    color: var(--white);
    padding: 0.4rem 1.25rem;
    border-radius: 20px;
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 6px 15px rgba(74, 29, 63, 0.25);
}

.craft-gi__eyebrow {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.85rem;
}

.craft-gi__title {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    font-weight: 400;
    color: var(--charcoal);
    margin: 0 0 1rem 0;
    line-height: 1.15;
    letter-spacing: -0.3px;
}

.craft-gi__divider {
    width: 50px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 1.5rem;
}

.craft-gi__text {
    font-family: var(--font-body);
    font-size: 0.94rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
}

.craft-gi__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.craft-gi__feature {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--charcoal);
    font-weight: 400;
}

.craft-gi__check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}

.craft-gallery {
    padding: 5.5rem 0;
    background: var(--white);
}

.craft-gallery__slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.craft-gallery__track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.5rem 1.5rem;
}

.craft-gallery__track::-webkit-scrollbar {
    display: none;
}

.craft-gallery__prev,
.craft-gallery__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    background: var(--white);
    border: 1px solid var(--border-light);
    color: var(--charcoal);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3;
    opacity: 0;
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(74, 29, 63, 0.15);
}

.craft-gallery__slider:hover .craft-gallery__prev,
.craft-gallery__slider:hover .craft-gallery__next {
    opacity: 1;
}

.craft-gallery__prev:hover,
.craft-gallery__next:hover {
    background: var(--burgundy);
    color: var(--white);
    border-color: var(--burgundy);
}

.craft-gallery__prev {
    left: 0;
}

.craft-gallery__next {
    right: 0;
}

.craft-gallery__image {
    flex-shrink: 0;
    width: 320px;
    height: 400px;
    overflow: hidden;
    border-radius: 6px;
    position: relative;
    box-shadow: 0 8px 25px rgba(74, 29, 63, 0.08);
}

.craft-gallery__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.craft-gallery__image:hover img {
    transform: scale(1.06);
}

.craft-gallery__image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.9), transparent);
    padding: 2.5rem 1.25rem 1.25rem;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.craft-cta {
    padding: 5.5rem 0;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    position: relative;
    overflow: hidden;
}

.craft-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at top left, rgba(197, 160, 89, 0.15), transparent 60%),
        radial-gradient(ellipse at bottom right, rgba(197, 160, 89, 0.08), transparent 60%);
    pointer-events: none;
}

.craft-cta__inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.craft-cta__eyebrow {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.craft-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    color: var(--white);
    margin: 0 0 1rem 0;
    line-height: 1.15;
    letter-spacing: -0.3px;
}

.craft-cta__divider {
    width: 50px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 1.5rem;
}

.craft-cta__text {
    font-family: var(--font-body);
    font-size: 0.98rem;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 2.5rem;
}

.craft-cta__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .craft-showcase {
        max-width: 600px;
    }

    .craft-timeline__item,
    .craft-timeline__item--reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .craft-timeline__item--reverse .craft-timeline__visual {
        order: 0;
    }

    .craft-timeline__item--reverse .craft-timeline__num {
        left: -20px;
        right: auto;
    }

    .craft-gi__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .craft-gi__divider {
        margin-left: auto;
        margin-right: auto;
    }

    .craft-gi__features {
        text-align: left;
        max-width: 380px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .craft-intro {
        padding: 5.5rem 0 3.5rem;
    }

    .craft-intro__header {
        margin-bottom: 2.5rem;
    }

    .craft-slide__num {
        font-size: 3rem;
    }

    .craft-slider__track {
        min-height: 240px;
    }

    .craft-stats {
        flex-wrap: wrap;
        gap: 1.5rem 0.5rem;
        padding: 1.75rem 1rem;
        margin-top: 3.5rem;
        border-radius: 14px;
    }

    .craft-stat {
        flex: 1 1 42%;
    }

    .craft-stat__divider {
        display: none;
    }

    .craft-journey {
        padding: 4rem 0;
    }

    .craft-timeline {
        gap: 3.5rem;
    }

    .craft-timeline__num {
        width: 56px;
        height: 56px;
        font-size: 1.2rem;
        top: -18px;
        left: -15px;
    }

    .craft-techniques {
        padding: 4rem 0;
    }

    .craft-technique__header {
        height: 180px;
    }

    .craft-technique__body {
        padding: 1.5rem 1.25rem;
    }

    .craft-technique-product {
        width: 175px;
    }

    .craft-technique-product__image {
        height: 225px;
    }

    .craft-technique__prev,
    .craft-technique__next {
        opacity: 1;
        width: 32px;
        height: 32px;
    }

    .craft-gi {
        padding: 4rem 0;
    }

    .craft-gi__seal-ring {
        width: 170px;
        height: 170px;
    }

    .craft-gi__seal-title {
        font-size: 2.8rem;
    }

    .craft-gi__features {
        grid-template-columns: 1fr;
    }

    .craft-gallery {
        padding: 4rem 0;
    }

    .craft-gallery__image {
        width: 260px;
        height: 340px;
    }

    .craft-gallery__prev,
    .craft-gallery__next {
        opacity: 1;
        width: 36px;
        height: 36px;
    }

    .craft-cta {
        padding: 4rem 0;
    }

    .craft-cta__actions {
        flex-direction: column;
        align-items: stretch;
        max-width: 260px;
        margin: 0 auto;
    }

    .craft-cta__actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .craft-slider__track {
        min-height: 280px;
    }

    .craft-slide__title {
        font-size: 1.45rem;
    }

    .craft-slide__text {
        font-size: 0.88rem;
    }

    .craft-technique-product {
        width: 155px;
    }

    .craft-technique-product__image {
        height: 200px;
    }

    .craft-gallery__image {
        width: 220px;
        height: 300px;
    }
}