/* ═══════════════════════════════════════════════════════════
   DIGGERS CLUB RECORDS — CONSIGNMENT SERVICE
   Shared Stylesheet
═══════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; }

:root {
    --navy:       #0d1117;
    --dark:       #161b22;
    --gold:       #c9a84c;
    --gold-light: #e8c97e;
    --cream:      #f5f0e8;
    --white:      #ffffff;
    --muted:      #8b949e;
    --border:     rgba(201, 168, 76, 0.2);
    --text:       #cdd5e0;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--navy);
    color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Inter', serif; line-height: 1.2; }

/* ── HEADER ── */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(13, 17, 23, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    transition: box-shadow 0.3s;
}

.logo-wrap { display: flex; flex-direction: row; align-items: center; gap: 16px; text-decoration: none; }
.logo-img {
    height: 120px;
    width: auto;
    display: block;
    align-self: flex-start;
}
.logo-sub {
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--muted); font-weight: 400;
}

nav { display: flex; gap: 24px; align-items: center; }

/* ── HAMBURGER ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── MOBILE NAV OVERLAY ── */
.mobile-nav {
    display: none;
    position: fixed;
    top: 100px;
    left: 0; right: 0;
    background: rgba(13, 17, 23, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    z-index: 99;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
    text-decoration: none;
    color: var(--cream);
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 400;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
    display: block;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--gold); }
.mobile-nav .nav-cta {
    background: var(--gold) !important;
    color: var(--navy) !important;
    font-weight: 700;
    text-align: center;
    margin: 16px 24px 24px;
    padding: 16px;
    border-bottom: none;
}
nav a {
    text-decoration: none; color: var(--cream);
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    font-weight: 400; transition: color 0.2s; white-space: nowrap;
}
nav a:hover { color: var(--gold); }
nav a.active { color: var(--gold); }
.nav-cta {
    background: var(--gold); color: var(--navy) !important;
    padding: 9px 22px; font-weight: 600 !important;
    transition: background 0.2s !important; white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* ── BUTTONS ── */
.btn-primary {
    background: var(--gold); color: var(--navy);
    padding: 15px 38px; font-weight: 600; font-size: 12px;
    letter-spacing: 0.09em; text-transform: uppercase;
    text-decoration: none; transition: all 0.2s; display: inline-block; border: none; cursor: pointer;
    font-family: 'Inter', sans-serif;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-ghost {
    border: 1px solid var(--gold); color: var(--gold);
    padding: 15px 38px; font-weight: 500; font-size: 12px;
    letter-spacing: 0.09em; text-transform: uppercase;
    text-decoration: none; transition: all 0.2s; display: inline-block;
}
.btn-ghost:hover { background: rgba(201,168,76,0.1); }

/* ── HOME HERO ── */
.hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    padding: 130px 40px 100px;
    position: relative; overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.07) 0%, transparent 70%);
    pointer-events: none;
}
.hero-eyebrow {
    display: inline-block;
    font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
    color: var(--gold); font-weight: 600; margin-bottom: 28px;
}
.hero h1 {
    font-size: clamp(40px, 6.5vw, 84px);
    font-weight: 700; color: var(--white);
    margin-bottom: 28px; max-width: 900px;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
    font-size: 18px; color: var(--muted);
    max-width: 560px; margin: 0 auto 52px;
    font-weight: 300; line-height: 1.75;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.scroll-indicator {
    position: absolute; bottom: 48px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    color: var(--muted); font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase;
}
.scroll-line { width: 1px; height: 44px; background: linear-gradient(to bottom, var(--gold), transparent); }

/* ── PAGE HERO (interior pages) ── */
.page-hero {
    min-height: 50vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    padding: 148px 48px 88px;
    position: relative; overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 60%, rgba(201,168,76,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.page-hero-inner { max-width: 820px; }
.page-hero h1 {
    font-size: clamp(36px, 5.5vw, 72px);
    font-weight: 700; color: var(--white); margin-bottom: 20px;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero-sub {
    font-size: 18px; color: var(--muted);
    max-width: 600px; margin: 24px auto 0;
    font-weight: 300; line-height: 1.75;
}

/* ── TICKER ── */
.ticker {
    background: var(--dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 14px 48px; text-align: center;
}
.ticker span {
    font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold); font-weight: 600;
}
.ticker span::before { content: '— '; }
.ticker span::after { content: ' —'; }

/* ── SECTION UTILITIES ── */
.section-label {
    display: block; font-size: 10px;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold); font-weight: 600; margin-bottom: 18px;
}
.section-title { font-size: clamp(28px, 4vw, 48px); font-weight: 700; color: var(--white); margin-bottom: 20px; }
.section-desc { font-size: 16px; color: var(--muted); max-width: 640px; line-height: 1.85; }

.divider { height: 1px; background: var(--border); }

/* ── PAGE SECTION WRAPPERS ── */
.wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 96px 48px;
}
.wrap-dark {
    background: var(--dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.wrap-narrow { max-width: 800px; }

/* ── PROSE / BODY TEXT ── */
.prose p {
    font-size: 17px; line-height: 1.88;
    color: var(--text); margin-bottom: 26px; max-width: 740px;
}
.prose p:first-of-type::first-letter {
    font-family: 'Inter', serif;
    font-size: 76px; font-weight: 700; color: var(--gold);
    float: left; line-height: 0.84; margin: 8px 14px 0 0;
}
.prose-center p { max-width: 100%; }

/* ── TWO-COL TEXT ── */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px; margin-top: 56px;
}
.two-col p { font-size: 16px; color: var(--text); line-height: 1.85; margin-bottom: 18px; }

/* ── PULL QUOTE ── */
.pull-quote {
    font-family: 'Inter', serif;
    font-style: italic; font-size: 22px; color: var(--gold);
    line-height: 1.5; padding: 36px 0;
    border-top: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
    margin: 52px 0;
}
.pull-quote cite {
    display: block; margin-top: 14px;
    font-size: 13px; font-style: normal;
    color: var(--muted); letter-spacing: 0.05em;
}

/* ── VALUE / PILLAR CARDS ── */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px; margin-top: 48px;
}
.value-card { background: var(--dark); border: 1px solid var(--border); padding: 44px 36px; }
.value-num {
    font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gold); font-weight: 600; margin-bottom: 20px;
}
.value-title {
    font-family: 'Inter', serif;
    font-size: 22px; color: var(--white); margin-bottom: 16px;
}
.value-desc { font-size: 14px; color: var(--muted); line-height: 1.8; }

/* ── SERVICE CARDS ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px; margin-top: 48px;
}
.service-card { background: var(--dark); border: 1px solid var(--border); padding: 44px 36px; }
.service-tag {
    font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--gold); font-weight: 600; margin-bottom: 24px; display: block;
}
.service-title {
    font-family: 'Inter', serif;
    font-size: 22px; color: var(--white); margin-bottom: 16px; line-height: 1.25;
}
.service-desc { font-size: 14px; color: var(--muted); line-height: 1.78; }

/* ── PROCESS STEPS (expanded) ── */
.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px; margin-top: 48px;
}
.process-card { background: var(--dark); border: 1px solid var(--border); padding: 52px 44px; }
.process-num {
    font-family: 'Inter', serif;
    font-size: 56px; font-weight: 700;
    color: rgba(201,168,76,0.18); line-height: 1; margin-bottom: 28px;
}
.process-title {
    font-family: 'Inter', serif;
    font-size: 22px; color: var(--white); margin-bottom: 16px;
}
.process-desc { font-size: 15px; color: var(--muted); line-height: 1.82; }

/* ── ACCEPT LIST ── */
.accept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px; margin-top: 32px;
}
.accept-item {
    background: var(--dark); border: 1px solid var(--border);
    padding: 22px 26px;
    display: flex; align-items: flex-start; gap: 14px;
    font-size: 14px; color: var(--text); line-height: 1.6;
}
.accept-dot {
    width: 6px; height: 6px; background: var(--gold); border-radius: 50%;
    flex-shrink: 0; margin-top: 6px;
}
.accept-item strong { display: block; color: var(--white); font-weight: 600; margin-bottom: 3px; }

/* ── TESTIMONIAL CARDS ── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2px; margin-top: 48px;
}
.testimonial-card {
    background: var(--dark); border: 1px solid var(--border);
    padding: 44px 40px; position: relative;
}
.testimonial-card::before {
    content: '\201C';
    font-family: 'Inter', serif;
    font-size: 140px; color: rgba(201,168,76,0.07);
    position: absolute; top: 16px; left: 24px; line-height: 1;
}
.testimonial-text {
    font-family: 'Inter', serif;
    font-style: italic; font-size: 17px; color: var(--cream);
    line-height: 1.72; margin-bottom: 32px; position: relative; z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.t-avatar {
    width: 46px; height: 46px; border-radius: 50%;
    background: rgba(201,168,76,0.1); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Inter', serif;
    font-size: 16px; color: var(--gold); font-weight: 700; flex-shrink: 0;
}
.t-name { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.t-detail { font-size: 11px; color: var(--muted); letter-spacing: 0.04em; }

/* ── FEATURED TESTIMONIAL ── */
.featured-testimonial {
    background: var(--dark); border: 1px solid var(--border);
    padding: 60px 72px; margin-bottom: 4px; position: relative;
}
.featured-testimonial::before {
    content: '\201C';
    font-family: 'Inter', serif;
    font-size: 200px; color: rgba(201,168,76,0.05);
    position: absolute; top: 20px; left: 44px; line-height: 1;
}
.featured-testimonial .testimonial-text {
    font-size: 22px; max-width: 840px; position: relative; z-index: 1;
}
.featured-label {
    display: inline-block;
    font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold); font-weight: 600;
    padding: 6px 16px; border: 1px solid var(--border); margin-bottom: 28px;
}

/* ── PROJECT CARDS ── */
.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px; margin-top: 48px;
}
.project-card {
    background: var(--dark); border: 1px solid var(--border);
    overflow: hidden;
}
.project-img {
    width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block;
    transition: transform 0.4s ease;
}
.project-card:hover .project-img { transform: scale(1.03); }
.project-img-ph {
    width: 100%; aspect-ratio: 16/10;
    background: rgba(201,168,76,0.04); border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--muted); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
}
.project-body { padding: 36px; }
.project-status {
    font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold); font-weight: 600; margin-bottom: 14px;
}
.project-title {
    font-family: 'Inter', serif;
    font-size: 24px; color: var(--white); margin-bottom: 14px; line-height: 1.2;
}
.project-desc { font-size: 14px; color: var(--muted); line-height: 1.72; margin-bottom: 28px; }
.project-link {
    display: inline-block; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--gold); text-decoration: none; font-weight: 600;
    border-bottom: 1px solid rgba(201,168,76,0.3); padding-bottom: 3px;
    transition: border-color 0.2s;
}
.project-link:hover { border-color: var(--gold); }

/* ── FEATURED PROJECT (full-width split) ── */
.project-featured {
    background: var(--dark); border: 1px solid var(--border);
    display: grid; grid-template-columns: 1fr 1fr;
    margin-top: 48px; overflow: hidden;
}
.project-featured-img {
    width: 100%; height: 100%; min-height: 380px; object-fit: cover; display: block;
}
.gallery-grid-4 {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 32px;
}
.gallery-grid-4 img { width: 100%; aspect-ratio: 3/2; object-fit: cover; cursor: pointer; height: auto; }
.project-featured-ph {
    width: 100%; min-height: 380px;
    background: rgba(201,168,76,0.04); border-right: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--muted); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
}
.project-featured-body {
    padding: 60px 52px;
    display: flex; flex-direction: column; justify-content: center;
}
.project-featured-body .project-title { font-size: 30px; margin-bottom: 16px; }
.project-featured-body .project-desc { font-size: 15px; margin-bottom: 32px; }

/* ── HOW IT WORKS (home — 4 column) ── */
.hiw { background: var(--dark); }
.hiw .wrap { border: none; }
.steps-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 64px; }
.step-cell { background: var(--dark); padding: 52px 36px; }
.step-n {
    font-family: 'Inter', serif;
    font-size: 52px; font-weight: 700;
    color: rgba(201,168,76,0.2); line-height: 1; margin-bottom: 28px;
}
.step-t { font-family: 'Inter', serif; font-size: 20px; color: var(--white); margin-bottom: 14px; }
.step-d { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ── STATS GRID ── */
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.stat { background: var(--dark); border: 1px solid var(--border); padding: 40px 32px; text-align: center; }
.stat-n { font-family: 'Inter', serif; font-size: 44px; font-weight: 700; color: var(--gold); display: block; margin-bottom: 10px; }
.stat-l { font-size: 11px; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; }

/* ── CTA BANNER ── */
.cta-banner {
    background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    text-align: center; padding: 88px 48px;
}
.cta-banner h2 { font-size: clamp(28px, 4vw, 52px); color: var(--white); margin-bottom: 20px; }
.cta-banner p { font-size: 16px; color: var(--muted); max-width: 520px; margin: 0 auto 44px; line-height: 1.78; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT FORM ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info h2 { font-size: clamp(26px, 3.5vw, 42px); color: var(--white); margin-bottom: 24px; }
.contact-info p { font-size: 15px; color: var(--muted); line-height: 1.82; margin-bottom: 18px; }
.c-details { list-style: none; margin-top: 36px; display: flex; flex-direction: column; gap: 16px; }
.c-details li { display: flex; gap: 16px; font-size: 14px; color: var(--cream); }
.c-label { color: var(--gold); font-weight: 600; width: 76px; flex-shrink: 0; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.f-group { display: flex; flex-direction: column; gap: 8px; }
.f-group label {
    font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--muted); font-weight: 500;
}
.f-group input, .f-group select, .f-group textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    color: var(--cream); padding: 14px 16px;
    font-family: 'Inter', sans-serif; font-size: 14px;
    outline: none; transition: border-color 0.2s; width: 100%;
}
.f-group input:focus, .f-group select:focus, .f-group textarea:focus { border-color: var(--gold); }
.f-group select option { background: var(--dark); }
.f-group textarea { resize: vertical; min-height: 120px; }
.f-submit {
    background: var(--gold); color: var(--navy);
    border: none; padding: 17px 44px;
    font-weight: 700; font-size: 12px;
    letter-spacing: 0.12em; text-transform: uppercase;
    cursor: pointer; font-family: 'Inter', sans-serif;
    transition: background 0.2s; align-self: flex-start;
}
.f-submit:hover { background: var(--gold-light); }

/* ── INDEX ARTICLE STYLES ── */
.article-wrapper { max-width: 1120px; margin: 0 auto; padding: 88px 48px; }
.article-header { text-align: center; margin-bottom: 64px; padding-bottom: 64px; border-bottom: 1px solid var(--border); }
.article-tag {
    display: inline-block; font-size: 9px; letter-spacing: 0.32em; text-transform: uppercase;
    color: var(--gold); font-weight: 600; padding: 7px 18px;
    border: 1px solid var(--border); margin-bottom: 28px;
}
.article-title { font-size: clamp(30px, 5.5vw, 64px); font-weight: 700; color: var(--white); margin-bottom: 20px; line-height: 1.08; }
.article-deck {
    font-family: 'Inter', serif; font-style: italic;
    font-size: clamp(17px, 2.4vw, 24px);
    color: var(--gold); margin-bottom: 36px; line-height: 1.45;
}
.article-meta { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; font-size: 11px; color: var(--muted); letter-spacing: 0.06em; }
.meta-dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }
.hero-img-wrap { width: 100%; margin-bottom: 20px; overflow: hidden; background: var(--dark); }
.hero-img-wrap img { width: 100%; display: block; aspect-ratio: 16/9; object-fit: cover; }
.img-placeholder { width: 100%; aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; }
.caption { font-size: 12px; color: var(--muted); text-align: center; font-style: italic; margin-bottom: 72px; padding: 0 48px; }
.article-body { display: grid; grid-template-columns: 1fr 360px; gap: 88px; margin-bottom: 88px; }
.article-text p { font-size: 17px; line-height: 1.88; color: var(--text); margin-bottom: 26px; }
.article-text p:first-of-type::first-letter { font-family: 'Inter', serif; font-size: 78px; font-weight: 700; color: var(--gold); float: left; line-height: 0.82; margin: 10px 14px 0 0; }
.gallery-block { margin: 56px 0; }
.gallery-label { display: block; font-size: 9px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
.g-grid { display: grid; gap: 4px; }
.g-2 { grid-template-columns: 1fr 1fr; }
.g-3 { grid-template-columns: 1fr 1fr 1fr; }
.g-item { position: relative; overflow: hidden; cursor: zoom-in; background: var(--dark); }
.g-item img { width: 100%; display: block; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.4s ease; }
.g-item:hover img { transform: scale(1.04); }
.g-ph { width: 100%; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 11px; border: 1px solid var(--border); }
.prov-box { margin: 64px 0; padding: 44px; background: var(--dark); border: 1px solid var(--border); }
.prov-title { font-family: 'Inter', serif; font-size: 22px; color: var(--white); margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.prov-table { width: 100%; border-collapse: collapse; }
.prov-table tr { border-bottom: 1px solid rgba(201,168,76,0.1); }
.prov-table tr:last-child { border-bottom: none; }
.prov-table td { padding: 14px 8px; font-size: 14px; vertical-align: top; line-height: 1.6; }
.prov-table td:first-child { color: var(--gold); font-weight: 600; width: 110px; font-family: 'Inter', serif; font-size: 15px; }
.prov-table td:last-child { color: var(--text); }
.lot-heading { font-family: 'Inter', serif; font-size: 26px; color: var(--white); margin-bottom: 8px; margin-top: 64px; }
.lot-sub { font-size: 13px; color: var(--muted); margin-bottom: 36px; line-height: 1.6; }
.items-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 2px; }
.item-card { background: var(--dark); padding: 28px; border: 1px solid var(--border); }
.item-num { font-size: 10px; color: var(--gold); font-weight: 600; letter-spacing: 0.12em; margin-bottom: 10px; }
.item-name { font-family: 'Inter', serif; font-size: 15px; color: var(--white); margin-bottom: 10px; line-height: 1.35; }
.item-desc { font-size: 12px; color: var(--muted); line-height: 1.65; }
.sidebar-card { background: var(--dark); border: 1px solid var(--border); padding: 36px; margin-bottom: 24px; }
.sidebar-card.sticky { position: sticky; top: 92px; }
.sidebar-title { font-family: 'Inter', serif; font-size: 18px; color: var(--white); margin-bottom: 24px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.lot-list { list-style: none; }
.lot-list li { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; padding: 11px 0; border-bottom: 1px solid rgba(201,168,76,0.08); font-size: 13px; }
.lot-list li:last-child { border-bottom: none; }
.ll-label { color: var(--muted); flex-shrink: 0; }
.ll-val { color: var(--cream); font-weight: 500; text-align: right; }
.ll-val.gold { color: var(--gold); }
.enquire-btn { display: block; width: 100%; background: var(--gold); color: var(--navy); text-align: center; padding: 17px; font-weight: 700; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; margin-top: 28px; transition: background 0.2s; }
.enquire-btn:hover { background: var(--gold-light); }
.sidebar-body { font-size: 13px; color: var(--muted); line-height: 1.75; }
.sidebar-body + .sidebar-body { margin-top: 14px; }

/* ── WHY SECTION (home) ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 64px; }
.why-text h2 { font-size: clamp(26px, 3.5vw, 42px); color: var(--white); margin-bottom: 24px; }
.why-text p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 18px; }

/* ── FOOTER ── */
footer { background: var(--navy); border-top: 1px solid var(--border); padding: 72px 48px 44px; }
.footer-inner { max-width: 1120px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 64px; padding-bottom: 64px; border-bottom: 1px solid var(--border); }
.footer-brand-name { font-family: 'Inter', serif; font-size: 20px; font-weight: 700; color: var(--gold); letter-spacing: 0.1em; }
.footer-brand-sub { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-top: 5px; }
.footer-links { display: flex; gap: 64px; }
.footer-col h4 { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a { text-decoration: none; color: var(--muted); font-size: 13px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--cream); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--muted); }

/* ── LIGHTBOX ── */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.96); z-index: 1000; align-items: center; justify-content: center; padding: 40px; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lb-close { position: absolute; top: 24px; right: 28px; color: var(--cream); font-size: 36px; cursor: pointer; background: none; border: none; line-height: 1; opacity: 0.7; transition: opacity 0.2s; }
.lb-close:hover { opacity: 1; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
    header { padding: 0 24px; }
    nav { display: none; }
    .hamburger { display: flex; }
    .wrap { padding: 72px 24px; }
    .article-wrapper { padding: 64px 24px; }
    .article-body { grid-template-columns: 1fr; gap: 48px; }
    .article-sidebar { order: -1; }
    .sidebar-card.sticky { position: static; }
    .steps-4 { grid-template-columns: 1fr 1fr; }
    .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .g-3 { grid-template-columns: 1fr 1fr; }
    .two-col, .services-grid, .values-grid, .process-grid { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: 1fr; }
    .project-featured { grid-template-columns: 1fr; }
    .project-featured-img { height: auto; min-height: 0; aspect-ratio: 16/10; }
    .featured-testimonial { padding: 40px 32px; }
    .featured-testimonial .testimonial-text { font-size: 18px; }
    .accept-grid { grid-template-columns: 1fr; }
    .gallery-grid-4 { grid-template-columns: 1fr 1fr; }
    footer { padding: 64px 24px 40px; }
    .footer-top { flex-direction: column; gap: 48px; }
}
@media (max-width: 580px) {
    .steps-4 { grid-template-columns: 1fr; }
    .g-2, .g-3 { grid-template-columns: 1fr; }
    .f-row { grid-template-columns: 1fr; }
    .footer-links { flex-direction: column; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .stats { grid-template-columns: 1fr; }
    .cta-banner { padding: 64px 24px; }
    .page-hero { padding: 130px 24px 72px; }
    .gallery-grid-4 { grid-template-columns: 1fr 1fr; }
}
