/* BEBOUGIE V2 - Simple, Acumin Pro Condensed + Inter, Brown accents */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --brown: #3a2c28;
    --brown-light: #5c4a42;
    --accent: #9a7555;
    --accent-light: #c4a07a;
    --cream: #faf8f5;
    --sand: #f0ebe4;
    --gray: #7a6e64;
    --white: #fff;
    --green: #6b8a6e;
    --red: #c27070;
    --heading: "acumin-pro-condensed", "Helvetica Neue", Arial, sans-serif;
    --body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--body); font-weight: 400; color: var(--brown); background: var(--white); font-size: 15px; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }
.sub { color: var(--gray); font-size: 15px; margin-top: 8px; margin-bottom: 40px; }
.bg-alt { background: var(--sand); }

/* Header */
.header {
    background: var(--white); border-bottom: 1px solid var(--sand);
    padding: 0 24px; position: sticky; top: 0; z-index: 100;
}
.header-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
}
.logo {
    font-family: var(--heading); font-weight: 700; font-size: 24px;
    color: var(--brown); letter-spacing: .25em; text-transform: uppercase;
}
.nav { display: flex; gap: 32px; }
.nav a {
    font-family: var(--heading); font-size: 12px; font-weight: 500;
    color: var(--gray); text-transform: uppercase; letter-spacing: .15em;
}
.nav a:hover { color: var(--brown); }
.header-icons { display: flex; gap: 16px; }
.header-icons a { color: var(--gray); font-size: 15px; }
.header-icons a:hover { color: var(--brown); }
.hamburger { display: none; background: none; border: none; cursor: pointer; width: 24px; height: 18px; position: relative; }
.hamburger span { display: block; width: 100%; height: 1.5px; background: var(--brown); position: absolute; left: 0; }
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }

/* Hero */
.hero { position: relative; height: 70vh; min-height: 400px; overflow: hidden; }
.hero img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.4); }
.hero-content {
    position: absolute; inset: 0; display: flex; flex-direction: column;
    align-items: center; justify-content: center; text-align: center;
    color: var(--white); padding: 24px;
}
.hero-sub {
    font-family: var(--heading); font-size: 13px; font-weight: 500;
    text-transform: uppercase; letter-spacing: .3em; color: var(--accent-light); margin-bottom: 16px;
}
.hero-content h1 {
    font-family: var(--heading); font-weight: 700; text-transform: uppercase;
    font-size: clamp(40px, 8vw, 80px); margin-bottom: 16px; line-height: .92; letter-spacing: .04em;
}
.hero-content p { font-family: var(--heading); font-weight: 300; font-size: 16px; margin-bottom: 28px; opacity: .8; letter-spacing: .15em; text-transform: uppercase; }
.btn {
    display: inline-block; font-family: var(--heading); font-size: 13px;
    font-weight: 600; text-transform: uppercase; letter-spacing: .15em;
    padding: 14px 40px; border: 1px solid var(--white); color: var(--white);
    background: transparent;
}
.btn:hover { background: var(--white); color: var(--brown); }

/* Features */
.features { padding: 40px 0; border-bottom: 1px solid var(--sand); }
.features-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.feat i { font-size: 18px; color: var(--accent); margin-bottom: 8px; }
.feat strong { font-family: var(--heading); font-size: 13px; font-weight: 600; display: block; margin-bottom: 2px; text-transform: uppercase; letter-spacing: .1em; }
.feat span { font-size: 12px; color: var(--gray); }

/* Section heads */
.section { padding: 64px 0; }
.section-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.section-head h2, h2.center {
    font-family: var(--heading); font-weight: 700; text-transform: uppercase;
    font-size: clamp(26px, 4vw, 40px); letter-spacing: .04em;
}
.section-head a {
    font-family: var(--heading); font-size: 12px; font-weight: 500;
    text-transform: uppercase; letter-spacing: .15em;
    color: var(--accent); display: flex; align-items: center; gap: 6px;
}
.section-head a:hover { color: var(--brown); }

/* Collections */
.collections-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.collection-card { position: relative; overflow: hidden; display: block; }
.collection-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.collection-info {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 20px;
    color: var(--white); background: linear-gradient(transparent, rgba(0,0,0,.5));
}
.collection-info span { font-family: var(--heading); font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: .2em; opacity: .7; }
.collection-info h3 { font-family: var(--heading); font-weight: 700; font-size: 24px; text-transform: uppercase; letter-spacing: .08em; }

/* Banner */
.banner { position: relative; height: 40vh; min-height: 250px; overflow: hidden; }
.banner img { width: 100%; height: 100%; object-fit: contain; object-position: center; background: var(--brown); }
.banner-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.35); }
.banner-content {
    position: absolute; inset: 0; display: flex; flex-direction: column;
    align-items: center; justify-content: center; text-align: center; color: var(--white);
}
.banner-content p { font-family: var(--heading); font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: .3em; color: var(--accent-light); margin-bottom: 8px; }
.banner-content h2 { font-family: var(--heading); font-weight: 700; text-transform: uppercase; font-size: clamp(28px, 5vw, 52px); letter-spacing: .06em; }

/* Products */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card { background: var(--white); border: 1px solid var(--sand); }
.product-img { position: relative; overflow: hidden; }
.product-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center top; }
.tag {
    position: absolute; top: 8px; left: 8px;
    font-family: var(--heading); font-size: 10px; font-weight: 600;
    text-transform: uppercase; letter-spacing: .08em;
    padding: 4px 10px; background: var(--brown); color: var(--white);
}
.tag.sale { background: var(--red); }
.tag.new { background: var(--accent); }
.quick-add { display: none; }
.product-card h4 {
    font-family: var(--heading); font-weight: 600; font-size: 16px;
    text-transform: uppercase; letter-spacing: .06em; padding: 12px 12px 2px;
}
.product-card > p { font-size: 12px; color: var(--gray); padding: 0 12px; }
.price { font-family: var(--heading); font-size: 14px; font-weight: 600; padding: 4px 12px 14px; display: block; }
.price del { color: var(--gray); font-weight: 400; margin-right: 6px; }

/* Split */
.split-section { overflow: hidden; }
.split-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 400px; }
.split-img { overflow: hidden; }
.split-img img { width: 100%; height: 100%; object-fit: contain; object-position: center; background: var(--sand); }
.split-text {
    display: flex; flex-direction: column; justify-content: center;
    padding: 48px 56px; background: var(--cream);
}
.reverse .split-inner { direction: rtl; }
.reverse .split-inner > * { direction: ltr; }
.label {
    font-family: var(--heading); font-size: 11px; font-weight: 500;
    text-transform: uppercase; letter-spacing: .3em;
    color: var(--accent); margin-bottom: 12px;
}
.split-text h2 {
    font-family: var(--heading); font-weight: 700; text-transform: uppercase;
    font-size: clamp(24px, 3vw, 36px); letter-spacing: .03em; line-height: 1; margin-bottom: 16px;
}
.split-text p { color: var(--gray); line-height: 1.7; margin-bottom: 12px; }
.split-text ul { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.split-text li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.split-text li i { color: var(--accent); font-size: 12px; }

/* Steps */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
.step { text-align: center; padding: 32px 20px; background: var(--cream); border: 1px solid var(--sand); position: relative; }
.step-num {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    width: 28px; height: 28px; background: var(--accent); color: var(--white);
    font-family: var(--heading); font-size: 14px; font-weight: 700;
    display: flex; align-items: center; justify-content: center; border-radius: 50%;
}
.step i { font-size: 24px; color: var(--accent); margin-bottom: 12px; display: block; margin-top: 8px; }
.step h3 { font-family: var(--heading); font-weight: 700; font-size: 18px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* Before/After */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 800px; margin: 0 auto; }
.ba-card { position: relative; overflow: hidden; }
.ba-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.ba-label {
    position: absolute; bottom: 10px; left: 10px;
    font-family: var(--heading); font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: .1em;
    color: var(--white); background: rgba(0,0,0,.4); padding: 4px 12px;
}

/* Reviews */
.review-stars { margin-bottom: 8px; }
.review-stars i { color: var(--accent); font-size: 18px; }
.review-stars span { font-family: var(--heading); font-size: 13px; color: var(--gray); margin-left: 8px; letter-spacing: .08em; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.review-card { background: var(--cream); padding: 28px 24px; border: 1px solid var(--sand); }
.r-stars { color: var(--accent); font-size: 13px; margin-bottom: 12px; }
.review-card h4 { font-family: var(--heading); font-weight: 700; font-size: 17px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.review-card p { font-size: 14px; color: var(--gray); line-height: 1.6; font-style: italic; margin-bottom: 16px; }
.review-card strong { font-family: var(--heading); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.verified { display: block; font-size: 11px; color: var(--green); margin-top: 2px; }
.verified i { margin-right: 3px; }

/* Newsletter */
.newsletter {
    background: var(--brown); color: var(--white); padding: 56px 0;
    text-align: center;
}
.newsletter h2 { font-family: var(--heading); font-weight: 700; font-size: 36px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.newsletter p { font-size: 14px; opacity: .7; margin-bottom: 24px; }
.nl-form { display: flex; max-width: 440px; margin: 0 auto; }
.nl-form input {
    flex: 1; padding: 12px 16px; border: 1px solid rgba(255,255,255,.2);
    background: transparent; color: var(--white); font-family: var(--body); font-size: 14px;
    outline: none;
}
.nl-form input::placeholder { color: rgba(255,255,255,.4); }
.nl-form button {
    padding: 12px 24px; background: var(--accent); color: var(--white);
    border: none; font-family: var(--heading); font-size: 12px; font-weight: 600;
    text-transform: uppercase; letter-spacing: .12em; cursor: pointer;
}
.nl-form button:hover { background: var(--accent-light); }

/* Footer */
.footer { background: var(--brown); color: var(--white); padding: 48px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 32px; }
.footer-brand h3 { font-family: var(--heading); font-weight: 700; font-size: 20px; letter-spacing: .25em; text-transform: uppercase; margin-bottom: 8px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.social { display: flex; gap: 10px; }
.social a {
    width: 32px; height: 32px; border: 1px solid rgba(255,255,255,.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; color: rgba(255,255,255,.5); border-radius: 50%;
}
.social a:hover { border-color: var(--accent); color: var(--accent); }
.footer-col h4 { font-family: var(--heading); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .15em; margin-bottom: 12px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,.4); margin-bottom: 6px; }
.footer-col a:hover { color: var(--accent-light); }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 0; border-top: 1px solid rgba(255,255,255,.08);
    font-size: 12px; color: rgba(255,255,255,.25);
}
.footer-bottom a { color: var(--accent); }
.pay-icons { display: flex; gap: 10px; font-size: 20px; color: rgba(255,255,255,.25); }

/* Responsive */
@media (max-width: 960px) {
    .nav { display: none; }
    .nav.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--white); padding: 24px; gap: 16px; border-bottom: 1px solid var(--sand); }
    .hamburger { display: block; }
    .header-icons { display: none; }
}
@media (max-width: 768px) {
    .features-row { grid-template-columns: 1fr 1fr; gap: 20px; }
    .collections-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .split-inner { grid-template-columns: 1fr; }
    .reverse .split-inner { direction: ltr; }
    .split-img { height: 300px; }
    .split-text { padding: 32px 24px; }
    .steps-grid { grid-template-columns: 1fr; max-width: 360px; }
    .ba-grid { grid-template-columns: 1fr; max-width: 400px; }
    .reviews-grid { grid-template-columns: 1fr; }
    .section-head { flex-direction: column; align-items: flex-start; gap: 8px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .nl-form { flex-direction: column; }
    .nl-form input, .nl-form button { width: 100%; }
    .hero { height: 50vh; }
}
@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; gap: 12px; }
    .footer-grid { grid-template-columns: 1fr; }
}
