:root {
    --bg: #f9f9f9;
    --text: #1a1a1a;
    --accent: #888;
    --serif: 'Playfair Display', serif;
    --mono: 'IBM Plex Mono', monospace;
}

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--serif);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.mono {
    font-family: var(--mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
}

/* HERO SECTION */
#hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #fff;
}

.brand-name {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 400;
    letter-spacing: 8px;
    margin-bottom: 1rem;
}

.brand-tagline {
    font-family: var(--mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.artifact-placeholder {
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, #fff, #1a1a1a, #fff);
    margin: 0 auto 3rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 5vh;
}

.line {
    width: 1px;
    height: 50px;
    background: var(--text);
    margin: 10px auto;
}

/* MANIFESTO SLIDES */
.value-slide {
    height: 100vh;
    padding: 10vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.value-slide.visible {
    opacity: 1;
    transform: translateY(0);
}

.value-slide h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin: 2rem 0;
    font-weight: 400;
}

.value-slide p {
    font-family: var(--mono);
    line-height: 1.8;
    color: #444;
}

/* INQUIRY FORM */
#inquiry {
    min-height: 100vh;
    padding: 10vw;
    background: #fff;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h3 {
    font-size: 2.5rem;
    margin: 2rem 0 1rem;
    font-weight: 400;
}

.form-sub {
    font-family: var(--mono);
    margin-bottom: 4rem;
}

.input-group {
    margin-bottom: 3rem;
}

.input-group label {
    display: block;
    margin-bottom: 1rem;
}

input, textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
    font-family: var(--serif);
    font-size: 1.2rem;
    outline: none;
}

button {
    background: var(--text);
    color: #fff;
    padding: 20px 40px;
    border: none;
    cursor: pointer;
    margin-top: 2rem;
    transition: opacity 0.3s;
}

button:hover {
    opacity: 0.8;
}
