/* =============================================================================
   File: contact2.css
   Purpose: CSS for Contact Page (Draft 2 - Dark Luxury Polish)
   ============================================================================= */

/* ===== THEME ===== */
:root {
    /* Premium Palette - Dark Luxury */
    --bg: #050505;
    --bg-panel: #121212;
    --bg-input: #0A0A0A;

    --text-main: #E0E0E0;
    --text-muted: #9E9E9E;

    --gold: #D4A068;
    --gold-dim: #8C6A45;
    --gold-light: #E6C298;

    --border: rgba(255, 255, 255, 0.1);
    --shadow: 0 12px 40px -12px rgba(0, 0, 0, 0.5);
    --radius: 4px;
    /* Sharper, more premium corners */

    /* Typography */
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.02em;
}

/* ===== UTIL ===== */
.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}

/* === HERO Section ========================================================= */
.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) sepia(0.2);
    /* Darker, warmer tone */
    z-index: 0;
}

.hero-grid {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    margin: 0 0 1rem;
    color: #fff;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.hero .lead {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    opacity: 0.9;
    margin: 0 0 3rem;
    font-family: var(--font-sans);
    font-weight: 300;
    max-width: 60ch;
    margin-inline: auto;
    color: var(--text-muted);
}

.cta-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Luxury Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
}

.btn:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 20px rgba(212, 160, 104, 0.2);
}

.btn-accent {
    background: var(--gold);
    color: #000;
}

.btn-accent:hover {
    background: #fff;
    border-color: #fff;
    color: #000;
}

.btn-ghost {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.btn-ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* ===== METHODS ===== */
.methods {
    padding: 6rem 0;
    background: var(--bg);
}

.cards {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: var(--gold-dim);
    transform: translateY(-5px);
}

.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.card h3 {
    font-size: 1.5rem;
    margin: 1rem 0 0.5rem;
    color: #fff;
}

.card p {
    color: var(--text-muted);
    margin: 0 0 1.5rem;
    font-size: 0.95rem;
}

.card .link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.card .link:hover {
    border-bottom-color: var(--gold);
}

/* ===== FORM ===== */
.form-wrap {
    background: #080808;
    padding: 6rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-copy h2 {
    font-size: 2.5rem;
    margin: 0 0 1rem;
}

.form-copy p {
    color: var(--text-muted);
    margin: 0;
    font-size: 1.1rem;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.field {
    display: flex;
    flex-direction: column;
}

.field.full {
    grid-column: 1/-1;
}

.field label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.field input,
.field select,
.field textarea {
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 1rem;
    font-size: 1rem;
    color: #fff;
    transition: border-color 0.3s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.contact-form .btn-accent {
    grid-column: 1/-1;
    justify-self: start;
    margin-top: 1rem;
    width: 100%;
}

.tiny {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 1rem 0 0;
}

/* ===== DETAILS ===== */
.details {
    padding: 4rem 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.details-grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    text-align: center;
}

.details h4 {
    color: var(--gold);
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.details p {
    margin: 0;
    color: var(--text-muted);
}

/* ===== FOOTER ===== */
.site-footer {
    background: #000;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
    font-size: 0.9rem;
}

.site-footer .link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer .link:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

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

/* Flatpickr Dark Theme Override */
.flatpickr-calendar {
    background: var(--bg-panel) !important;
    border: 1px solid var(--border) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

.flatpickr-months,
.flatpickr-weekdays {
    background: var(--bg-panel) !important;
}

.flatpickr-month,
.flatpickr-weekday {
    color: #fff !important;
    fill: #fff !important;
}

.flatpickr-day {
    color: var(--text-muted) !important;
}

.flatpickr-day.selected {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    color: #000 !important;
}

.flatpickr-day:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}