:root {
    --bg-color: #fafafa;
    --text-main: #171717;
    --text-muted: #8e8e8e;
    --accent-color: #f03e79;
    --transition-speed: 0.3s;
    --font-sans: 'Söhne', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

.page-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color var(--transition-speed) ease;
}

.logo:hover {
    color: var(--accent-color);
}

.back-arrow {
    font-size: 1.1rem;
    transition: transform var(--transition-speed) ease;
}

.logo:hover .back-arrow {
    transform: translateX(-4px);
}

.header-favicon {
    height: 1.5rem;
    width: auto;
    object-fit: contain;
}

.goose-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 90px;
}

.center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
}

.goose-title {
    font-family: var(--font-sans);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 600;
    letter-spacing: -2px;
    line-height: 1.1;
    text-align: center;
}

.coming-soon {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--text-muted);
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

/* Goose colored letters */
.letter-g {
    color: #a2b5cd;
    /* light blue gray */
}

.letter-o1,
.letter-o2 {
    color: var(--text-main);
    /* black */
}

.letter-s {
    color: #6ebf6c;
    /* slightly light green */
}

.letter-e {
    color: #87c786;
    /* soft green (lighter than s) */
}