:root {
    /* Color Palette - Modern Restored Boat */
    --color-barn-red: #111111;
    --color-maritime-cream: #FFFFFF;
    --color-polished-brass: #888888;
    --color-deep-sea: #111111;
    --color-steel-grey: #888888;
    --color-white: #FFFFFF;
    --color-black: #111111;

    /* Functional Colors */
    --color-success: #10B981;
    --color-error: #EF4444;
    --color-warning: #F59E0B;

    /* Typography */
    --font-heading: 'Jost', sans-serif;
    --font-body: 'Jost', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-pill: 9999px;

    /* Shadows - Soft & Modern */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-maritime-cream);
    color: var(--color-black);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-barn-red);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

.container {
    max-width: 1000px;
    /* Focus content */
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Utilities */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: var(--spacing-lg);
}

.mb-4 {
    margin-bottom: var(--spacing-lg);
}

.flex {
    display: flex;
}

.hidden {
    display: none;
}

/* Main Header */
.main-header {
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.logo {
    font-size: 3rem;
    font-weight: 400 !important;
    letter-spacing: 0.04em;
    margin-bottom: var(--spacing-xs);
    position: relative;
    display: inline-block;
}

.tagline {
    font-size: 1.2rem;
    color: var(--color-steel-grey);
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.main-footer {
    padding: var(--spacing-xl) 0;
    color: var(--color-steel-grey);
    font-size: 0.9rem;
    opacity: 0.7;
}