/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Dark / Modern Cellar Theme */
    --bg-primary: #0d0d0d;
    --bg-card: #1a1a1a;
    --bg-input: #242424;
    --text-primary: #f5f5f5;
    --text-secondary: #a0a0a0;
    --accent-oxblood: #8b2635;
    --accent-garnet: #722f37;
    --accent-bright: #a83545;
    --border-subtle: #2a2a2a;
    --border-input: #3a3a3a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER NAVIGATION ===== */

.header {
    position: sticky;
    top: 0;
    background-color: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    height: 32px;
    width: auto;
}

.brand-icon-small {
    height: 24px;
    width: auto;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    font-family: Georgia, serif;
    color: var(--text-primary);
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

/* ===== HERO SECTION (LYFT STYLE) ===== */

.hero-main {
    padding: 80px 24px 100px;
    min-height: 600px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    max-width: 540px;
}

.hero-tagline {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.cta-button {
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.cta-primary {
    background-color: var(--accent-garnet);
    color: var(--text-primary);
}

.cta-primary:hover {
    background-color: var(--accent-bright);
    transform: translateY(-2px);
}

.cta-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-subtle);
}

.cta-secondary:hover {
    border-color: var(--accent-garnet);
    transform: translateY(-2px);
}

.hero-location {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-style: italic;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: 12px;
    opacity: 0.8;
}

.visual-placeholder {
    font-size: 20rem;
    opacity: 0.3;
    user-select: none;
}

/* ===== VALUE SECTION ===== */

.value-section {
    padding: 100px 24px;
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-subtle);
}

.value-intro {
    text-align: center;
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 80px;
    opacity: 0.8;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    display: flex;
    flex-direction: column;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.value-title {
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.value-copy {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.value-bullets {
    list-style: none;
    margin-bottom: 32px;
}

.value-bullets li {
    font-size: 0.9375rem;
    color: var(--text-primary);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.value-bullets li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-garnet);
}

.value-link {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.value-link:hover {
    gap: 12px;
}

.value-link .arrow {
    color: var(--accent-garnet);
}

/* ===== FORM PAGES ===== */

/* Page Header */
.page-header {
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-subtle);
    padding: 24px 0;
}

.page-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.back-link {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: var(--text-primary);
}

.logo-small {
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 3px;
    font-family: Georgia, serif;
    color: var(--text-primary);
}

/* Page Hero Image */
.page-hero {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.page-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

/* Form Section */
.form-section {
    padding: 80px 24px 100px;
    background-color: var(--bg-primary);
}

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

.form-intro {
    text-align: center;
    margin-bottom: 48px;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.form-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Form Styles */
.signup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: -12px;
    display: block;
}

.form-input,
.form-select {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    background-color: var(--bg-input);
    color: var(--text-primary);
    border: 1px solid var(--border-input);
    border-radius: 8px;
    transition: border-color 0.2s ease;
    font-family: inherit;
}

.form-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--accent-garnet);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23a0a0a0' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
}

.form-select option {
    background-color: var(--bg-card);
    color: var(--text-primary);
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.9375rem;
    color: var(--text-primary);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 12px;
    margin-top: 2px;
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: var(--accent-garnet);
    flex-shrink: 0;
}

.checkbox-label span {
    flex: 1;
}

/* Buttons */
.btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.btn-primary {
    background-color: var(--accent-garnet);
    color: var(--text-primary);
}

.btn-primary:hover {
    background-color: var(--accent-bright);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #2a2a2a;
    color: var(--text-primary);
}

.btn-secondary:hover {
    background-color: #353535;
    transform: translateY(-2px);
}

.form-helper {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: -8px;
}

/* Success Message */
.success-message {
    background-color: rgba(139, 38, 53, 0.15);
    color: var(--text-primary);
    border: 1px solid var(--accent-garnet);
    padding: 16px 20px;
    border-radius: 8px;
    margin-top: 16px;
    font-size: 1rem;
}

/* Footer */
.footer {
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-subtle);
    text-align: center;
    padding: 60px 24px;
}

.footer p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-links .separator {
    color: var(--text-secondary);
    opacity: 0.5;
}

/* ===== MOBILE RESPONSIVE ===== */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-visual {
        order: -1;
    }

    .visual-placeholder {
        font-size: 15rem;
    }

    .hero-tagline {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .brand-logo {
        font-size: 1.25rem;
    }

    .nav {
        gap: 20px;
    }

    .hero-main {
        padding: 60px 24px 80px;
    }

    .hero-tagline {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .cta-button {
        text-align: center;
    }

    .visual-placeholder {
        font-size: 10rem;
    }

    .value-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .value-section {
        padding: 80px 24px;
    }

    .form-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .header-container {
        padding: 16px 20px;
    }

    .nav {
        gap: 16px;
    }

    .nav-link {
        font-size: 0.875rem;
    }

    .hero-tagline {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .visual-placeholder {
        font-size: 8rem;
    }

    .value-title {
        font-size: 1.5rem;
    }

    .form-title {
        font-size: 1.75rem;
    }
}

/* ===== FULLSCREEN SPLIT HERO ===== */

.fullscreen-hero {
    min-height: calc(100vh - 73px); /* Full screen minus header */
    display: flex;
    flex-direction: column;
    background-color: var(--bg-primary);
}

.hero-intro {
    text-align: center;
    padding: 60px 24px 40px;
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(13, 13, 13, 0.9) 100%);
}

.hero-main-tagline {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.1;
}

.hero-main-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.split-container {
    display: flex;
    flex: 1;
    min-height: 500px;
}

.split-side {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.5s ease;
}

.split-side:hover {
    flex: 1.1;
}

.split-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.split-side:hover .split-bg {
    transform: scale(1.05);
}

.split-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.7) 0%, rgba(13, 13, 13, 0.85) 100%);
    transition: background 0.3s ease;
}

.split-left .split-overlay {
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.78) 0%, rgba(13, 13, 13, 0.9) 100%);
}

.split-side:hover .split-overlay {
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.6) 0%, rgba(13, 13, 13, 0.8) 100%);
}

.split-left:hover .split-overlay {
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.7) 0%, rgba(13, 13, 13, 0.85) 100%);
}

.split-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 60px 40px;
    max-width: 500px;
}

.split-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.2;
}

.split-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.split-cta {
    display: inline-block;
    padding: 18px 40px;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.split-cta.cta-primary {
    background-color: var(--accent-garnet);
    color: white;
}

.split-cta.cta-primary:hover {
    background-color: var(--accent-oxblood);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 38, 53, 0.3);
}

.split-cta.cta-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--text-primary);
}

.split-cta.cta-secondary:hover {
    background-color: var(--text-primary);
    color: var(--bg-primary);
    transform: translateY(-3px);
}

/* Mobile Responsive for Split Hero */
@media (max-width: 968px) {
    .hero-main-tagline {
        font-size: 2.5rem;
    }

    .hero-main-subtitle {
        font-size: 1.125rem;
    }

    .split-container {
        flex-direction: column;
    }

    .split-side {
        min-height: 400px;
    }

    .split-side:hover {
        flex: 1;
    }

    .split-title {
        font-size: 2rem;
    }

    .split-description {
        font-size: 1rem;
    }

    .split-content {
        padding: 40px 24px;
    }
}

@media (max-width: 480px) {
    .hero-intro {
        padding: 40px 20px 30px;
    }

    .hero-main-tagline {
        font-size: 2rem;
    }

    .hero-main-subtitle {
        font-size: 1rem;
    }

    .split-side {
        min-height: 350px;
    }

    .split-title {
        font-size: 1.75rem;
    }

    .split-cta {
        padding: 16px 32px;
        font-size: 1rem;
    }
}
