﻿
:root {
    --plum: #3f1c46;
    --plum-light: #5a2864;
    --plum-deep: #2a1230;
    --sand: #e3dfdc;
    --sand-light: #f0ede9;
    --sand-dark: #ccc7c2;
    --cream: #faf8f5;
    --text-dark: #1a0e1e;
    --text-mid: #5a4f60;
    --gold: #c9a96e;
    --gold-light: #e8d5a3;
    --font-calisto: 'Calisto MT';
    --font-outfit: 'Outfit';
}


/* ── BREADCRUMB ── */
.breadcrumb {
    /* margin-top: 72px;  */
    padding: 16px 48px;
    font-size: 14px;
    letter-spacing: 0.06em;
    color: var(--text-mid);
    font-weight: 400;
    margin-bottom:0;
}

    .breadcrumb a {
        text-decoration: none;
        color: var(--text-mid);
    }

    .breadcrumb span {
        margin: 0 8px;
    }

/* ── HERO ── */
.hero {
    position: relative;
    background: var(--plum);
    padding: 88px 48px 80px;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 55% 65% at 88% 35%, rgba(201,169,110,0.12) 0%, transparent 65%), radial-gradient(ellipse 40% 55% at 8% 85%, rgba(255,255,255,0.03) 0%, transparent 58%);
    }

.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(227,223,220,0.07);
}

.hero-ring-1 {
    width: 480px;
    height: 480px;
    top: -180px;
    right: -110px;
}

.hero-ring-2 {
    width: 270px;
    height: 270px;
    top: -55px;
    right: 25px;
}

.hero-ring-3 {
    width: 600px;
    height: 600px;
    bottom: -310px;
    left: -190px;
    border-color: rgba(201,169,110,0.05);
}

.hero-inner {
    max-width: 1160px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: end;
}

.hero-eyebrow {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .hero-eyebrow::before {
        content: '';
        width: 32px;
        height: 1px;
        background: var(--gold);
    }

.hero-heading {
    font-family: var(--font-calisto);
    font-size: clamp(44px, 5.5vw, 72px);
    font-weight: 300;
    line-height: 1.07;
    color: var(--sand);
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}

    .hero-heading em {
        font-style: italic;
        color: var(--gold-light);
    }

.hero-sub {
    font-family: var(--font-calisto);
    font-size: 20px;
    font-style: italic;
    font-weight: 300;
    color: rgba(227,223,220,0.55);
    max-width: 540px;
    line-height: 1.65;
}

.hero-hours {
    flex-shrink: 0;
    border: 1px solid rgba(201,169,110,0.3);
    padding: 32px 36px;
    text-align: center;
    min-width: 220px;
    align-self: flex-end;
}

.hero-hours-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(227,223,220,0.45);
    margin-bottom: 14px;
    display: block;
}

.hero-hours-time {
    font-family: var(--font-calisto);
    font-size: 26px;
    font-weight: 300;
    color: var(--gold-light);
    line-height: 1.3;
    display: block;
}

.hero-hours-divider {
    width: 24px;
    height: 1px;
    background: var(--gold);
    margin: 14px auto;
}

.hero-hours-days {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: rgba(227,223,220,0.4);
    display: block;
}

/* ── PAGE BODY ── */
.page-body {
    max-width: 1320px;
    margin: 0 auto;
    padding: 80px 48px 96px;
    display: grid;
    grid-template-columns: 5fr 4fr;
    gap: 72px;
    align-items: start;
}

/* ── LEFT ── */
.left-col {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.section-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .section-label::before {
        content: '';
        width: 24px;
        height: 1px;
        background: var(--gold);
    }

.section-title {
    font-family: var(--font-calisto);
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 400;
    line-height: 1.12;
    color: var(--plum);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

    .section-title em {
        font-style: italic;
    }

.body-text {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.88;
    color: var(--text-mid);
}

    .body-text + .body-text {
        margin-top: 20px;
    }

/* ── CONTACT CHANNEL CARDS ── */
.channels {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--sand);
    margin-top: 8px;
}

.channel-card {
    background: var(--cream);
    display: grid;
    grid-template-columns: 64px 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 28px 28px;
    text-decoration: none;
    transition: background 0.28s;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.45s ease, transform 0.45s ease, background 0.28s;
}

    .channel-card.visible {
        opacity: 1;
        transform: none;
    }

    .channel-card:hover {
        background: var(--sand-light);
    }

.channel-icon-wrap {
    width: 52px;
    height: 52px;
    background: var(--plum);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.28s;
}

.channel-card:hover .channel-icon-wrap {
    background: var(--plum-light);
}

.channel-icon-wrap svg {
    width: 22px;
    height: 22px;
    color: var(--gold-light);
}

.channel-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}

.channel-desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.5;
}

.channel-arrow {
    font-size: 18px;
    color: var(--sand-dark);
    transition: color 0.28s, transform 0.28s;
    flex-shrink: 0;
}

.channel-card:hover .channel-arrow {
    color: var(--plum);
    transform: translateX(4px);
}

/* ── HOURS BLOCK ── */
.hours-block {
    background: var(--sand-light);
    padding: 36px 32px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.hours-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: var(--plum);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hours-icon svg {
        width: 22px;
        height: 22px;
        color: var(--gold-light);
    }

.hours-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--plum);
    margin-bottom: 8px;
}

.hours-detail {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.5;
}

    .hours-detail span {
        font-size: 14px;
        font-weight: 300;
        color: var(--text-mid);
        display: block;
        margin-top: 3px;
    }

/* ── RIGHT: CONTACT FORM ── */
.form-col {
    position: sticky;
    top: 100px;
}

.form-card {
    background: var(--plum);
    padding: 52px 44px;
    position: relative;
    overflow: hidden;
}

    .form-card::before {
        content: '';
        position: absolute;
        bottom: -60px;
        right: -60px;
        width: 220px;
        height: 220px;
        border: 1px solid rgba(201,169,110,0.1);
        border-radius: 50%;
    }

    .form-card::after {
        content: '';
        position: absolute;
        top: -40px;
        right: -40px;
        width: 130px;
        height: 130px;
        border: 1px solid rgba(227,223,220,0.06);
        border-radius: 50%;
    }

.form-eyebrow {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

    .form-eyebrow::before {
        content: '';
        width: 20px;
        height: 1px;
        background: var(--gold);
    }

.form-title {
    font-family: var(--font-calisto);
    font-size: clamp(28px, 2.5vw, 38px);
    font-weight: 300;
    line-height: 1.12;
    color: var(--sand);
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

    .form-title em {
        font-style: italic;
        color: var(--gold-light);
    }

.contact-form {
    position: relative;
    z-index: 1;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

    .form-row.full {
        grid-template-columns: 1fr;
    }

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(227,223,220,0.5);
}

.form-input, .form-select, .form-textarea {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(227,223,220,0.18);
    color: var(--sand);
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 300;
    padding: 14px 16px;
    outline: none;
    /* width: 100%; */
    transition: border-color 0.25s, background 0.25s;
    appearance: none;
    -webkit-appearance: none;
    resize: none;
}

.form-textarea {
    min-height: 110px;
    line-height: 1.6;
}

    .form-input::placeholder,
    .form-textarea::placeholder {
        color: rgba(227,223,220,0.22);
        font-size: 15px;
    }

    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
        border-color: var(--gold);
        background: rgba(255,255,255,0.09);
    }

.form-select option {
    background: var(--plum-deep);
    color: var(--sand);
    font-size: 15px;
}

.btn-submit {
    width: 100%;
    margin-top: 22px;
    background: var(--gold);
    color: var(--plum-deep);
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 18px 32px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

    .btn-submit:hover {
        background: var(--gold-light);
    }

.form-note {
    margin-top: 18px;
    position: relative;
    z-index: 1;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(227,223,220,0.4);
    text-align: center;
}

    .form-note a {
        color: var(--gold);
        text-decoration: none;
        font-weight: 400;
    }

        .form-note a:hover {
            text-decoration: underline;
        }



/* ── REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: none;
    }

.reveal-d1 {
    transition-delay: 0.1s;
}

.reveal-d2 {
    transition-delay: 0.2s;
}

.reveal-d3 {
    transition-delay: 0.3s;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-hours {
        align-self: flex-start;
    }

    .page-body {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .form-col {
        position: static;
    }
}

@media (max-width: 768px) {

    .breadcrumb {
        padding: 14px 20px;
    }

    .hero {
        padding: 64px 20px 60px;
    }

    .page-body {
        padding: 56px 20px 72px;
    }

    .form-card {
        padding: 36px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .channel-card {
        grid-template-columns: 52px 1fr;
    }

    .channel-arrow {
        display: none;
    }
}
