@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* ── RESET & BASE ── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #F5EFE6;
    --text: #1C1814;
    --accent: #8B5E3C;
    --muted: #D4C5B0;
    --white: #FAF8F4;
    --display-font: 'Cormorant Garamond', serif;
    --body-font: 'Jost', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--body-font);
    font-weight: 300;
    line-height: 1.7;
}

/* ── NAVBAR ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 60px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.nav-logo {
    font-family: var(--display-font);
    font-size: 1.7rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.05em;
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    font-family: var(--body-font);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 1;
}

.nav-cta {
    border: 1px solid rgba(250, 248, 244, 0.6) !important;
    padding: 10px 24px !important;
    opacity: 1 !important;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background-color: var(--white) !important;
    color: var(--text) !important;
    opacity: 1 !important;
}

/* Scrolled state — index.html only, applied via JS */
.navbar-scrolled {
    background-color: var(--white);
    box-shadow: 0 1px 24px rgba(0, 0, 0, 0.07);
}
.navbar-scrolled .nav-logo { color: var(--text); text-shadow: none; }
.navbar-scrolled .nav-tagline { color: var(--text); opacity: 0.5; }
.navbar-scrolled .nav-links a { color: var(--text); }
.navbar-scrolled .nav-cta { border-color: var(--text) !important; color: var(--text) !important; }
.navbar-scrolled .nav-cta:hover { background-color: var(--text) !important; color: var(--white) !important; }
.navbar-scrolled .hamburger:not(.open) span { background-color: var(--text); }

/* ── HERO ── */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(20, 15, 10, 0.65) 0%,
        rgba(20, 15, 10, 0.2) 60%,
        rgba(20, 15, 10, 0.1) 100%
    );
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 220px;
    background: linear-gradient(to bottom, transparent, var(--bg));
    z-index: 2;
    pointer-events: none;
    opacity: var(--hero-fade, 0);
}

.scroll-hint {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--white);
    pointer-events: none;
    transition: opacity 0.4s ease;
    animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-hint svg { width: 28px; height: 28px; opacity: 0.65; }
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

.hero-content {
    position: absolute;
    bottom: 15%;
    left: 60px;
    z-index: 3;
    max-width: 600px;
}

.hero-tag {
    font-family: var(--body-font);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
}

.hero-content h1 {
    font-family: var(--display-font);
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 40px;
}

.hero-btn {
    display: inline-block;
    text-decoration: none;
    font-family: var(--body-font);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    border: 1px solid rgba(250, 248, 244, 0.6);
    padding: 14px 36px;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background-color: var(--white);
    color: var(--text);
}

.nav-tagline {
    font-family: var(--body-font);
    font-size: 0.80rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0.7;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

/* ── HAMBURGER MENU ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: 200;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background-color: var(--white);
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.navbar-light .hamburger span,
.hamburger-dark span {
    background-color: var(--text);
}

.hamburger.open span {
    background-color: var(--white);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--text);
    z-index: 150;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    text-decoration: none;
    font-family: var(--display-font);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
}

.mobile-menu a:hover {
    opacity: 0.6;
}

.mobile-menu-cta {
    border: 1px solid rgba(250, 248, 244, 0.5) !important;
    padding: 14px 40px !important;
    font-size: 0.85rem !important;
    font-family: var(--body-font) !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    margin-top: 20px;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
    .navbar {
        padding: 20px 24px;
    }

    .nav-logo {
        font-size: 1.1rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        left: 24px;
        right: 24px;
        bottom: 12%;
    }

    .hero-content h1 {
        font-size: clamp(2.8rem, 12vw, 4rem);
    }

    .nav-tagline {
        font-size: 0.55rem;
        letter-spacing: 0.1em;
    }

    .hero-btn {
        padding: 12px 24px;
    }
}

/* ── STORY SECTION ── */
.story {
    padding: 100px 60px;
    background-color: var(--bg);
}

.story-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.story-tag {
    font-family: var(--body-font);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 32px;
}

.story-quote {
    font-family: var(--body-font);
    font-size: 1.4rem;
    font-weight: 300;
    font-style: normal;
    line-height: 1.4;
    color: var(--text);
    border-left: 2px solid var(--accent);
    padding-left: 24px;
    margin-bottom: 32px;
}

.story-body {
    font-family: var(--body-font);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text);
    opacity: 0.7;
    margin-bottom: 20px;
}

.story-btn {
    display: inline-block;
    text-decoration: none;
    font-family: var(--body-font);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text);
    border: 1px solid var(--text);
    padding: 14px 36px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.story-btn:hover {
    background-color: var(--text);
    color: var(--white);
}

/* ── SERVICES SECTION ── */
.services {
    padding: 80px 60px 100px 60px;
    background-color: var(--bg);
}

.services-container {
    max-width: 1100px;
    margin: 0 auto;
}

.services-tag {
    font-family: var(--body-font);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.services-heading {
    font-family: var(--display-font);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--text);
    margin-bottom: 40px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.service-card {
    flex: 0 0 calc((100% - 80px) / 3);
    display: flex;
    flex-direction: column;
}

.service-img-wrap {
    width: 100%;
    height: 380px;
    overflow: hidden;
    margin-bottom: 20px;
}

.service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
}

.service-img-wrap img:hover {
    transform: scale(1.03);
}

.service-img-wrap img.img-zoom {
    transform: scale(1.15);
}
.service-img-wrap img.img-zoom:hover {
    transform: scale(1.18);
}

.service-card-content h3 {
    font-family: var(--display-font);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 8px;
}

.service-card-content p {
    font-family: var(--body-font);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text);
    opacity: 0.7;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-link {
    font-family: var(--body-font);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 2px;
    transition: opacity 0.3s ease;
    align-self: flex-start;
}

.service-link:hover {
    opacity: 0.7;
}

/* ── STATS SECTION ── */
.stats {
    padding: 100px 60px;
    background-color: var(--text);
}

.stats-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.stats-intro {
    flex: 0 0 320px;
}

.stats-intro-tag {
    font-family: var(--body-font);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
}

.stats-intro-heading {
    font-family: var(--display-font);
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.stats-intro-body {
    font-family: var(--body-font);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--white);
    opacity: 0.7;
    line-height: 1.8;
}

.stats-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 60px;
}

.stat-item {
    padding-top: 20px;
    border-top: 1px solid rgba(250, 248, 244, 0.15);
}

.stat-number {
    font-family: var(--display-font);
    font-size: clamp(2.8rem, 4vw, 4rem);
    font-weight: 300;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-family: var(--body-font);
    font-size: 0.78rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0.5;
    line-height: 1.6;
}

/* STORY MOBILE */
@media (max-width: 768px) {
    .story {
        padding: 80px 24px;
    }

    .story-container {
        flex-direction: column;
        gap: 40px;
    }

    .story-image img {
        height: 400px;
    }
}

/* STATS MOBILE */
@media (max-width: 768px) {
    .stats {
        padding: 80px 24px;
    }

    .stats-container {
        flex-direction: column;
        gap: 48px;
    }

    .stats-intro {
        flex: none;
    }

    .stats-intro-heading {
        font-size: 2rem;
    }

    .stats-grid {
        width: 100%;
        gap: 36px 40px;
    }
}

/* SERVICES MOBILE */
@media (max-width: 768px) {
    .services {
        padding: 80px 24px;
    }

    .services-heading {
        font-size: 2rem;
    }

    .service-card {
        flex: 0 0 100%;
    }
}

/* ── DOORS PAGE & INNER PAGES ── */
.navbar-light .nav-logo {
    color: var(--text);
    text-shadow: none;
}

.navbar-light .nav-tagline {
    color: var(--text);
    opacity: 0.5;
}

.nav-links-dark a {
    color: var(--text) !important;
}

.nav-cta-dark {
    border-color: var(--text) !important;
    color: var(--text) !important;
}

.nav-cta-dark:hover {
    background-color: var(--text) !important;
    color: var(--white) !important;
}

.page-hero {
    padding: 160px 60px 80px 60px;
    max-width: 700px;
}

.page-hero-tag {
    font-family: var(--body-font);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.page-hero-title {
    font-family: var(--display-font);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    color: var(--text);
    line-height: 1.1;
    margin-bottom: 20px;
}

.page-hero-sub {
    font-family: var(--body-font);
    font-size: 1rem;
    font-weight: 300;
    color: var(--text);
    opacity: 0.7;
    line-height: 1.8;
}

/* Image page hero — reusable across inner pages */
.page-hero-bg {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.page-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(20, 15, 10, 0.72) 0%,
        rgba(20, 15, 10, 0.2) 100%
    );
    z-index: 1;
}

.page-hero-bg-content {
    position: absolute;
    bottom: 15%;
    left: 60px;
    z-index: 2;
}

.page-hero-bg-content .page-hero-title {
    color: var(--white);
}

.page-hero-bg-content .page-hero-sub {
    color: var(--white);
    opacity: 0.8;
}

.door-section {
    padding: 80px 60px;
    border-top: 1px solid var(--muted);
}

.door-section-alt {
    background-color: var(--bg);
}

.door-section-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.door-section-reverse {
    flex-direction: row-reverse;
}

.door-section-text {
    flex: 1;
}

.door-section-images {
    flex: 1;
    display: flex;
    gap: 16px;
}

.door-section-images img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center top;
    flex: 1;
}

.door-tag {
    font-family: var(--body-font);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.door-section-text h2 {
    font-family: var(--display-font);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text);
    margin-bottom: 24px;
}

.door-section-text p {
    font-family: var(--body-font);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text);
    opacity: 0.7;
    line-height: 1.8;
    margin-bottom: 16px;
}

.wood-types {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0;
}

.wood-types span {
    font-family: var(--body-font);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--text);
    border: 1px solid var(--muted);
    padding: 6px 14px;
}

.door-btn {
    display: inline-block;
    text-decoration: none;
    font-family: var(--body-font);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text);
    border: 1px solid var(--text);
    padding: 14px 36px;
    margin-top: 12px;
    transition: all 0.3s ease;
}

.door-btn:hover {
    background-color: var(--text);
    color: var(--white);
}

.door-btn-light {
    color: var(--white);
    border-color: var(--white);
}

.door-btn-light:hover {
    background-color: var(--white);
    color: var(--text);
}

.page-cta {
    background-color: var(--text);
    padding: 100px 60px;
    text-align: center;
}

.page-cta h2 {
    font-family: var(--display-font);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 16px;
}

.page-cta p {
    font-family: var(--body-font);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--white);
    opacity: 0.7;
    margin-bottom: 40px;
}

/* ── FOOTER ── */
.footer {
    background-color: var(--bg);
    border-top: 1px solid var(--muted);
    padding: 60px 60px 40px 60px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--display-font);
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 8px;
}

.footer-tagline {
    font-family: var(--body-font);
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--accent);
    letter-spacing: 0.1em;
}

.footer-right p {
    font-family: var(--body-font);
    font-size: 1.0rem;
    font-weight: 300;
    color: var(--text);
    opacity: 0.7;
    line-height: 2;
}

.footer-right a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}
.footer-right a:hover { opacity: 1; }

.footer-minimal {
    text-align: center;
    padding: 48px 60px 32px 60px;
}
.footer-minimal .footer-logo { margin-bottom: 6px; }
.footer-minimal .footer-tagline { margin-bottom: 32px; }
.footer-minimal .footer-copy { border-top: 1px solid var(--muted); max-width: none; }

.footer-copy {
    font-family: var(--body-font);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text);
    opacity: 0.4;
    text-align: center;
    border-top: 1px solid var(--muted);
    padding-top: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

/* ── FIND US SECTION ── */
.find-us {
    background-color: var(--bg);
    border-top: 1px solid var(--muted);
    padding: 100px 60px;
}

.find-us-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.find-us-text {
    flex: 0 0 320px;
}

.find-us-tag {
    font-family: var(--body-font);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.find-us-heading {
    font-family: var(--display-font);
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--text);
    line-height: 1.15;
    margin-bottom: 32px;
}

.find-us-details p {
    font-family: var(--body-font);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text);
    opacity: 0.7;
    line-height: 2.2;
}

.find-us-details a {
    color: inherit;
    text-decoration: none;
}
.find-us-details a:hover { opacity: 1; }

.find-us-map {
    flex: 1;
}

.find-us-map iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

@media (max-width: 768px) {
    .find-us {
        padding: 80px 24px;
    }
    .find-us-container {
        flex-direction: column;
        gap: 40px;
    }
    .find-us-text { flex: none; }
    .find-us-map iframe { height: 280px; }
}

/* ── WHATSAPP ICON ── */
.wa-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 8px;
    fill: currentColor;
    display: inline-block;
}

/* ── ACTIVE NAV STATE (inner pages) ── */
.nav-links-dark .nav-active {
    opacity: 1 !important;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 2px;
}

/* INNER PAGES MOBILE */
@media (max-width: 768px) {
    .page-hero {
        padding: 120px 24px 60px 24px;
    }

    .page-hero-bg-content {
        left: 24px;
        right: 24px;
        bottom: 12%;
    }

    .door-section {
        padding: 60px 24px;
    }

    .door-section-container {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .door-section-reverse {
        flex-direction: column-reverse;
    }

    .door-section-images img {
        height: 300px;
    }

    .page-cta {
        padding: 80px 24px;
    }

    .footer {
        padding: 60px 24px 40px 24px;
    }

    .footer-container {
        flex-direction: column;
    }
}

.service-img-empty {
    background-color: var(--muted);
    opacity: 0.4;
}

/* ── FRAMES PAGE ── */

/* Side by side frames layout */
.frames-split {
    padding: 80px 60px;
    border-top: 1px solid var(--muted);
}

.frames-split-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 0;
    align-items: flex-start;
}

/* Each frame column */
.frames-col {
    flex: 1;
    padding: 0 40px;
}

.frames-col:first-child {
    padding-left: 0;
}

.frames-col:last-child {
    padding-right: 0;
}

/* Vertical divider between columns */
.frames-divider {
    width: 1px;
    background-color: var(--muted);
    align-self: stretch;
    flex-shrink: 0;
}

/* Frame column image */
.frames-col-img {
    width: 100%;
    height: 360px;
    overflow: hidden;
    margin-bottom: 32px;
}

.frames-col-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.frames-col-text h2 {
    font-family: var(--display-font);
    font-size: 2rem;
    font-weight: 300;
    color: var(--text);
    margin-bottom: 20px;
}

.frames-col-text p {
    font-family: var(--body-font);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text);
    opacity: 0.7;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Wood species horizontal list */
.wood-species-section {
    padding: 100px 60px;
    background-color: var(--bg);
    border-top: 1px solid var(--muted);
}

.wood-species-container {
    max-width: 1100px;
    margin: 0 auto;
}

.wood-species-intro {
    font-family: var(--body-font);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text);
    opacity: 0.7;
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 60px;
}

/* Horizontal wood list */
.wood-list {
    display: flex;
    flex-direction: column;
}

.wood-list-item {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    padding: 28px 0;
    border-bottom: 1px solid var(--muted);
}

.wood-list-item:first-child {
    border-top: 1px solid var(--muted);
}

.wood-list-left {
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 280px;
}

.wood-list-number {
    font-family: var(--body-font);
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--accent);
    letter-spacing: 0.1em;
}

.wood-list-left h3 {
    font-family: var(--display-font);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text);
}

.wood-list-item p {
    font-family: var(--body-font);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text);
    opacity: 0.7;
    line-height: 1.7;
    flex: 1;
}

/* Frames mobile */
@media (max-width: 768px) {
    .frames-split {
        padding: 60px 24px;
    }

    .frames-split-container {
        flex-direction: column;
        gap: 60px;
    }

    .frames-divider {
        display: none;
    }

    .frames-col {
        padding: 0;
    }

    .wood-species-section {
        padding: 80px 24px;
    }

    .wood-list-item {
        flex-direction: column;
        gap: 12px;
    }

    .wood-list-left {
        min-width: unset;
    }
}

/* ── CNC PAGE ── */

/* CNC hero with full image background */
.cnc-hero {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.cnc-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cnc-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(20, 15, 10, 0.7) 0%,
        rgba(20, 15, 10, 0.2) 100%
    );
    z-index: 1;
}

.cnc-hero-content {
    position: absolute;
    bottom: 15%;
    left: 60px;
    z-index: 2;
}

.cnc-hero-sub {
    font-family: var(--body-font);
    font-size: 1rem;
    font-weight: 300;
    color: var(--white);
    opacity: 0.8;
    letter-spacing: 0.05em;
    margin-top: 12px;
}

/* What we carve and process sections */
.cnc-works {
    padding: 100px 60px;
    border-top: 1px solid var(--muted);
}

.cnc-works-container {
    max-width: 1100px;
    margin: 0 auto;
}

.cnc-process {
    padding: 100px 60px;
    background-color: var(--text);
    border-top: 1px solid var(--muted);
}

.cnc-process-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Override heading colors for dark background */
.cnc-process .services-tag {
    color: var(--accent);
}

.cnc-process .services-heading {
    color: var(--white);
}

/* Process steps grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.process-step {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.process-number {
    font-family: var(--display-font);
    font-size: 3rem;
    font-weight: 300;
    color: var(--accent);
    line-height: 1;
}

.process-step h3 {
    font-family: var(--display-font);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--white);
}

.process-step p {
    font-family: var(--body-font);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--white);
    opacity: 0.6;
    line-height: 1.8;
}

/* CNC mobile */
@media (max-width: 768px) {
    .cnc-hero-content {
        left: 24px;
        right: 24px;
    }

    .cnc-works {
        padding: 80px 24px;
    }

    .cnc-process {
        padding: 80px 24px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}