:root {
    --black: #000000;
    --dark-brown: #221810; /* Deep Coffee */
    --tan: #b99777; /* Tan/Gold */
    --off-white: #e6e5e1;
    --white: #ffffff;
    
    --serif: 'Libre Baskerville', serif;
    --sans: 'Plus Jakarta Sans', sans-serif;
    
    --container-max: 1440px;
}

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

body {
    background-color: var(--white);
    color: var(--black);
    font-family: var(--sans);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 4rem;
}

/* Announcement Bar */
.announcement-bar {
    background: var(--dark-brown);
    color: var(--off-white);
    text-align: center;
    padding: 0.6rem 0;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-weight: 500;
    text-transform: uppercase;
}

/* Header */
header {
    background: var(--white);
    padding: 2rem 0;
    border-bottom: 1px solid #f2f2f2;
}

.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.logo-centered img {
    height: 45px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    gap: 2.5rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--black);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--tan);
}

.header-icons {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 1.5rem;
}

.header-icons button {
    background: none;
    border: none;
    cursor: pointer;
}

/* Hero Section V2 */
.hero-v2 {
    height: 90vh;
    position: relative;
    overflow: hidden;
    width: 100%; /* Full width */
}

.hero-bg-v2 {
    width: 100%;
    height: 100%;
}

.hero-bg-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

.countdown-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    padding: 4rem 6rem;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    min-width: 600px;
}

.countdown-card .tagline {
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    color: var(--tan);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.countdown-card h1 {
    font-family: var(--serif);
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    letter-spacing: 0.05em;
}

.timer-v2 {
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.time-item {
    display: flex;
    flex-direction: column;
}

.time-item span {
    font-size: 4rem;
    font-weight: 300;
    line-height: 1;
    font-family: var(--sans);
}

.time-item label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: #999;
    margin-top: 0.5rem;
}

.time-sep {
    font-size: 2rem;
    color: var(--tan);
    margin-bottom: 1.5rem;
}

.btn-hero {
    background: var(--dark-brown);
    color: var(--white);
    border: none;
    padding: 1.2rem 3.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: 0.3s;
}

.btn-hero:hover {
    background: var(--tan);
}

/* Catalog */
.catalog {
    padding: 10rem 0;
}

.catalog-header {
    text-align: center;
    margin-bottom: 5rem;
}

.catalog-header h2 {
    font-family: var(--serif);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.catalog-header p {
    color: var(--tan);
    letter-spacing: 0.1em;
    font-weight: 500;
}

.product-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.product-thumb {
    aspect-ratio: 3/4;
    background: #f8f8f8;
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.product-card-v2:hover .product-thumb img {
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 0.4rem 1rem;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.badge-ready { background: var(--white); color: var(--black); }
.badge-pre { background: var(--tan); color: var(--white); }

.product-info-v2 h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-price {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.fabric-note {
    font-size: 0.75rem;
    color: #777;
    font-style: italic;
}

.catalog-footer {
    text-align: center;
    margin-top: 5rem;
}

.btn-outline {
    background: none;
    border: 1px solid var(--black);
    padding: 1rem 3rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-outline:hover {
    background: var(--black);
    color: var(--white);
}

/* Hybrid USP */
.hybrid-usp {
    background: #fafafa;
    padding: 8rem 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.usp-card {
    text-align: center;
}

.usp-num {
    font-family: var(--serif);
    font-size: 3rem;
    color: var(--tan);
    opacity: 0.3;
    display: block;
    margin-bottom: 1rem;
}

.usp-card h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Production B2B V2 */
.production-b2b-v2 {
    padding: 10rem 0;
}

.b2b-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.b2b-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    box-shadow: 20px 20px 0 var(--tan);
}

.b2b-content-v2 h2 {
    font-family: var(--serif);
    font-size: 3.5rem;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.b2b-content-v2 p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #444;
}

.b2b-list {
    list-style: none;
    margin-bottom: 3rem;
}

.b2b-list li {
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.b2b-list li::before {
    content: '—';
    color: var(--tan);
}

.btn-primary-v2 {
    background: var(--dark-brown);
    color: var(--white);
    border: none;
    padding: 1.2rem 2.5rem;
    font-weight: 700;
    cursor: pointer;
}

/* Testimonials */
.testimonials {
    padding: 10rem 0;
    border-top: 1px solid #eee;
}

.section-title-v2 {
    font-family: var(--serif);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 5rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.testi-card {
    background: #fff;
    padding: 3rem;
    border: 1px solid #f0f0f0;
}

.stars {
    color: var(--tan);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.testi-card p {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    font-style: italic;
    color: #333;
}

.author {
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Footer V2 */
footer {
    background: #000;
    color: var(--white);
    padding: 8rem 0 3rem;
}

.footer-v2 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    filter: invert(1);
    height: 35px;
    margin-bottom: 2rem;
}

.footer-brand p {
    color: #888;
    font-size: 0.9rem;
}

.footer-nav-v2 {
    display: flex;
    gap: 4rem;
}

.f-nav-col h4 {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    color: var(--tan);
}

.f-nav-col a {
    display: block;
    color: var(--off-white);
    text-decoration: none;
    font-size: 0.75rem;
    margin-bottom: 1rem;
    transition: 0.3s;
}

.f-nav-col a:hover {
    color: var(--tan);
}

.footer-copyright {
    border-top: 1px solid #222;
    padding-top: 3rem;
    text-align: center;
    font-size: 0.7rem;
    color: #444;
    letter-spacing: 0.2em;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .container { padding: 0 2rem; }
    .countdown-card { min-width: 90%; padding: 3rem 2rem; }
    .product-grid-v2 { grid-template-columns: repeat(2, 1fr); }
    .b2b-split { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .footer-v2 { flex-direction: column; gap: 4rem; }
    .footer-nav-v2 { flex-wrap: wrap; gap: 2rem; }
}
