*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --black: #0C0C0C;
    --dark: #1A1A1A;
    --accent: #E07030;
    --accent-light: #F5A060;
    --white: #FFFFFF;
    --gray: #F2F2F2;
    --muted: #888;
    --nav-h: 72px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    z-index: 1000;
    transition: background 0.3s, box-shadow 0.3s;
}
nav.scrolled {
    background: rgba(12,12,12,0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-logo {
    font-family: 'Michroma', sans-serif;
    font-weight: 400;
    font-size: 1.05rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.nav-logo span { color: var(--accent); }
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
    background: var(--accent);
    color: var(--white) !important;
    padding: 0.55rem 1.3rem;
    border-radius: 2px;
}
.nav-cta:hover { background: var(--accent-light) !important; }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

/* ── HERO ── */
#hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/kitchen/kichen1.jpg');
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(12,12,12,0.88) 0%, rgba(12,12,12,0.6) 60%, rgba(12,12,12,0.35) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 5%;
    max-width: 750px;
}
.hero-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
}
.hero-title {
    font-family: 'Michroma', sans-serif;
    font-size: clamp(2.8rem, 6.5vw, 5rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--white);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.hero-title span { color: var(--accent); display: block; }
.hero-sub {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255,255,255,0.78);
    line-height: 1.75;
    margin-bottom: 2.5rem;
    max-width: 500px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 1rem 2.4rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    border: 2px solid var(--accent);
    transition: all 0.25s;
}
.btn-primary:hover { background: transparent; color: var(--accent); }
.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 1rem 2.4rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    border: 2px solid rgba(255,255,255,0.45);
    transition: all 0.25s;
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 5%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.45);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.hero-scroll-line { width: 40px; height: 1px; background: rgba(255,255,255,0.28); }

/* ── SECTION COMMON ── */
section { padding: 6rem 5%; }
.section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.85rem;
}
.section-title {
    font-family: 'Michroma', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding-bottom:.5em;
}
.section-title.light { color: var(--white); }

/* ── SERVICES ── */
#services { background: var(--white); }
.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
    gap: 2rem;
}
.services-header-desc {
    margin-top: 1.25rem;
    color: #555;
    line-height: 1.8;
    max-width: 400px;
    font-size: 0.95rem;
}
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
}
.service-card { position: relative; overflow: hidden; cursor: pointer; }
.service-card-inner { position: relative; padding-top: 125%; overflow: hidden; }
.service-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.service-card:hover img { transform: scale(1.06); }
.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12,12,12,0.92) 0%, rgba(12,12,12,0.38) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    transition: background 0.4s;
}
.service-card:hover .service-card-overlay {
    background: linear-gradient(to top, rgba(12,12,12,0.95) 0%, rgba(12,12,12,0.58) 60%, rgba(224,112,48,0.15) 100%);
}
.service-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.6rem;
}
.service-name {
    font-family: 'Michroma', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.25;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
}
.service-desc {
    color: rgba(255,255,255,0.72);
    font-size: 0.88rem;
    line-height: 1.7;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s;
    max-width: 320px;
}
.service-card:hover .service-desc { opacity: 1; transform: translateY(0); }
.service-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--accent);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 1.1rem;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.4s 0.05s;
}
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

/* ── STATS ── */
#stats {
    background: var(--black);
    padding: 5rem 5%;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}
.stat-item {
    padding: 2rem;
    border-left: 1px solid rgba(255,255,255,0.08);
}
.stat-item:first-child { border-left: none; }
.stat-number {
    font-family: 'Michroma', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    color: var(--accent);
    line-height: 1;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}
.stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}

/* ── GALLERY ── */
#gallery { background: var(--black); padding: 6rem 5%; }
.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.gallery-tabs { display: flex; gap: 0.4rem; }
.gallery-tab {
    padding: 0.48rem 1.2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.55);
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 2px;
}
.gallery-tab.active,
.gallery-tab:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 270px;
    gap: 4px;
}
.gallery-item { position: relative; overflow: hidden; cursor: pointer; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
    display: block;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12,12,12,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(224,112,48,0.22); }
.gallery-item-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item-label { opacity: 1; }
.gallery-item.hidden { display: none; }

/* ── ABOUT ── */
#about { background: var(--white); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}
.about-image-stack { position: relative; height: 550px; }
.about-img-main {
    position: absolute;
    top: 0; left: 0;
    width: 75%;
    height: 80%;
    object-fit: cover;
}
.about-img-secondary {
    position: absolute;
    bottom: 0; right: 0;
    width: 55%;
    height: 55%;
    object-fit: cover;
    border: 5px solid var(--white);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.about-accent {
    position: absolute;
    top: 42%;
    right: 26%;
    width: 55px;
    height: 55px;
    background: var(--accent);
    opacity: 0.9;
}
.about-content .section-title { margin-bottom: 1.25rem; }
.about-desc {
    color: #555;
    line-height: 1.9;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}
.features-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.features-list li { display: flex; align-items: flex-start; gap: 1rem; }
.feature-icon {
    width: 20px;
    height: 20px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.feature-icon svg { width: 12px; height: 12px; fill: white; }
.feature-text { font-size: 0.9rem; color: #333; line-height: 1.6; }
.feature-text strong { color: var(--black); font-weight: 600; }

/* ── PROCESS ── */
#process { background: var(--dark); padding: 6rem 5%; }
.process-header { text-align: center; margin-bottom: 4rem; }
.process-header .section-title { color: var(--white); margin-bottom: 1rem; }
.process-header p {
    color: rgba(255,255,255,0.5);
    max-width: 460px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 0.92rem;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 23px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: var(--accent);
    opacity: 0.35;
}
.process-step { text-align: center; padding: 0 1.5rem; }
.step-number {
    width: 48px;
    height: 48px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 0.95rem;
    color: var(--accent);
    margin: 0 auto 1.5rem;
    background: var(--dark);
    position: relative;
    z-index: 1;
}
.step-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0.75rem;
}
.step-desc { font-size: 0.83rem; color: rgba(255,255,255,0.48); line-height: 1.7; }

/* ── CONTACT ── */
#contact { background: var(--gray); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: start;
}
.contact-info .section-title { margin-bottom: 1.25rem; }
.contact-info-desc {
    color: #555;
    line-height: 1.85;
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
}
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-detail-icon {
    width: 42px;
    height: 42px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; fill: white; }
.contact-detail-text strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 0.2rem;
}
.contact-detail-text span { color: #555; font-size: 0.9rem; }

/* Contact form box */
.contact-form-box { background: var(--black); padding: 3rem; }
.form-title {
    font-family: 'Michroma', sans-serif;
    font-weight: 400;
    font-size: 1.3rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0.4rem;
}
.form-subtitle { color: rgba(255,255,255,0.45); font-size: 0.83rem; margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.15rem; }
.form-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 0.45rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    padding: 0.82rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    border-radius: 2px;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: rgba(255,255,255,0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.22); }
.form-group select option { background: var(--dark); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 108px; }
.form-submit {
    width: 100%;
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.25s;
    margin-top: 0.5rem;
}
.form-submit:hover { background: var(--accent-light); }
.form-success {
    display: none;
    text-align: center;
    padding: 3rem 1rem;
}
.form-success-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.form-success-icon svg { width: 28px; height: 28px; fill: white; }
.form-success h3 {
    font-family: 'Michroma', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0.75rem;
}
.form-success p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.7; }

/* ── FOOTER ── */
footer { background: var(--black); padding: 4rem 5% 2rem; }
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 2rem;
}
.footer-brand {
    font-family: 'Michroma', sans-serif;
    font-weight: 400;
    font-size: 1.05rem;
    color: var(--white);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.footer-brand span { color: var(--accent); }
.footer-desc {
    color: rgba(255,255,255,0.38);
    font-size: 0.83rem;
    line-height: 1.85;
    max-width: 270px;
}
.footer-col-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.2rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 0.83rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-copy { color: rgba(255,255,255,0.28); font-size: 0.78rem; flex: 1; }
.footer-plug { flex: 1; text-align: center; font-size: 0.78rem; }
.footer-tagline { color: rgba(255,255,255,0.28); font-size: 0.78rem; letter-spacing: 0.08em; flex: 1; text-align: right; }

/* ── ANIMATIONS ── */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
    .services-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-image-stack { height: 420px; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-item { border-left: none; border-top: 1px solid rgba(255,255,255,0.08); }
    .stat-item:first-child { border-top: none; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .process-steps::before { display: none; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.wide { grid-column: span 1; }
    .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 600px) {
    nav { padding: 0 4%; }
    .nav-links { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--nav-h);
        left: 0; right: 0;
        background: rgba(12,12,12,0.97);
        padding: 2rem 4%;
        gap: 1.5rem;
        backdrop-filter: blur(10px);
    }
    .nav-toggle { display: flex; }
    section { padding: 4rem 4%; }
    #stats { padding: 4rem 4%; }
    .hero-content { padding: 0 4%; }
    .hero-title { font-size: 3rem; }
    .hero-actions { flex-direction: column; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-box { padding: 2rem 1.5rem; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
    .gallery-item.tall { grid-row: span 1; }
    .process-steps { grid-template-columns: 1fr; }
    .services-header { flex-direction: column; }
}

/* ══════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════ */

.about-page nav { background: rgba(12,12,12,0.92); backdrop-filter: blur(10px); }
.nav-active { color: var(--accent) !important; }

/* ── ABOUT HERO ── */
.about-hero {
    position: relative;
    height: 72vh;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.about-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/misc/usa.jpg');
    background-size: cover;
    background-position: center 30%;
}
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(12,12,12,0.9) 0%, rgba(12,12,12,0.65) 60%, rgba(12,12,12,0.4) 100%);
}
.about-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 5%;
    max-width: 700px;
}
.about-hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 5%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.45);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    z-index: 2;
}

/* ── ORIGIN SECTION ── */
.origin-section {
    background: var(--white);
    padding: 7rem 5%;
}
.origin-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 7rem;
    align-items: start;
}
.origin-left {
    position: sticky;
    top: calc(var(--nav-h) + 2rem);
}
.origin-quote {
    font-family: 'Michroma', sans-serif;
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: 0.06em;
    color: var(--black);
    border-left: 3px solid var(--accent);
    padding-left: 1.75rem;
    margin-top: 1.5rem;
}
.origin-title { margin-bottom: 2rem; }
.origin-body {
    color: #555;
    line-height: 1.95;
    font-size: 0.97rem;
    margin-bottom: 1.4rem;
}
.origin-body:last-child { margin-bottom: 0; }

/* ── TIMELINE ── */
.timeline-section {
    background: var(--black);
    padding: 7rem 5%;
}
.timeline-header {
    text-align: center;
    margin-bottom: 5rem;
}
.timeline-header .section-title { color: var(--white); }
.timeline {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 110px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255,255,255,0.08);
}
.timeline-item {
    display: grid;
    grid-template-columns: 110px 20px 1fr;
    gap: 0 2rem;
    align-items: start;
    margin-bottom: 3.5rem;
    position: relative;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-year {
    font-family: 'Michroma', sans-serif;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    color: var(--accent);
    text-align: right;
    padding-top: 3px;
    white-space: nowrap;
}
.timeline-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    border: 2px solid rgba(255,255,255,0.25);
    margin-top: 4px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    justify-self: center;
}
.timeline-dot--pivot {
    background: rgba(224,112,48,0.3);
    border-color: var(--accent);
}
.timeline-dot--accent {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(224,112,48,0.2);
}
.timeline-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0.65rem;
}
.timeline-desc {
    color: rgba(255,255,255,0.48);
    font-size: 0.88rem;
    line-height: 1.8;
}

/* ── CRAFT IMAGES ── */
.craft-section {
    background: var(--gray);
    padding: 7rem 5%;
}
.craft-header {
    max-width: 580px;
    margin-bottom: 4rem;
}
.craft-lead {
    color: #555;
    line-height: 1.9;
    font-size: 0.95rem;
    margin-top: 1.25rem;
}
.craft-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 6px;
}
.craft-item {
    overflow: hidden;
    position: relative;
}
.craft-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
    display: block;
}
.craft-item:hover img { transform: scale(1.05); }
.craft-item--large {
    grid-column: span 2;
    grid-row: span 2;
}
.craft-item--wide { grid-column: span 2; }

/* ── LA SECTION ── */
.la-section {
    background: var(--white);
    padding: 7rem 5%;
}
.la-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}
.la-body {
    color: #555;
    line-height: 1.95;
    font-size: 0.97rem;
    margin-bottom: 1.4rem;
}
.la-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 3rem;
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-top: 2.5rem;
}
.la-stat { text-align: center; }
.la-stat + .la-stat { border-left: 1px solid rgba(0,0,0,0.08); }
.la-stat-num {
    font-family: 'Michroma', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 400;
    color: var(--accent);
    letter-spacing: 0.08em;
    line-height: 1;
    margin-bottom: 0.4rem;
}
.la-stat-label {
    font-size: 0.72rem;
    color: #888;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}
.la-img-stack { position: relative; height: 520px; }
.la-img-main {
    position: absolute;
    top: 0; left: 0;
    width: 75%;
    height: 80%;
    object-fit: cover;
}
.la-img-secondary {
    position: absolute;
    bottom: 0; right: 0;
    width: 55%;
    height: 55%;
    object-fit: cover;
    border: 5px solid var(--white);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.la-img-accent {
    position: absolute;
    top: 42%;
    right: 26%;
    width: 50px;
    height: 50px;
    background: var(--accent);
    opacity: 0.9;
}

/* ── ABOUT CTA ── */
.about-cta {
    background: var(--dark);
    padding: 7rem 5%;
    text-align: center;
}
.about-cta-content { max-width: 600px; margin: 0 auto; }
.about-cta-content .section-title {
    color: var(--white);
    margin: 0.85rem 0 1.25rem;
}
.about-cta-sub {
    color: rgba(255,255,255,0.5);
    font-size: 0.97rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

/* ── ABOUT RESPONSIVE ── */
@media (max-width: 960px) {
    .origin-grid { grid-template-columns: 1fr; gap: 3.5rem; }
    .origin-left { position: static; }
    .la-grid { grid-template-columns: 1fr; gap: 4rem; }
    .la-img-stack { height: 420px; }
    .craft-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
    .craft-item--large { grid-column: span 2; grid-row: span 1; }
    .craft-item--wide { grid-column: span 2; }
    .timeline::before { display: none; }
}
@media (max-width: 600px) {
    .about-hero { height: 60vh; }
    .timeline-item { grid-template-columns: 70px 16px 1fr; gap: 0 1rem; }
    .timeline-year { font-size: 0.65rem; }
    .craft-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .craft-item--large, .craft-item--wide { grid-column: span 1; grid-row: span 1; }
    .la-stats { grid-template-columns: 1fr; }
    .la-stat { text-align: left; }
    .la-stat + .la-stat { border-left: none; border-top: 1px solid rgba(0,0,0,0.08); padding-top: 1.5rem; }
    .la-img-stack { height: 360px; }
}
