﻿ 
/* ══════════════════════════════════════
           RESET & VARIABLES
        ══════════════════════════════════════ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #1a1819;
    --card: #2a2829;
    --surface: #201e1f;
    --violet: #9d0091;
    --gold: #FFC107;
    --white: #f4eff4;
    --text: #c5c0c5;
    --muted: #6e686b;
    --border: #2d2a2c;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    min-height: 100vh;
}


/* ══════════════════════════════════════
           HERO
        ══════════════════════════════════════ */
.hero {
    position: relative;
    padding: 80px 20px 60px;
    text-align: center;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 600px;
        height: 260px;
        background: radial-gradient(ellipse at center top, rgba(157,0,145,0.09) 0%, transparent 65%);
        pointer-events: none;
    }

.mountain-icon {
    display: block;
    margin: 0 auto 26px;
}

.hero-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.8rem);
    font-weight: 500;
    letter-spacing: -0.025em;
    color: var(--white);
    margin-bottom: 24px;
}

    .hero-heading em {
        font-style: normal;
        color: var(--violet);
    }

.hero-rule {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.rule-line {
    width: 60px;
    height: 1px;
}

.rule-line--l {
    background: linear-gradient(to right, transparent, var(--violet));
}

.rule-line--r {
    background: linear-gradient(to right, var(--gold), transparent);
}

.rule-gem {
    width: 5px;
    height: 5px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
}


/* ══════════════════════════════════════
           CONTACT LAYOUT
        ══════════════════════════════════════ */
.contact-section {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px 80px;
    display: grid;
    grid-template-columns: 1fr 392px;
    gap: 52px;
    align-items: start;
    text-align:right;
}


/* ══════════════════════════════════════
           FORM COLUMN
        ══════════════════════════════════════ */
.form-eyebrow {
    font-size: 0.63rem;
    font-weight: 600;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    color: var(--violet);
    margin-bottom: 6px;
}

.form-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 34px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 22px;
}

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

/* — Fields — */
.field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

    .field label {
        font-size: 0.62rem;
        font-weight: 600;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--violet);
    }

    .field input,
    .field select,
    .field textarea {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 0; /* sharp corners per spec */
        color: var(--text);
        font-family: 'Inter', sans-serif;
        font-size: 0.875rem;
        padding: 13px 15px;
        outline: none;
        width: 100%;
        -webkit-appearance: none;
        appearance: none;
        transition: border-color 0.2s, box-shadow 0.2s;
    }

        .field input::placeholder,
        .field textarea::placeholder {
            color: #403d40;
        }

        /* Gold bottom-border focus glow per spec */
        .field input:focus,
        .field select:focus,
        .field textarea:focus {
            border-color: var(--border);
            border-bottom-color: var(--gold);
            box-shadow: 0 1px 0 0 var(--gold), 0 4px 18px rgba(255,193,7,0.1);
        }

    .field textarea {
        resize: vertical;
        min-height: 130px;
        line-height: 1.65;
    }

    .field select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0.5 0.5L5 5L9.5 0.5' stroke='%239d0091' stroke-width='1.5' stroke-linecap='square' fill='none'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 14px center;
        padding-right: 36px;
        cursor: pointer;
    }

        .field select option {
            background: var(--surface);
            color: var(--text);
        }

/* — Form footer — */
.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.form-note {
    font-size: 0.75rem;
    color: var(--muted);
    line-height: 1.4;
}

/* — CTA Button: angular shape, gold fill, dark text — */
.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--gold);
    color: #16131a;
    border: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 30px;
    cursor: pointer;
    white-space: nowrap;
    clip-path: polygon(0 0, calc(100% - 11px) 0, 100% 11px, 100% 100%, 11px 100%, 0 calc(100% - 11px));
    transition: background 0.18s, transform 0.18s, opacity 0.18s;
}

    .btn-submit:hover {
        background: #ffd740;
        transform: translateY(-2px);
    }

    .btn-submit:active {
        transform: translateY(0);
    }

    .btn-submit:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
    }

    .btn-submit .arrow {
        transition: transform 0.18s;
    }

    .btn-submit:hover .arrow {
        transform: translateX(5px);
    }


/* ══════════════════════════════════════
           INFO PANEL (right column)
        ══════════════════════════════════════ */
.info-panel {
    background: var(--card);
    box-shadow: inset 2px 0 0 var(--violet); /* geometric left border */
    position: relative; text-align:right;
}

    /* Gold strip overlapping top of violet border */
    .info-panel::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 2px;
        height: 70px;
        background: var(--gold);
        z-index: 2;
    }

.panel-body {
    padding: 34px 26px 0;
}

.panel-tag {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 26px;
}

/* Info rows with polygon bullet icons */
.info-row {
    display: flex;
    gap: 13px;
    margin-bottom: 22px;
    align-items: flex-start;
}

.info-icon {
    width: 32px;
    height: 32px;
    background: rgba(157,0,145,0.11);
    clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .info-icon svg {
        width: 14px;
        height: 14px;
        stroke: var(--violet);
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.info-copy h4 {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--violet);
    margin-bottom: 4px;
}

.info-copy p,
.info-copy a {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.55;
    text-decoration: none;
    display: block;
}

    .info-copy a:hover {
        color: var(--gold);
    }

.panel-divider {
    height: 1px;
    background: var(--border);
    margin: 22px 0;
}

.social-tag {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
}

.social-row {
    display: flex;
    gap: 7px;
    padding-bottom: 26px;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.22s;
}

    .social-link svg {
        width: 14px;
        height: 14px;
        fill: currentColor;
    }

    .social-link:hover {
        border-color: var(--gold);
        color: var(--gold);
        background: rgba(255,193,7,0.06);
        transform: translateY(-4px);
    }


/* ══════════════════════════════════════
           MAP (dark embedded style)
        ══════════════════════════════════════ */
.map-area {
    height: 168px;
    border-top: 1px solid var(--border);
    background: #1a1819;
    position: relative;
    overflow: hidden;
}

.map-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
}

.pin-pulse {
    position: absolute;
    width: 20px;
    height: 20px;
    top: -10px;
    left: -10px;
    border: 1px solid rgba(255,193,7,0.4);
    border-radius: 50%;
    animation: pulse-out 2.6s ease-out infinite;
}

    .pin-pulse:nth-child(2) {
        animation-delay: 1.1s;
    }

@keyframes pulse-out {
    0% {
        transform: scale(0.5);
        opacity: 0.9;
    }

    100% {
        transform: scale(2.8);
        opacity: 0;
    }
}

.pin-center {
    position: absolute;
    width: 10px;
    height: 10px;
    top: -5px;
    left: -5px;
    background: var(--violet);
    border: 2px solid var(--gold);
    border-radius: 50%;
    z-index: 2;
}

.map-label {
    position: absolute;
    bottom: 9px;
    left: 11px;
    font-size: 0.57rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #3a3638;
    font-family: 'Space Grotesk', sans-serif;
}


/* ══════════════════════════════════════
           SECTION SEPARATOR
        ══════════════════════════════════════ */
.section-sep {
    max-width: 1160px;
    margin: 0 auto 56px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.sep-line {
    flex: 1;
    height: 1px;
    background: var(--border);
}

.sep-text {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
}


/* ══════════════════════════════════════
           FAQ ACCORDION
        ══════════════════════════════════════ */
.faq-section {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

    .faq-header h2 {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.6rem;
        font-weight: 600;
        color: var(--white);
        margin-bottom: 8px;
    }

    .faq-header p {
        font-size: 0.82rem;
        color: var(--muted);
    }

/* Sharp-bordered expandable items */
.faq-item {
    border: 1px solid var(--border);
    margin-bottom: 5px;
    transition: border-color 0.25s;
    text-align:right;
}

    .faq-item.is-open {
        border-color: rgba(157,0,145,0.5);
    }

.faq-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 17px 18px;
    cursor: pointer;
    user-select: none;
}

.faq-question {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: #a8a4a8;
    line-height: 1.4;
    transition: color 0.2s;
}

.faq-item.is-open .faq-question {
    color: var(--white);
}

/* Gold "+" toggle icon per spec */
.faq-toggle {
    width: 26px;
    height: 26px;
    border: 1px solid #393539;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: 19px;
    font-weight: 200;
    line-height: 1;
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), border-color 0.2s, background 0.2s;
}

.faq-item.is-open .faq-toggle {
    transform: rotate(45deg);
    border-color: rgba(255,193,7,0.5);
    background: rgba(255,193,7,0.07);
}

/* Grid-row transition (smooth, no max-height flash) */
.faq-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.32s ease;
}

.faq-item.is-open .faq-body {
    grid-template-rows: 1fr;
}

.faq-body-inner {
    overflow: hidden;
    min-height: 0;
}

.faq-answer {
    padding: 14px 18px 18px;
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.75;
    border-top: 1px solid var(--border);
}


/* ══════════════════════════════════════
           RESPONSIVE
        ══════════════════════════════════════ */
@media (max-width: 860px) {
    .contact-section {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .info-panel {
        order: -1;
    }
}

@media (max-width: 560px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .span-full {
        grid-column: 1;
    }

    .form-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

 
