/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #8B6B4D;
    --primary-dark: #6D4F3A;
    --primary-light: #C4A88A;
    --secondary: #D4C5B2;
    --bg-light: #FAF6F1;
    --bg-dark: #2C241E;
    --text-dark: #2C241E;
    --text-light: #F5F0EB;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --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(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-weight: 600;
    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(--primary);
    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(139, 107, 77, 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(--primary);
    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(--primary);
    transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a.active {
    color: var(--primary);
}

.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, #FAF6F1 0%, #F0E8E0 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    background: var(--primary-light);
    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(0,0,0,0.12);
}

.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);
}

/* ===== 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, #FAF6F1 0%, #F0E8E0 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);
}

/* ===== VALUES ===== */
.values {
    padding: 60px 0 80px;
    background: white;
}

.values h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
}

.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(0,0,0,0.1);
}

.product-image {
    font-size: 4.5rem;
    margin-bottom: 0.5rem;
}

.product-desc {
    color: #777;
    font-size: 0.95rem;
    margin: 0.5rem 0;
}

.product-price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    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(0,0,0,0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    margin: 0.5rem 0 1.5rem;
}

/* ===== 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-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 {
    padding: 12px 16px;
    border: 2px solid #E0D6CC;
    border-radius: 8px;
    font-family: var(--font);
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(139, 107, 77, 0.1);
}

/* ===== 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(--primary-light);
}

.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; }
}