/* ============================================
   wbcraftbrg - Artisan & Co. - Main Stylesheet
   ============================================ */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary:    #0A0A0A;
    --bg-secondary:  #1A1A1A;
    --bg-deep:       #050505;
    --text-primary:  #F5F5F5;
    --text-secondary:#B0B0B0;
    --gold:          #C6A43F;
    --gold-light:    #D6B454;
    --border:        #2A2A2A;
    --font-headline: 'Playfair Display', Georgia, serif;
    --font-body:     'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

img,
video {
    max-width: 100%;
    display: block;
}

::selection {
    background: var(--gold);
    color: #000;
}

/* ---------- Layout ---------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: 100px 0;
    position: relative;
}

.text-center {
    text-align: center;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-headline);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 24px;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 40px;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

p {
    color: var(--text-secondary);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 18px 36px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: #000;
}

.btn-full {
    width: 100%;
}

.btn-link {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 6px;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: var(--gold-light);
    border-bottom-color: var(--gold-light);
}

.btn-nav {
    border: 1px solid var(--gold);
    padding: 10px 20px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: var(--gold);
    color: #000;
}

/* ============================================
   SECTION 1 — NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.4s ease, padding 0.3s ease;
    padding: 22px 0;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 16px 0;
    box-shadow: 0 1px 0 var(--border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-headline);
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 3px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-links a {
    color: var(--text-primary);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    position: relative;
    padding: 6px 0;
}

.nav-links a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn-nav):hover {
    color: var(--gold);
}

.nav-links a:not(.btn-nav):hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
}

/* ============================================
   SECTION 2 — HERO
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(10,10,10,0.5) 0%,
        rgba(10,10,10,0.7) 50%,
        rgba(10,10,10,0.95) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 950px;
    padding: 0 20px;
    z-index: 1;
}

.hero-content h1 {
    color: var(--text-primary);
    text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

.hero-sub {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-primary);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-cue {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 42px;
    border: 1px solid var(--gold);
    border-radius: 14px;
    z-index: 2;
}

.scroll-cue span {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scrollAnim 1.8s infinite;
}

@keyframes scrollAnim {
    0%   { opacity: 0; transform: translate(-50%, 0); }
    40%  { opacity: 1; }
    100% { opacity: 0; transform: translate(-50%, 18px); }
}

/* ---------- Three Column Helper ---------- */
.three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ============================================
   SECTION 3 — TRUST BADGES
   ============================================ */
.trust {
    background: var(--bg-primary);
}

.trust-card {
    background: var(--bg-secondary);
    border: 1px solid var(--gold);
    padding: 40px 24px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.trust-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(198, 164, 63, 0.15);
}

.trust-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 24px;
    line-height: 1;
}

.trust-card h3 {
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.trust-card p {
    font-size: 0.95rem;
}

/* ============================================
   SECTION 4 — THE CRAFT
   ============================================ */
.craft {
    background: var(--bg-primary);
}

.craft-card {
    padding: 40px 30px;
    text-align: center;
    border: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.craft-card:hover {
    border-color: var(--border);
}

.craft-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 24px;
    line-height: 1;
}

.craft-card h3 {
    color: var(--text-primary);
    margin-bottom: 14px;
    font-size: 1.3rem;
}

.craft-card p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.verified-wrapper {
    text-align: center;
    margin-top: 60px;
}

.verified-badge {
    display: inline-block;
    padding: 16px 32px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 500;
}

.verified-badge i {
    margin-right: 10px;
    font-size: 14px;
}

/* ============================================
   SECTION 5 — FEATURED MODEL
   ============================================ */
.featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 640px;
    padding: 0;
}

.featured-image {
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.featured-content {
    padding: 80px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-secondary);
}

.gold-label {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 20px;
    display: inline-block;
}

.featured-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.1;
}

.featured-tagline {
    color: var(--gold);
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 36px;
    font-family: var(--font-headline);
    font-weight: 400;
}

.specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 30px;
    margin-bottom: 36px;
    padding: 30px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.spec strong {
    color: var(--gold);
    display: block;
    margin-bottom: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.spec {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-family: var(--font-headline);
}

.featured-desc {
    margin-bottom: 36px;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ============================================
   SECTION 6 — BUILD PROCESS TIMELINE
   ============================================ */
.process {
    background: var(--bg-primary);
}

.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 60px;
    padding: 0 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 50px;
    right: 50px;
    border-top: 2px dotted var(--gold);
    z-index: 0;
}

.timeline-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 12px;
}

.timeline-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--gold);
    font-family: var(--font-headline);
    font-size: 1.5rem;
    font-weight: 700;
}

.timeline-content h3 {
    color: var(--text-primary);
    font-size: 1.15rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.timeline-content p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   SECTION 7 — TESTIMONIALS
   ============================================ */
.testimonials {
    background: var(--bg-primary);
}

.testimonial-card {
    background: var(--bg-secondary);
    padding: 40px 30px;
    border: 1px solid var(--border);
    transition: border-color 0.3s ease, transform 0.3s ease;
    position: relative;
    height: 100%;
}

.testimonial-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.quote-mark {
    color: var(--gold);
    font-size: 1.6rem;
    margin-bottom: 20px;
    opacity: 0.7;
}

.testimonial-card .quote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.7;
    font-family: var(--font-headline);
    font-weight: 400;
}

.testimonial-card .author {
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* ============================================
   SECTION 8 — CONTACT FORM
   ============================================ */
.contact {
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.contact-info > p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    padding: 14px 0;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.checklist li:last-child {
    border-bottom: none;
}

.checklist i {
    color: var(--gold);
    margin-right: 14px;
    font-size: 1rem;
    width: 18px;
}

.contact-form {
    background: var(--bg-primary);
    padding: 40px;
    border: 1px solid var(--border);
}

.form-message {
    padding: 16px 20px;
    margin-bottom: 24px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-success {
    background: rgba(198, 164, 63, 0.08);
    border: 1px solid var(--gold);
    color: var(--gold-light);
}

.form-error {
    background: rgba(255, 70, 70, 0.06);
    border: 1px solid #ff4646;
    color: #ff7777;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C6A43F' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 44px;
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
}

.form-note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* ============================================
   SECTION 9 — FOOTER
   ============================================ */
.footer {
    background: var(--bg-deep);
    padding: 80px 0 0;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: var(--font-headline);
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.footer-col p {
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.7;
}

.footer-col h4 {
    color: var(--text-primary);
    margin-bottom: 22px;
    font-size: 1.05rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-col p i {
    color: var(--gold);
    margin-right: 10px;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 28px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.82rem;
    letter-spacing: 1px;
}

/* ============================================
   RESPONSIVE — 768px BREAKPOINT
   ============================================ */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    section {
        padding: 70px 0;
    }

    /* Nav mobile */
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 30px 24px;
        gap: 22px;
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        border-bottom: 1px solid var(--border);
        align-items: flex-start;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .menu-toggle {
        display: block;
    }

    .nav-links a {
        font-size: 14px;
    }

    /* Hero */
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        padding: 16px 24px;
    }

    /* All multi-col become single */
    .three-col {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Featured */
    .featured {
        grid-template-columns: 1fr;
    }

    .featured-content {
        padding: 60px 24px;
    }

    .specs {
        grid-template-columns: 1fr 1fr;
    }

    /* Timeline vertical */
    .timeline {
        flex-direction: column;
        padding: 0 10px;
    }

    .timeline::before {
        top: 30px;
        bottom: 30px;
        left: 30px;
        right: auto;
        width: 0;
        height: auto;
        border-top: none;
        border-left: 2px dotted var(--gold);
    }

    .timeline-step {
        display: flex;
        text-align: left;
        margin-bottom: 36px;
        align-items: flex-start;
    }

    .timeline-step:last-child {
        margin-bottom: 0;
    }

    .timeline-circle {
        margin: 0 22px 0 0;
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .timeline-content {
        flex: 1;
        padding-top: 8px;
    }

    .timeline-content h3,
    .timeline-content p {
        text-align: left;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-info .section-title {
        text-align: center;
    }

    .contact-form {
        padding: 30px 24px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-col ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .specs {
        grid-template-columns: 1fr;
    }

    .featured-content {
        padding: 50px 20px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }
}
