/* Cowva public booking — standalone stylesheet (no framework).
   Design tokens first; components below. */

:root {
    --brand-600: #0f766e;
    --brand-700: #115e59;
    --brand-50: #f0fdfa;
    --ink-900: #0f172a;
    --ink-600: #475569;
    --ink-400: #94a3b8;
    --surface: #ffffff;
    --page-bg: #f8fafc;
    --border: #e2e8f0;
    --radius-lg: 20px;
    --radius-md: 12px;
    --shadow-card: 0 1px 2px rgba(15, 23, 42, 0.04), 0 12px 32px rgba(15, 23, 42, 0.08);
    --font-sans: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
}

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

html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    background: var(--page-bg);
    color: var(--ink-900);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.center-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

h1,
h2,
h3 {
    line-height: 1.2;
    margin: 0 0 12px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

p {
    margin: 0 0 20px;
    color: var(--ink-600);
}

a {
    color: var(--brand-600);
}

/* --- Buttons ------------------------------------------------------------ */

.btn-primary {
    display: inline-block;
    background: var(--brand-600);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    transition: background 160ms ease, transform 160ms ease;
}

.btn-primary:hover {
    background: var(--brand-700);
    transform: translateY(-1px);
}

.btn-primary:focus-visible {
    outline: 3px solid var(--brand-50);
    outline-offset: 2px;
}

/* --- Coming soon --------------------------------------------------------- */

.coming-soon-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    max-width: 520px;
    padding: 56px 48px;
    text-align: center;
}

.brand-mark {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--brand-600);
    margin-bottom: 28px;
}

.badge-soft {
    display: inline-block;
    background: var(--brand-50);
    color: var(--brand-700);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.coming-soon-card h1 {
    font-size: clamp(1.6rem, 4vw, 2.1rem);
}

.coming-soon-card p {
    margin-bottom: 28px;
}

@media (max-width: 480px) {
    .coming-soon-card {
        padding: 40px 24px;
    }
}
