/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2C1810;
    --primary-dark: #1A0F0A;
    --primary-light: #5A3A2E;
    --secondary: #E8DDD8;
    --accent: #C6A88A;
    --bg-light: #FCF9F8;
    --bg-dark: #2C1810;
    --text-dark: #2C1810;
    --text-light: #FCF9F8;
    --shadow: 0 4px 20px rgba(44, 24, 16, 0.12);
    --radius: 12px;
    --transition: 0.3s ease;
    --max-width: 1200px;
    --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.7;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover { color: var(--primary-light); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; margin-bottom: 0.5rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header p {
    color: #777;
    font-size: 1.1rem;
}

.label {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 24, 16, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-light {
    background: white;
    color: var(--primary-dark);
}

.btn-light:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
    background: var(--primary);
    color: white;
}

.btn-small:hover {
    background: var(--primary-dark);
    color: white;
}

/* ===== HEADER ===== */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.logo a { color: var(--text-dark); }
.logo span { color: var(--accent); font-weight: 300; }

nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
    align-items: center;
}

nav ul li a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a.active { color: var(--accent); }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* ===== HERO ===== */
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #FCF9F8 0%, #F0EAE8 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-placeholder {
    font-size: 12rem;
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* ===== GRID ===== */
.grid {
    display: grid;
    gap: 30px;
}

.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* ===== CARDS ===== */
.card {
    background: white;
    padding: 30px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(44, 24, 16, 0.15);
}

.card-img { font-size: 4rem; margin-bottom: 1rem; }
.card p { color: #666; font-size: 0.95rem; }
.card-link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
    padding: 80px 0;
}

.about-preview .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-preview h2 { font-size: 2.6rem; }
.about-preview p { color: #555; margin: 1rem 0 2rem; }

.studio-placeholder {
    font-size: 8rem;
    text-align: center;
    background: white;
    padding: 60px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* ===== STATS ===== */
.stats {
    padding: 60px 0;
    background: var(--primary);
    color: white;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-card p {
    opacity: 0.8;
    font-size: 1.1rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 60px 0 80px;
    background: white;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 30px 24px;
    border-radius: var(--radius);
    border-left: 4px solid var(--accent);
}

.testimonial-card p {
    font-style: italic;
    color: #444;
    margin-bottom: 0.5rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 60px 0 80px;
}

.cta-box {
    background: var(--primary);
    color: white;
    padding: 60px 50px;
    border-radius: var(--radius);
    text-align: center;
}

.cta-box h2 {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-box .btn-light {
    background: white;
    color: var(--primary-dark);
}

.cta-box .btn-light:hover { background: var(--bg-light); }

/* ===== PAGE HERO ===== */
.page-hero {
    padding: 60px 0 40px;
    text-align: center;
    background: linear-gradient(135deg, #FCF9F8 0%, #F0EAE8 100%);
}

.page-hero h1 { font-size: 3rem; }
.page-hero p { font-size: 1.2rem; color: #666; }

/* ===== ABOUT STORY ===== */
.about-story { padding: 60px 0; }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 { font-size: 2.6rem; }
.about-text p { color: #555; margin-bottom: 1rem; }

.about-placeholder {
    font-size: 8rem;
    text-align: center;
    background: white;
    padding: 60px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* ===== TEAM ===== */
.team {
    padding: 60px 0 80px;
    background: white;
}

.team h2 { text-align: center; }
.team-subtitle {
    text-align: center;
    color: #777;
    margin-bottom: 2.5rem;
}

.team-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.team-card:hover { transform: translateY(-4px); }

.team-avatar { font-size: 4rem; margin-bottom: 0.5rem; }
.team-role {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* ===== VALUES ===== */
.values {
    padding: 60px 0 80px;
}

.values h2 { text-align: center; margin-bottom: 2.5rem; }

.value-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.value-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.value-card p { color: #666; }

/* ===== PRODUCT GRID ===== */
.product-grid { padding: 60px 0 80px; }

.product-card {
    background: white;
    padding: 30px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(44, 24, 16, 0.12);
}

.product-image { font-size: 4.5rem; margin-bottom: 0.5rem; }
.product-desc { color: #777; font-size: 0.95rem; margin: 0.5rem 0; }
.product-tag {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    margin: 0.5rem 0 1rem;
}

/* ===== SERVICES ===== */
.services-list { padding: 60px 0 80px; }

.service-card {
    background: white;
    padding: 35px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(44, 24, 16, 0.12);
}

.service-icon { font-size: 3rem; margin-bottom: 1rem; }
.service-card p { color: #666; margin: 0.5rem 0 0.5rem; }
.service-tag {
    display: block;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0.5rem 0 1rem;
}

/* ===== CONTACT ===== */
.contact-section { padding: 60px 0 80px; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-details p { margin-bottom: 1.5rem; }
.contact-details strong { display: block; margin-bottom: 0.25rem; }

.contact-social {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--secondary);
}

.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.social-icons span {
    background: var(--secondary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--primary-dark);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 16px;
    border: 2px solid #D8D0CC;
    border-radius: 8px;
    font-family: var(--font);
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(198, 168, 138, 0.2);
}

/* ===== FOOTER ===== */
footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo {
    color: white;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-brand .logo span { color: var(--accent); }
.footer-brand p { opacity: 0.7; font-size: 0.95rem; }

.footer-links h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 0.5rem; }
.footer-links ul li a { color: rgba(255,255,255,0.7); }
.footer-links ul li a:hover { color: white; }

.footer-contact p {
    opacity: 0.7;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    padding-top: 20px;
    text-align: center;
    opacity: 0.5;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    h1 { font-size: 2.4rem; }
    .hero h1 { font-size: 2.8rem; }
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero p { margin: 0 auto 2rem; }
    .hero-buttons { justify-content: center; }
    .grid-3 { grid-template-columns: 1fr 1fr; }
    .about-preview .container { grid-template-columns: 1fr; text-align: center; }
    .about-grid { grid-template-columns: 1fr; text-align: center; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    nav ul {
        display: none;
        flex-direction: column;
        gap: 16px;
        padding: 20px 0;
        width: 100%;
        background: white;
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    nav ul.open { display: flex; }
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .hero h1 { font-size: 2.2rem; }
    .about-preview h2 { font-size: 2rem; }
    .cta-box { padding: 40px 24px; }
    .cta-box h2 { font-size: 1.8rem; }
    .page-hero h1 { font-size: 2.2rem; }
    .about-text h2 { font-size: 2rem; }
    .stat-number { font-size: 2.8rem; }
}