@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --tan:    #a07850;
    --tand:   #7a5c38;
    --espresso: #3d2f24;
    --dark:   #1a1d2e;
    --bg:     #f5f3ef;
    --paper:  #faf8f3;
    --card:   #ffffff;
    --text:   #1a1d2e;
    --body:   #374151;
    --muted:  #6b7280;
    --border: #e4ddd4;
    --green:  #1a8a66;
    --red:    #e24b4a;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
}

a { color: var(--tan); text-decoration: none; transition: color .15s; }
a:hover { color: var(--tand); }

img { max-width: 100%; height: auto; display: block; }

/* ── Header ────────────────────────────────────────────────────────────── */
.site-hd {
    background: var(--dark);
    color: #fff;
    border: 2px solid var(--espresso);
    border-bottom: 3px solid var(--tan);
    box-shadow: inset 0 -1px 0 var(--espresso);
    flex-shrink: 0;
}
.site-hd-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.site-hd-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #fff;
}
.site-hd-brand img {
    height: 50px;
    width: auto;
}
.site-hd-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
    line-height: 1;
}
.site-hd-name .accent { color: var(--tan); }
.site-hd-tag {
    font-size: 11px;
    color: rgba(255,255,255,.55);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 4px;
}
.site-hd-cta {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}
.site-hd-phone {
    color: rgba(255,255,255,.85);
    font-size: 14px;
    font-weight: 700;
}
.site-hd-cta-btn {
    background: var(--tan);
    color: #fff !important;
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    border: 1.5px solid var(--espresso);
    transition: background .15s, transform .1s;
}
.site-hd-cta-btn:hover { background: var(--tand); color: #fff !important; }
.site-hd-cta-btn:active { transform: translateY(1px); }

/* ── Nav ───────────────────────────────────────────────────────────────── */
.site-nav {
    background: var(--paper);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.site-nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 0;
    flex-wrap: wrap;
}
.site-nav a {
    padding: 14px 18px;
    color: var(--body);
    font-size: 14px;
    font-weight: 600;
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
    transition: color .15s, border-color .15s;
}
.site-nav a:hover { color: var(--tan); }
.site-nav a.active {
    color: var(--tan);
    border-bottom-color: var(--tan);
}

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero {
    background: var(--dark);
    color: #fff;
    padding: 64px 32px 72px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    border: 2px solid var(--espresso);
    margin: 24px auto;
    max-width: 1132px;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 120%, rgba(160,120,80,.28) 0%, transparent 70%);
    pointer-events: none;
}
.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 6vw, 64px);
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 14px;
    font-weight: 400;
    position: relative;
}
.hero h1 .accent { color: var(--tan); }
.hero p.lead {
    font-size: 17px;
    color: rgba(255,255,255,.75);
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    line-height: 1.6;
}
.hero-actions {
    margin-top: 28px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* Compact hero for inner pages */
.hero.compact { padding: 44px 32px 50px; }
.hero.compact h1 { font-size: clamp(32px, 5vw, 48px); }

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn {
    display: inline-block;
    background: var(--tan);
    color: #fff;
    padding: 12px 26px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    border: 1.5px solid var(--espresso);
    cursor: pointer;
    transition: background .15s, transform .1s;
    text-decoration: none;
    text-align: center;
    font-family: inherit;
}
.btn:hover { background: var(--tand); color: #fff; }
.btn:active { transform: translateY(1px); }
.btn-outline {
    background: rgba(255,255,255,.08);
    color: #fff;
    border-color: rgba(255,255,255,.4);
}
.btn-outline:hover { background: rgba(255,255,255,.18); color: #fff; }
.btn-green { background: var(--green); }
.btn-green:hover { background: #146b50; color: #fff; }

/* ── Page sections ─────────────────────────────────────────────────────── */
main {
    flex: 1;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 48px 0;
}
.section + .section { border-top: 1px solid var(--border); }

.section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 8px;
    font-weight: 400;
}
.section h2 .accent { color: var(--tan); }
.section .section-sub {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 32px;
    letter-spacing: .3px;
}

.prose {
    color: var(--body);
    font-size: 16px;
    line-height: 1.75;
    max-width: 760px;
}
.prose p { margin-bottom: 1.1em; }
.prose h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 1.5px;
    color: var(--text);
    margin: 1.6em 0 .5em;
    font-weight: 400;
}
.prose ul, .prose ol { margin: 1em 0 1.4em 1.4em; }
.prose li { margin-bottom: .5em; }
.prose strong { color: var(--text); }

/* ── Card grids ────────────────────────────────────────────────────────── */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 24px 0;
}
.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 26px;
    text-align: center;
    transition: transform .15s, box-shadow .15s, border-color .15s;
}
.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(26,29,46,.10);
    border-color: var(--tan);
}
.feature-card .feature-img {
    height: 180px;
    border-radius: 10px;
    background: var(--bg);
    margin-bottom: 18px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 13px;
}
.feature-card .feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.feature-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    font-weight: 400;
}
.feature-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

/* ── Testimonial cards ─────────────────────────────────────────────────── */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 22px;
    margin: 24px 0;
}
.testimonial {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--tan);
    border-radius: 10px;
    padding: 26px;
}
.testimonial-text {
    font-style: italic;
    color: var(--body);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 15px;
}
.testimonial-author {
    font-weight: 700;
    color: var(--text);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .8px;
}

/* ── FAQ ───────────────────────────────────────────────────────────────── */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-q {
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    color: var(--text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: background .12s;
    user-select: none;
}
.faq-q:hover { background: var(--paper); }
.faq-q::after {
    content: '+';
    font-size: 22px;
    color: var(--tan);
    transition: transform .2s;
    font-weight: 400;
    line-height: 1;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s, padding .25s;
    color: var(--body);
    line-height: 1.7;
    font-size: 14.5px;
}
.faq-item.open .faq-a {
    padding: 0 22px 20px;
    max-height: 1500px;
}
.faq-a p { margin-bottom: .8em; }
.faq-a ul { margin: .6em 0 .8em 1.3em; }
.faq-a li { margin-bottom: .35em; }

/* ── Process steps ─────────────────────────────────────────────────────── */
.steps-list {
    list-style: none;
    counter-reset: step;
    max-width: 820px;
    margin: 0 auto;
}
.steps-list li {
    counter-increment: step;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px 22px 20px 72px;
    margin-bottom: 12px;
    position: relative;
    color: var(--body);
    line-height: 1.7;
}
.steps-list li::before {
    content: counter(step);
    position: absolute;
    top: 18px;
    left: 18px;
    width: 36px;
    height: 36px;
    background: var(--tan);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    border: 1.5px solid var(--espresso);
}

/* ── Shop / Product grid ───────────────────────────────────────────────── */
.shop-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}
.shop-meta .count {
    font-size: 13px;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .8px;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
}
.product-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .15s, box-shadow .15s, border-color .15s;
}
.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(26,29,46,.10);
    border-color: var(--tan);
}
.product-img {
    aspect-ratio: 1 / 1;
    background: var(--paper);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--muted);
    font-size: 13px;
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-info { padding: 16px 18px; flex: 1; display: flex; flex-direction: column; }
.product-name {
    font-weight: 700;
    color: var(--text);
    font-size: 15px;
    margin-bottom: 4px;
    line-height: 1.3;
}
.product-cond {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .8px;
    font-weight: 600;
    margin-bottom: 10px;
}
.product-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 1px;
    color: var(--tan);
    margin: 4px 0 14px;
}
.product-actions { margin-top: auto; }
.product-actions a {
    display: block;
    text-align: center;
    background: var(--tan);
    color: #fff !important;
    padding: 10px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    border: 1.5px solid var(--espresso);
}
.product-actions a:hover { background: var(--tand); }

/* ── Brands logo wall ──────────────────────────────────────────────────── */
.brand-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 14px;
    margin: 24px 0;
}
.brand-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px 14px;
    text-align: center;
    font-weight: 700;
    color: var(--body);
    font-size: 14px;
    transition: border-color .15s, transform .15s;
}
.brand-item:hover {
    border-color: var(--tan);
    color: var(--tan);
    transform: translateY(-2px);
}

/* ── Contact ───────────────────────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    max-width: 900px;
    margin: 0 auto;
}
.contact-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px 28px;
    text-align: center;
}
.contact-card .icon {
    font-size: 36px;
    margin-bottom: 14px;
}
.contact-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    font-weight: 400;
}
.contact-card p, .contact-card a {
    color: var(--body);
    font-size: 15px;
    line-height: 1.6;
}

/* ── About layout ──────────────────────────────────────────────────────── */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 36px;
    align-items: start;
}
.about-photo {
    aspect-ratio: 1 / 1;
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 13px;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 700px) {
    .about-layout { grid-template-columns: 1fr; }
}

/* ── Inline CTA strip ──────────────────────────────────────────────────── */
.cta-strip {
    background: var(--dark);
    color: #fff;
    border: 2px solid var(--espresso);
    border-radius: 14px;
    padding: 36px 28px;
    text-align: center;
    margin: 36px 0;
    position: relative;
    overflow: hidden;
}
.cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 120%, rgba(160,120,80,.28) 0%, transparent 70%);
    pointer-events: none;
}
.cta-strip h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 30px;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-weight: 400;
    position: relative;
}
.cta-strip h3 .accent { color: var(--tan); }
.cta-strip p {
    color: rgba(255,255,255,.7);
    margin-bottom: 18px;
    position: relative;
}
.cta-strip .btn { position: relative; }

/* ── Footer ────────────────────────────────────────────────────────────── */
.site-ft {
    background: var(--dark);
    color: rgba(255,255,255,.65);
    padding: 36px 0 0;
    margin-top: 48px;
    border-top: 3px solid var(--tan);
    flex-shrink: 0;
}
.site-ft-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}
.site-ft-col h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 1.5px;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 400;
}
.site-ft-col a {
    color: rgba(255,255,255,.65);
    display: block;
    font-size: 14px;
    padding: 4px 0;
}
.site-ft-col a:hover { color: var(--tan); }
.site-ft-col p, .site-ft-col strong {
    color: rgba(255,255,255,.75);
    font-size: 14px;
    line-height: 1.7;
}
.site-ft-col strong { color: #fff; font-weight: 700; }
.site-ft-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 28px;
    padding: 18px 24px;
    text-align: center;
    font-size: 12.5px;
    color: rgba(255,255,255,.5);
}
.site-ft-social {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}
.site-ft-social a {
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    padding: 0;
}
.site-ft-social a:hover { background: var(--tan); color: #fff; }

@media (max-width: 700px) {
    .site-hd-inner { padding: 12px 16px; }
    .site-hd-cta { width: 100%; justify-content: center; }
    .hero { margin: 16px; padding: 44px 22px 50px; }
    .section { padding: 32px 0; }
    .section h2 { font-size: 28px; }
}
