/* ============================================
   THE MAKING PAGE - PROFESSIONAL STYLING
   ============================================ */

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

#making-main {
    position: relative;
    overflow: hidden;
}

.making-hero {
    padding: 120px 0;  
    position: relative;
    overflow: hidden;
}

.making-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(158, 133, 116, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    padding: 40px;
}

.hero-inner {
    max-width: 600px;
}

.eyebrow {
    display: inline-block;
    font-size: 11px;
    font-family: var(--font-headline);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--brand);
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--brand);
    animation: slideInUp 0.8s ease 0.1s both;
}

.hero-content h1.display-3 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-family: var(--font-headline);
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 30px;
    animation: slideInUp 0.8s ease 0.2s both;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-style: italic;
    font-family: var(--font-headline);
    animation: slideInUp 0.8s ease 0.3s both;
}

.hero-subtitle p {
    margin: 0;
    padding: 0;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    animation: slideInUp 0.8s ease 0.4s both;
}

.hero-description p {
    margin: 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: slideInUp 0.8s ease 0.5s both;
}

.hero-buttons .btn {
    padding: 16px 40px;
    font-size: 11px;
    font-family: var(--font-headline);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.btn-primary {
    background: var(--brand);
    color: var(--text-btn);
    border-color: var(--brand);
}



.btn-primary:hover {
    background: var(--brand-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(158, 133, 116, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--brand);
    border-color: var(--brand);
}

.btn-outline:hover {
    background: var(--brand);
    color: var(--text-btn);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(158, 133, 116, 0.15);
}

.btn-outline .arrow {
    display: inline-block;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-outline:hover .arrow {
    transform: translateX(5px);
}

.hero-media {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/5;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    padding: 30px 20px 20px;
    font-size: 13px;
    letter-spacing: 0.1em;
    font-family: var(--font-headline);
}

.editorial-image {
    background: linear-gradient(135deg, #e8dcc8 0%, #d9cdb8 100%);
    border-radius: 8px;
    aspect-ratio: 4/5;
}

.editorial-image.tall {
    aspect-ratio: 3/4;
}

/* ============================================
   STRIP / ETHOS BAR
   ============================================ */

.making-strip {
    background: var(--text-primary);
    color: var(--bg-main);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.making-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(158, 133, 116, 0.1) 0%, 
        rgba(158, 133, 116, 0) 50%, 
        rgba(158, 133, 116, 0.1) 100%);
    pointer-events: none;
}

.strip-grid {
    display: flex;
    gap: 40px;
    position: relative;
    z-index: 1;
    animation: infiniteScroll 30s linear infinite;
    width: max-content;
}

.strip-item {
    font-size: 1.3rem;
    font-family: var(--font-headline);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
    padding: 20px 40px;
    opacity: 0.9;
    transition: opacity 0.4s ease;
    position: relative;
    min-width: 180px;
    flex-shrink: 0;
}

.strip-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--brand);
    opacity: 0;
    transition: all 0.4s ease;
}

.strip-item:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.strip-item:hover::before {
    opacity: 1;
    width: 60px;
}

@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   ATELIER NOTE SECTION
   ============================================ */

.making-atelier {
    padding: 100px 0;
    background: var(--bg-main);
}

.sticky-note {
    position: sticky;
    top: 120px;
    padding: 50px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: all 0.4s ease;
}

.sticky-note:hover {
    border-color: var(--brand);
    box-shadow: 0 15px 40px rgba(158, 133, 116, 0.1);
}

.sticky-note .eyebrow {
    border-bottom: 1px solid var(--border);
    animation: none;
}

.sticky-note h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    line-height: 1.3;
    color: var(--text-primary);
    margin-top: 20px;
    margin-bottom: 0;
}

.atelier-lead {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    font-style: italic;
    line-height: 1.8;
}

.atelier-lead + .row {
    gap: 50px;
}

.atelier-lead + .row .copy {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    text-align: justify;
}

/* ============================================
   NARRATIVE CHAPTERS SECTION
   ============================================ */

.making-chapters {
    padding: 0;
}

.chapter-block {
    padding: 100px 0;
    border-bottom: 1px solid var(--border-light);
    transition: background 0.4s ease;
}

.chapter-block:last-child {
    border-bottom: none;
}

.chapter-block:nth-child(even) {
    background: linear-gradient(to right, var(--bg-card) 0%, transparent 50%);
}

.chapter-block:nth-child(odd) {
    background: linear-gradient(to left, var(--bg-card) 0%, transparent 50%);
}



.chapter-media {
    position: relative;
}

.chapter-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 3/4;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.chapter-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.chapter-image-wrapper:hover .chapter-image {
    transform: scale(1.08);
}

.chapter-image-wrapper .image-caption {
    padding: 25px 20px 20px;
    font-size: 12px;
}

.chapter-placeholder {
    aspect-ratio: 3/4;
}

.chapter-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.chapter-content .eyebrow {
    border-bottom: 1px solid var(--border);
    animation: none;
    margin-bottom: 20px;
}

.chapter-content h2 {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 25px;
    margin-top: 0;
}

.chapter-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.9;
    text-align: justify;
}

.chapter-text p {
    margin: 0 0 15px 0;
}

.chapter-text p:last-child {
    margin-bottom: 0;
}

/* ============================================
   DECISIONS / DEEP SECTION
   ============================================ */

.making-deep {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-main) 0%, var(--bg-card) 100%);
}

.deep-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    line-height: 1.3;
    color: var(--text-primary);
    margin-top: 20px;
    margin-bottom: 0;
}

.decision-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.decision-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    align-items: flex-start;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.4s ease;
}

.decision-row:last-child {
    border-bottom: none;
}

.decision-row:hover {
    padding-left: 15px;
    transform: translateX(10px);
}

.decision-number {
    font-family: var(--font-headline);
    font-size: 2rem;
    font-weight: 600;
    color: var(--brand);
    letter-spacing: 0.1em;
    text-align: center;
    line-height: 1;
}

.decision-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
    padding-top: 5px;
}

/* ============================================
   WHY IT MATTERS SECTION
   ============================================ */

.making-why {
    padding: 100px 0;
    background: var(--bg-main);
}

.why-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 3/4;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.why-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.why-image-wrapper:hover .why-image {
    transform: scale(1.05);
}

.why-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    line-height: 1.3;
    color: var(--text-primary);
    margin-top: 20px;
    margin-bottom: 30px;
}

.making-why .eyebrow {
    border-bottom: 1px solid var(--border);
    animation: none;
}

.why-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.9;
}

.why-text p {
    margin: 0 0 20px 0;
}

.why-text p:last-child {
    margin-bottom: 0;
}

.quote-line {
    display: block;
    font-family: var(--font-headline);
    font-size: 1.2rem;
    color: var(--brand);
    letter-spacing: 0.08em;
    font-style: italic;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--border);
    text-align: center;
}

/* ============================================
   CLOSING SECTION
   ============================================ */

.making-closing {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--text-primary) 0%, #3a3a3a 100%);
    color: var(--bg-main);
    position: relative;
    overflow: hidden;
}

.making-closing::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(158, 133, 116, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.making-closing::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(158, 133, 116, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.making-closing .eyebrow {
    border-bottom: 1px solid var(--brand);
    color: var(--brand);
    animation: none;
}

.closing-title {
    font-size: clamp(2rem, 7vw, 3.5rem);
    line-height: 1.2;
    color: var(--bg-main);
    margin: 20px 0 40px;
    position: relative;
    z-index: 1;
}

.closing-text {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.05rem;
    color: rgba(250, 249, 247, 0.85);
    line-height: 1.9;
    position: relative;
    z-index: 1;
}

.closing-text p {
    margin: 0 0 20px 0;
}

.closing-text p:last-child {
    margin-bottom: 0;
}

.closing-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.making-closing .btn-primary {
    background: var(--brand);
    border-color: var(--brand);
    color: var(--text-btn);
}

.making-closing .btn-primary:hover {
    background: transparent;
    color: var(--brand);
}

.making-closing .btn-outline {
    border-color: var(--brand);
    color: var(--brand);
}

.making-closing .btn-outline:hover {
    background: var(--brand);
    color: var(--text-btn);
}

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

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@media (max-width: 1200px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-content {
        padding: 20px;
    }

    .making-hero {
        padding: 80px 0;
    }

    .sticky-note {
        position: static;
        margin-bottom: 50px;
    }

    .chapter-block .row {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .making-hero {
        padding: 60px 0;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .making-strip {
        padding: 50px 0;
    }

    .strip-grid {
        gap: 25px;
        animation: infiniteScroll 20s linear infinite;
    }

    .strip-item {
        padding: 15px 25px;
        font-size: 1rem;
        min-width: 140px;
    }

    .making-atelier {
        padding: 60px 0;
    }

    .atelier-lead + .row {
        gap: 30px;
    }

    .chapter-block {
        padding: 60px 0;
    }

    .chapter-block .row {
        gap: 30px;
    }

    .making-deep {
        padding: 60px 0;
    }

    .making-why {
        padding: 60px 0;
    }

    .making-closing {
        padding: 80px 0;
    }

    .decision-row {
        grid-template-columns: 60px 1fr;
        gap: 20px;
    }

    .decision-number {
        font-size: 1.5rem;
    }

    .closing-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .closing-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .hero-buttons .arrow,
    .closing-buttons .arrow {
        margin-left: 8px;
    }
}

@media (max-width: 576px) {
    .hero-content h1.display-3 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .chapter-content h2,
    .why-title,
    .closing-title,
    .atelier-lead {
        font-size: 1.5rem;
    }

    .strip-grid {
        gap: 15px;
        animation: infiniteScroll 15s linear infinite;
    }

    .strip-item {
        font-size: 0.9rem;
        padding: 12px 20px;
        min-width: 120px;
    }

    .sticky-note {
        padding: 30px;
    }

    .making-atelier {
        padding: 40px 0;
    }

    .decision-list {
        gap: 25px;
    }

    .decision-row {
        padding-bottom: 20px;
    }
}

/* ============================================
   ACCESSIBILITY & PERFORMANCE
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* Print styles */
@media print {
    .making-hero::before,
    .making-strip::before,
    .making-closing::before,
    .making-closing::after {
        display: none;
    }

    .hero-buttons,
    .closing-buttons {
        display: none;
    }
}