/* ── HERO ── */
.page-hero {
    padding-top: 72px; min-height: 60vh;
    background: radial-gradient(circle at 20% 20%, #4C1300 0%, #111111 80%);
    position: relative; overflow: hidden;
    display: flex; align-items: center;
}
.page-hero::before { display: none; }
/* Decorative wood rings */
.page-hero::after {
    content: '';
    position: absolute; right: -200px; top: 50%;
    transform: translateY(-50%);
    width: 600px; height: 600px; border-radius: 50%;
    border: 80px solid rgba(255,255,255,0.025);
    box-shadow: 0 0 0 60px rgba(255,255,255,0.015);
}
.page-hero-inner { padding: 80px 0 72px; position: relative; z-index: 1; width: 100%; }
.hero-tag-line { width: 32px; height: 1.5px; background: var(--gold); display: inline-block; margin-right: 12px; vertical-align: middle; }
.sec-eyebrow-light { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 20px; }
.page-hero-title {
    font-size: clamp(44px, 7vw, 86px);
    font-weight: 800; letter-spacing: -0.03em; line-height: 1;
    color: white; margin-bottom: 20px;
}
.page-hero-title em { font-style: normal; color: var(--accent); }
.page-hero-sub { font-size: 17px; color: rgba(255,255,255,0.45); font-weight: 300; line-height: 1.7; max-width: 520px; }

/* ── PROCESS STEPS ── */
.process-section { background: var(--bark); padding-bottom: 0; }

.craft-step {
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: 80vh; align-items: center;
}
.craft-step.reverse .craft-step-img { order: 2; }
.craft-step.reverse .craft-step-content { order: 1; }

.craft-step-img {
    position: sticky; top: 0; height: 80vh; overflow: hidden;
}
.craft-step-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out); }
.craft-step:hover .craft-step-img img { transform: scale(1.03); }
.craft-step-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to right, transparent 55%, var(--bark));
}
.craft-step.reverse .craft-step-img::after {
    background: linear-gradient(to left, transparent 55%, var(--bark));
}

.craft-step-content { padding: 80px 60px; position: relative; z-index: 2; }
.step-big-num {
    font-size: 120px; font-weight: 800; color: rgba(255,255,255,0.04);
    line-height: 1; margin-bottom: -20px; letter-spacing: -0.05em;
}
.step-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px; border: 1px solid rgba(200,151,74,0.4);
    border-radius: 50px; font-size: 10px; font-weight: 700;
    letter-spacing: 0.15em; color: var(--gold); margin-bottom: 20px;
}
.step-badge-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }
.step-title { font-size: 42px; font-weight: 800; color: white; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 16px; }
.step-title em { font-style: normal; color: var(--accent); }
.step-desc { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.8; font-weight: 300; margin-bottom: 20px; max-width: 400px; }
.step-detail { display: flex; gap: 28px; margin-top: 28px; }
.detail-item { text-align: center; }
.detail-num { font-size: 26px; font-weight: 800; color: white; }
.detail-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; color: rgba(255,255,255,0.3); margin-top: 3px; }

/* ── MATERIALS ── */
.materials-section { padding: 100px 0; background: var(--cream); }
.sec-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; color: var(--accent); margin-bottom: 14px; }
.sec-title { font-size: clamp(26px, 3.5vw, 42px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; color: var(--text); }
.sec-title .thin { font-weight: 300; color: var(--text-muted); }
.materials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.material-card {
    background: var(--cream-2); border-radius: 20px; padding: 32px 28px;
    border: 1px solid rgba(212,196,168,0.3);
    transition: all 0.4s var(--ease-out);
}
.material-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,0,0,0.09); border-color: rgba(255,79,0,0.15); }
.material-icon { margin-bottom: 18px; display: block; }
.material-icon-img { width: 40px; height: 40px; object-fit: contain; filter: brightness(0); display: block; }
.material-name { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 8px; letter-spacing: -0.01em; }
.material-latin { font-size: 11px; color: var(--text-muted); font-weight: 400; margin-bottom: 12px; font-style: italic; }
.material-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; font-weight: 300; }
.material-props { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.material-prop {
    padding: 4px 10px; background: var(--cream); border-radius: 50px;
    font-size: 10px; font-weight: 700; letter-spacing: 0.06em; color: var(--text-mid);
    border: 1px solid rgba(212,196,168,0.4);
}

/* ── EQUIPMENT ── */
.equipment-section { padding: 80px 0; background: var(--cream-2); }
.equip-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 48px; }
.equip-item {
    display: flex; align-items: center; gap: 16px;
    background: var(--cream); border-radius: 14px; padding: 20px 22px;
    border: 1px solid rgba(212,196,168,0.3);
    transition: all 0.3s;
}
.equip-item:hover { border-color: rgba(255,79,0,0.2); transform: translateX(4px); }
.equip-icon { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.equip-icon-img {
    width: 100%; height: 100%; object-fit: contain;
    filter: brightness(0);
}
.equip-name { font-size: 14px; font-weight: 800; color: var(--text); margin-bottom: 3px; }
.equip-desc { font-size: 12px; color: var(--text-muted); font-weight: 300; }

/* ── CTA ── */
.craft-cta { background: var(--bark); padding: 80px 28px; text-align: center; position: relative; overflow: hidden; }
.craft-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(255,79,0,0.13) 0%, transparent 65%); }
.craft-cta-inner { max-width: 580px; margin: 0 auto; position: relative; z-index: 1; }
.craft-cta h2 { font-size: clamp(26px, 4vw, 44px); font-weight: 800; color: white; letter-spacing: -0.02em; margin-bottom: 14px; }
.craft-cta h2 em { font-style: normal; color: var(--accent); }
.craft-cta p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 32px; }
.btn-cta { display: inline-flex; align-items: center; gap: 8px; padding: 16px 36px; background: var(--accent); color: white; border-radius: 50px; font-size: 14px; font-weight: 800; letter-spacing: 0.04em; transition: all 0.35s; }
.btn-cta:hover { background: #E84500; transform: translateY(-3px); box-shadow: 0 16px 40px rgba(255,79,0,0.4); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .craft-step, .craft-step.reverse { grid-template-columns: 1fr; min-height: auto; }
    .craft-step .craft-step-img, .craft-step.reverse .craft-step-img { order: 0; position: relative; height: 280px; top: auto; }
    .craft-step .craft-step-content, .craft-step.reverse .craft-step-content { order: 1; padding: 40px 24px; }
    .craft-step-img::after, .craft-step.reverse .craft-step-img::after { background: linear-gradient(to bottom, transparent 50%, var(--bark)); }
    .step-big-num { font-size: 72px; }
    .step-title { font-size: 30px; }
    .step-desc { max-width: 100%; }
    .materials-grid { grid-template-columns: 1fr; }
    .equip-list { grid-template-columns: 1fr; }
}