/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2C2C2C;
    background-color: #FFFFFF;
}

/* Color Variables */
:root {
    --hinoki-beige: #F5F1E8;
    --ink-charcoal: #2C2C2C;
    --indigo: #4A5568;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #6B7280;
    --border-light: #E5E7EB;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

a {
    color: var(--indigo);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-section a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ink-charcoal);
    margin: 0;
}

.nav a {
    color: var(--ink-charcoal);
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 1rem;
}

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

/* Hero Section */
.hero {
    background: var(--hinoki-beige);
    padding: 4rem 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero-text .hero-title {
    font-size: 3rem;
    font-weight: 600;
    color: var(--ink-charcoal);
    margin-bottom: 1.5rem;
}

.hero-text .hero-subtitle {
    font-size: 1.25rem;
    color: var(--medium-gray);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    object-fit: cover;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--indigo);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background: #3A4A5C;
    text-decoration: none;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--indigo);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--indigo);
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--indigo);
    color: var(--white);
    text-decoration: none;
}

/* Section Styles */
section {
    padding: 4rem 0;
    text-align: center;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--ink-charcoal);
}

/* Features Section */
.features {
    background: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.feature-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: var(--ink-charcoal);
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--medium-gray);
    margin-bottom: 0;
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-4px);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.product-content {
    padding: 0 2rem 2rem;
}

.product-content h3 {
    color: var(--ink-charcoal);
    margin-bottom: 0.5rem;
}

.product-content p {
    color: var(--medium-gray);
    margin-bottom: 1rem;
}

.product-price {
    font-weight: 600;
    color: var(--indigo);
    font-size: 1.25rem;
    margin-bottom: 1.5rem !important;
}

/* AR Planner Section */
.ar-planner {
    background: var(--hinoki-beige);
}

.ar-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ar-text h2 {
    color: var(--ink-charcoal);
    margin-bottom: 1rem;
}

.ar-text p {
    color: var(--medium-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.ar-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ar-feature {
    color: var(--indigo);
    font-weight: 500;
}

.ar-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ar-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    object-fit: cover;
}

/* Services Section */
.services {
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.service-item h3 {
    color: var(--ink-charcoal);
    margin-bottom: 1rem;
}

.service-item p {
    color: var(--medium-gray);
    margin-bottom: 0;
}

/* Trade Program Section */
.trade-program {
    background: var(--indigo);
    color: var(--white);
    text-align: center;
}

.trade-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.trade-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.trade-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
    text-align: left;
}

.trade-benefit {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 8px;
}

.trade-program .btn-secondary {
    color: var(--white);
    border-color: var(--white);
}

.trade-program .btn-secondary:hover {
    background: var(--white);
    color: var(--indigo);
}

/* Testimonials Section */
.testimonials {
    background: var(--hinoki-beige);
    text-align: center;
}

.testimonial-item {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--ink-charcoal);
    margin-bottom: 2rem;
    line-height: 1.4;
}

.testimonial-item cite {
    color: var(--medium-gray);
    font-weight: 500;
    font-style: normal;
}

/* Contact Section */
.contact {
    text-align: left;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: var(--ink-charcoal);
    margin-bottom: 0.5rem;
}

.contact-item p {
    margin-bottom: 0;
}

.contact-item a {
    color: var(--indigo);
    font-weight: 500;
}

.showroom-info {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
}

.showroom-info h3 {
    color: var(--ink-charcoal);
    margin-bottom: 1rem;
}

.showroom-hours {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

/* Footer */
.footer {
    background: var(--ink-charcoal);
    color: var(--white);
    padding: 3rem 0 2rem;
    text-align: left;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-brand span {
    font-weight: 600;
    font-size: 1.25rem;
}

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

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-section h4 {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    margin: 0;
}

/* Image Placeholders */
.image-placeholder {
    background: var(--light-gray);
    border: 2px dashed var(--indigo);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    font-style: italic;
    color: var(--medium-gray);
    margin: 1rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text .hero-title {
        font-size: 2rem;
    }
    
    .hero-text .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .ar-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .trade-benefits {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .features-grid,
    .products-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 2rem 0;
    }
}