:root {
    --bg-color: #0d0f0e;
    --text-color: #f1f0ea;
    --text-muted: #e2cfb0;
    --accent: #efd19c;
    --accent-light: #e7b773;
    --border-color: rgba(241, 240, 234, 0.15);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --spacing-xl: 160px;
    --spacing-lg: 100px;
    --spacing-md: 60px;
    --spacing-sm: 30px;
    
    --transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.form-success {
    overflow: hidden;
}

/* Typography */
h1, h2, h3, .serif-title {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
}

.display-1 {
    font-size: clamp(3rem, 6vw, 5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h2.lg {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.lead {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--text-color);
}

.subtitle {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-family: var(--font-heading);
    line-height: 1.4;
    color: var(--text-color);
}

.thin {
    font-weight: 300;
}

.text-accent {
    color: var(--accent-light);
}

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

.text-white {
    color: #fff;
}

.fine-print {
    font-size: 0.85rem;
    opacity: 0.7;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero .fine-print {
    margin: 30px 0px 0px;
    color: var(--text-color);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.spacer-sm { height: var(--spacing-sm); }
.spacer-md { height: var(--spacing-md); }
.spacer-lg { height: var(--spacing-lg); }

.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }

/* Sections */
section {
    position: relative;
    padding: var(--spacing-xl) 0;
}

.fullscreen-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.fullscreen-section.has-bg {
    color: #fff;
}

/* Images & Backgrounds */
.bg-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.parallax {
    background-attachment: fixed;
}

.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(13, 15, 14, 0.3), rgba(13, 15, 14, 0.8));
    z-index: -1;
}

.overlay.dark {
    background: rgba(13, 15, 14, 0.7);
}

/* Split Section */
.split-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: 80vh;
    padding: 0;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-image {
    flex: 1;
    min-width: 50%;
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.split-content {
    flex: 1;
    padding: 8vw 10vw;
    min-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 900px) {
    .split-image, .split-content {
        min-width: 100%;
    }
    .split-image {
        height: 50vh;
    }
    .split-content {
        padding: var(--spacing-md) 5%;
    }
}

/* Badge / Label */
.step-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-light);
    margin-bottom: 30px;
    display: block;
}

.step-label::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background-color: var(--accent);
    vertical-align: middle;
    margin-right: 15px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 36px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.05em;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: linear-gradient(135deg, #efd19c, #e7b773, #efd19c, #e7b773);
    color: #0d0f0e;
    box-shadow: 0 4px 15px rgba(231, 183, 115, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e3c186, #d9a65c);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 183, 115, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--accent-light);
    color: var(--accent-light);
}

/* Lists */
.clean-list, .clean-list-dash {
    list-style: none;
    margin: 30px 0;
}

.clean-list li, .clean-list-dash li {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.clean-list li::before {
    content: '•';
    color: var(--accent-light);
    margin-right: 15px;
}

.clean-list-dash li::before {
    content: '–';
    color: var(--accent-light);
    margin-right: 15px;
}

/* Trust Bar */
.trust-bar {
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
    background-color: rgba(13, 15, 14, 0.95);
}

.flex-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    flex: 1;
}

.trust-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--accent);
}

@media (max-width: 768px) {
    .flex-row {
        flex-direction: column;
        gap: 15px;
    }
    .trust-divider { display: none; }
}

/* Process Steps */
.process-steps {
    margin: 40px 0;
}

.process-step {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-muted);
    transition: var(--transition);
}

.process-step:hover {
    color: var(--text-color);
    padding-left: 20px;
}

.process-step span {
    font-size: 0.9rem;
    font-family: var(--font-body);
    color: var(--accent);
    margin-right: 20px;
    vertical-align: middle;
}

.process-step:last-child {
    border-bottom: none;
}

/* Form Styles */
.form-section {
    background-color: #080909;
    padding-bottom: var(--spacing-lg);
}

.form-container {
    background: #0d0f0e;
    border: 1px solid var(--border-color);
    padding: 60px;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .form-container {
        padding: 30px;
    }
}

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

.form-intro p {
    font-size: 1.2rem;
    color: var(--text-color);
}

.form-group {
    margin-bottom: 40px;
}

.form-label {
    display: block;
    font-size: 1.2rem;
    font-family: var(--font-heading);
    color: var(--text-color);
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    color: var(--text-color);
    font-size: 1.1rem;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-bottom-color: var(--accent-light);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.form-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin: 50px 0;
}

/* Custom Radio */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.radio-label:hover {
    color: var(--text-color);
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-label span {
    position: relative;
    padding-left: 35px;
}

.radio-label span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    transition: var(--transition);
}

.radio-label input[type="radio"]:checked + span::before {
    border-color: var(--accent);
}

.radio-label input[type="radio"]:checked + span::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-color: var(--accent);
    border-radius: 50%;
}

.radio-label input[type="radio"]:focus + span::before {
    box-shadow: 0 0 0 2px rgba(94, 108, 88, 0.3);
}

/* File Upload */
.file-upload {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}

.form-control-file {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
    height: 100%;
    width: 100%;
    z-index: 2;
}

.file-label {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 1px dashed var(--border-color);
    border-radius: 4px;
    background: rgba(255,255,255,0.02);
    color: var(--text-muted);
    transition: var(--transition);
}

.file-upload:hover .file-label {
    border-color: var(--text-color);
    background: rgba(255,255,255,0.05);
}

.file-icon {
    font-size: 1.5rem;
    margin-right: 15px;
}

.availability-badge {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid var(--accent);
    color: var(--text-color);
    border-radius: 30px;
    font-size: 0.9rem;
    background: rgba(94, 108, 88, 0.1);
}

/* Success Screen */
.success-screen {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease;
}

.success-screen.active {
    opacity: 1;
    visibility: visible;
}

.success-content {
    text-align: center;
    max-width: 600px;
    padding: 40px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    animation: fadeInUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

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

/* Footer */
.main-footer {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    background-color: #080909;

    p {font-size: 0.8rem;}

    a {
        color: var(--accent);
        text-decoration: none;
        font-weight: bold;
    }
}
