/* === Sycamore Barber Co — Coming Soon === */

:root {
    --bg: #0e110f;
    --brass: #c4a97d;
    --sage: #8b9a82;
    --text: #e8e2d6;
    --text-muted: #9a9589;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    min-height: 100dvh;
}

/* === Hero — full viewport, centered === */

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100dvh;
    padding: 2rem;
    text-align: center;
    position: relative;
    animation: fadeIn 1.2s ease-out;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* === Eyebrow === */

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 1.5rem;
}

/* === Brand name === */

.brand-name {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(3rem, 10vw, 6.5rem);
    line-height: 1.05;
    letter-spacing: 0.02em;
    color: var(--text);
}

/* === Brass rule === */

.rule {
    width: 60px;
    height: 1px;
    background: var(--brass);
    margin: 2rem 0;
}

/* === Location text === */

.location {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--brass);
    margin-bottom: 0.5rem;
}

.region {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.08em;
}

/* === Footer === */

.hero-footer {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    text-align: center;
}

.footer-note {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

/* === Animation === */

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .hero { animation: none; }
}

/* === Mobile adjustments === */

@media (max-width: 480px) {
    .hero { padding: 1.5rem; }
    .eyebrow { font-size: 0.65rem; }
    .location { font-size: 0.85rem; }
    .hero-footer { bottom: 1.5rem; }
}
