/* ===========================
   Variables & Reset
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #22242c;
    --primary-color: #ecd5c2;
    --secondary-color: #8c857e;
    --text-light: rgba(236, 213, 194, 0.9);
}

/* ===========================
   Typography
   =========================== */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-light);
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3 {
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--primary-color);
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 0.5rem;
    font-weight: 200;
}

h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 1.5rem;
    text-align: center;
}

h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
}

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

main {
    min-height: 100vh;
}

section {
    padding: 5rem 0;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-color) 0%, #2a2d38 100%);
}

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

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

.subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    line-height: 2.5em;
}

.subtitle-icon {
    height: 2.5em;
    width: auto;
    display: inline-block;
}

.scissors-paths {
    fill: var(--secondary-color);
}

.tagline {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-light);
    line-height: 1.8;
    margin-top: 2rem;
    font-weight: 300;
}

/* Image Placeholder */
.hero-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #6b6560 100%);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 48%, rgba(236, 213, 194, 0.1) 50%, transparent 52%);
}

.image-placeholder span {
    color: var(--primary-color);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
    z-index: 1;
}

/* ===========================
   About Section
   =========================== */
.about {
    background-color: #1a1c23;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.9;
    color: var(--text-light);
}

/* ===========================
   Contact Section
   =========================== */
.contact {
    background-color: var(--bg-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 800px;
    margin: 3rem auto 0;
}

.contact-link {
    text-decoration: none;
    display: block;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: rgba(236, 213, 194, 0.05);
    border: 1px solid rgba(236, 213, 194, 0.1);
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
}

.contact-item:hover {
    background: rgba(236, 213, 194, 0.08);
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.contact-value {
    color: var(--primary-color);
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    letter-spacing: 1px;
    transition: color 0.3s ease;
    display: block;
}

.contact-link:hover .contact-value {
    color: var(--secondary-color);
}

.contact-address {
    grid-column: 1 / -1;
    font-style: normal;
    text-align: center;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    line-height: 1.8;
    color: var(--primary-color);
    margin: 1rem 0 0;
    padding: 2rem;
    background: rgba(236, 213, 194, 0.05);
    border: 1px solid rgba(236, 213, 194, 0.1);
    border-radius: 2px;
}

/* ===========================
   Footer
   =========================== */
footer {
    background-color: #1a1c23;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(236, 213, 194, 0.1);
}

footer p {
    color: var(--secondary-color);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

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

    .subtitle {
        justify-content: center;
    }

    .image-placeholder {
        max-width: 300px;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        margin-bottom: 1rem;
    }

    .tagline {
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    section {
        padding: 2.5rem 0;
    }

    .contact-item {
        padding: 1.5rem;
    }

    .map-link {
        padding: 0.875rem 2rem;
        font-size: 0.85rem;
    }
}

/* ===========================
   Accessibility
   =========================== */
a:focus,
button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}
