:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --accent-color: #e0e0e0;
    --primary-font: 'Inter', sans-serif;
    --serif-font: 'Playfair Display', serif;
    --spacing-unit: 1rem;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--primary-font);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

/* Typography styles */
.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.875rem;
    color: #888;
    margin-bottom: 1rem;
    display: block;
}

h1 {
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 3.5rem;
    /* Fallback */
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h1 .highlight {
    font-family: var(--serif-font);
    font-style: italic;
    font-weight: 400;
    color: #a0a0a0;
    /* Slightly softer white/grey */
}

p {
    font-size: 1.125rem;
    color: #cccccc;
    max-width: 50ch;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* Buttons */
.cta-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 2px;
    /* Minimal rounding */
    font-weight: 500;
}

.btn-primary {
    background-color: white;
    color: black;
    border: 1px solid white;
}

.btn-primary:hover {
    background-color: transparent;
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: white;
}

/* Visual Area */
.hero-visual {
    width: 100%;
    height: 500px;
    /* Default height */
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.visual-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
}

/* Abstract Wood/Tech shapes via CSS since image gen failed */
.visual-placeholder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%) rotate(45deg);
}

.visual-placeholder::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    width: 70%;
    height: 30%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

/* Desktop Layout */
@media (min-width: 992px) {
    .hero-section {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .hero-visual {
        height: 700px;
    }
}