﻿/* HEADER */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #eee;
    padding-top: 8px;
    padding-bottom: 8px;
}

.header-inner {
    padding: 22px 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
}
.logo {
    justify-self: start;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
}

.header-right {
    justify-self: end;
}
.logo-title {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    font-size: 20px;
    color: #4f2f72;
    letter-spacing: .1px;
}
.logo-subtitle {
    font-size: 13px;
    font-weight: 500;
    color: #6f5a86; 
    margin-top: 4px;
    letter-spacing: .6px;
}


.main-nav {
    justify-self: center;
    display: flex;
    gap: 36px;
    align-items: center;
}

    .main-nav a {
        text-decoration: none;
        color: #7f6a85;
        transition: color .2s ease;
    }

        .main-nav a:hover {
            color: #8c2f39; 
        }

        .main-nav a.active {
            color: #8c2f39;
        }


.btn-book {
    text-decoration: none;
    background: #c14b2c;
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    white-space: nowrap;
}


/* HERO */
.hero {
    background: #ffffff;
    padding: 56px 0;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 28px;
}

.hero-text h1 {
    font-size: 54px;
    line-height: 1.05;
    margin: 0 0 14px;
    color: #5a3d7a;
}

.hero-subtitle {
    margin: 0 0 22px;
    font-size: 16px;
    color: #666;
    max-width: 52ch;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-placeholder {
    width: 100%;
    max-width: 420px;
    height: 260px;
    border-radius: 14px;
    background: #f3f0f7;
    border: 1px dashed #d8d2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8a7aa6;
    font-weight: 600;
}


/* Buttons (re-use) */
/* ===== HERO BUTTON SYSTEM ===== */

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Base */
.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .2px;
    text-decoration: none !important;
    transition: all .2s ease;
}

/* PRIMARY (главная) */
.hero-btn-primary {
    color: #fff !important;
    background-color: #c14b2c;
    box-shadow: 0 12px 26px rgba(193,75,44,.18);
}

    .hero-btn-primary:hover {
        filter: brightness(.95);
        box-shadow: 0 16px 32px rgba(193,75,44,.26);
    }

/* SECONDARY (вторая) */
.hero-btn-secondary {
    color: #5a3d7a;
    border: 1px solid rgba(90,61,122,.35);
    background: transparent;
}

    .hero-btn-secondary:hover {
        background: rgba(90,61,122,.06);
        border-color: #5a3d7a;
    }

.hero-media {
    display: flex;
    justify-content: flex-end;
}

    .hero-media img {
        width: 100%;
        max-width: 420px;
        height: auto;
        border-radius: 14px;
    }

/* EVENTS SECTION */
.aw-breadcrumbs {
    margin-bottom: 14px;
    font-size: 13px;
    color: #8c859a;
}

    .aw-breadcrumbs a {
        color: #8c859a;
        text-decoration: none;
    }

        .aw-breadcrumbs a:hover {
            color: #c14b2c;
        }

    .aw-breadcrumbs span {
        margin: 0 6px;
    }
.events-section {
    padding: 44px 0 10px;
    background: #ffffff;
}

.events-head {
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.events-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #4f2f72;
}

.events-viewall {
    text-decoration: none;
    color: #6f5a86;
    font-weight: 600;
}

    .events-viewall:hover {
        color: #3d235c;
    }

/* GRID */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

/* CARD */
.event-card {
    border-radius: 12px;
    background: #f6f1fb;
    box-shadow: 0 10px 24px rgba(0,0,0,.08);
    overflow: hidden;
}

.event-image {
    position: relative;
    padding: 12px 12px 0;
}

    .event-image img {
        width: 100%;
        height: 150px;
        object-fit: cover;
        border-radius: 10px;
        display: block;
    }

.event-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 6px 13px;
    border-radius: 999px;
    background: rgba(255, 248, 250, 0.92);
    border: 1px solid rgba(95, 26, 36, 0.14);
    box-shadow: 0 10px 24px rgba(17,12,46,.08);
    backdrop-filter: blur(6px);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .45px;
    text-transform: uppercase;
    line-height: 1;
    color: #5f1a24;
}

.event-body {
    padding: 12px 16px 16px;
}

.event-title {
    margin: 6px 0 6px;
    font-size: 18px;
    font-weight: 800;
    color: #3d235c;
}

.event-meta {
    margin: 0 0 8px;
    font-size: 12px;
    color: #6d6678;
}

.event-dot {
    margin: 0 6px;
}

.event-address {
    margin: 0 0 12px;
    font-size: 12px;
    color: #7b7486;
}

.event-btn {
    display: block;
    width: 80%; 
    margin: 0 auto; 

    text-align: center;
    text-decoration: none;
    background: #c14b2c;
    color: #fff;
    padding: 12px 0;
    border-radius: 8px;
    font-weight: 700;
    transition: all .2s ease;
}

    .event-btn:hover {
        transform: translateY(-1px);
        filter: brightness(.95);
    }

.event-badge.badge-new {
    background: rgba(255, 248, 250, 0.92);
    color: #5a3d7a;
    border-color: rgba(90, 61, 122, 0.16);
}

.event-badge.badge-almost-full {
    background: rgba(255, 250, 245, 0.94);
    color: #c14b2c;
    border-color: rgba(193, 75, 44, 0.18);
}

.event-badge.badge-sold-out {
    background: rgba(95, 26, 36, 0.88);
    color: #fff;
    border: 1px solid rgba(95, 26, 36, 0.72);
    box-shadow: 0 10px 22px rgba(95,26,36,.14);
}

.event-badge.badge-coming {
    background: rgba(238, 233, 246, 0.9);
    color: #5a3d7a;
    border-color: rgba(90, 61, 122, 0.16);
}

.event-badge.badge-canceled {
    background: rgba(120, 120, 120, 0.85);
    color: #fff;
    border-color: rgba(120,120,120,.6);
}

    /* General Style */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.event-ended {
    display: inline-block;
    margin: 10px auto 0;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(95,26,36,.08);
    font-size: 12px;
    font-weight: 700;
    color: #5f1a24;
}

.event-card.past {
    opacity: 0.7;
}

.badge-ended {
    background: rgba(95,26,36,.10);
    color: #5f1a24;
}

.event-link {
    display: block;
    text-align: center;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #8c859a;
    text-decoration: none;
    transition: color .2s ease;
}

    .event-link:hover {
        color: #c14b2c;
    }

/* Responsive */
@media (max-width: 980px) {
    .events-grid {
        grid-template-columns: 1fr;
    }

    .event-image img {
        height: 180px;
    }
}

/* NEWSLETTER */
.newsletter-section {
    padding: 24px 0 28px;
    background: #ffffff; 
}

.newsletter-card {
    background: #eee9f7; 
    border-radius: 12px;
    padding: 22px 18px;
    text-align: center;
    border: 1px solid rgba(79,47,114,.08);
}

.newsletter-title {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 800;
    color: #4f2f72;
}

.newsletter-subtitle {
    margin: 0 0 16px;
    font-size: 14px;
    color: #6f5a86;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    max-width: 520px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    min-width: 0;
    padding: 12px 14px;
    border-radius: 8px 0 0 8px;
    border: 1px solid #d8d2e6;
    font-size: 14px;
    outline: none;
    background: #fff;
}

.newsletter-btn {
    padding: 12px 18px;
    border: 1px solid #4f6a3f;
    background: #5d774a;
    color: #fff;
    font-weight: 600;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
}

    .newsletter-btn:hover {
        filter: brightness(.95);
    }

/* Mobile Version */
@media (max-width: 560px) {
    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-input {
        border-radius: 8px;
    }

    .newsletter-btn {
        border-radius: 8px;
    }
}

/* STATUS PILLS */
.status-pills {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin: 24px 0;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(0,0,0,.08);
}

.pill-check {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.28);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    flex: 0 0 18px;
}


.pill-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: rgba(255,255,255,.28);
}

/* Colors */
.pill-registered {
    background: #3f7d4e;
    color: #fff;
}

.pill-pending {
    background: #e1b12c;
    color: #fff;
}

.pill-cancelled {
    background: #d64541;
    color: #fff;
}

.pill-details {
    background: #546de5;
    color: #fff;
}

/* Optional active state */
.pill.is-active {
    outline: 3px solid rgba(79,47,114,.18);
    transform: translateY(-1px);
}

.pill:hover {
    filter: brightness(.96);
    transform: translateY(-1px);
}

/* FEATURES */
.features-section {
    padding: 24px 0 50px;
    background: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.feature-item img {
    height: 120px;
    width: auto;
    display: block;
    margin: 0 auto 12px;
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #4f2f72;
    margin-bottom: 8px;
    margin: 0 0 6px;
}

.feature-item p {
    font-size: 14px;
    color: #6d6678;
    margin: 0;
}

/* FAQ */
/* ===== Boutique FAQ ===== */
.faq-boutique {
    padding: 64px 0;
    background: #ffffff;
}

.faq-boutique__head {
    text-align: center;
    margin-bottom: 28px;
}

.faq-boutique__title {
    margin: 0 0 8px;
    font-size: 34px;
    font-weight: 900;
    color: #4f2f72;
    letter-spacing: .2px;
}

.faq-boutique__subtitle {
    margin: 0;
    color: #6f5a86;
    font-size: 14px;
}

.faq-boutique__list {
    max-width: 980px;
    margin: 0 auto;
    border-top: 1px solid rgba(79,47,114,.14);
}

.faq-boutique__item {
    border-bottom: 1px solid rgba(79,47,114,.14);
}

.faq-boutique__q {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 20px 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
    color: #3d235c;
    font-weight: 400;
    font-size: 17px;
    letter-spacing: 0.2px;
    transition: color .2s ease, transform .2s ease;
}

    .faq-boutique__q:hover {
        color: #5f1a24;
    }

    .faq-boutique__q:active {
        transform: translateY(1px);
    }

.faq-boutique__chev {
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(140,47,57,.9);
    border-bottom: 2px solid rgba(140,47,57,.9);
    transform: rotate(45deg);
    transition: transform .25s ease, opacity .2s ease;
    opacity: .95;
    flex-shrink: 0;
}

.faq-boutique__item.is-open .faq-boutique__chev {
    transform: rotate(-135deg);
}

/* answer panel */
.faq-boutique__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-boutique__inner {
    padding: 0 6px 18px;
    color: #6d6678;
    line-height: 1.75;
    font-size: 14px;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity .25s ease, transform .25s ease;
}

.faq-boutique__item.is-open .faq-boutique__inner {
    opacity: 1;
    transform: translateY(0);
}

.faq-list-elegant {
    list-style: none;
    padding-left: 0;
    margin: 14px 0 0;
}

    .faq-list-elegant li {
        position: relative;
        padding-left: 22px;
        margin-bottom: 8px;
        color: #6d6678;
        font-size: 15px;
    }

        .faq-list-elegant li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 9px;
            width: 6px;
            height: 6px;
            background-color: #5f1a24; 
            border-radius: 50%;
        }
/* FAQ paragraph */
.faq-p {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.6;
    color: #6d6678;
}

/* Checklist */
.faq-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
}

    /* List item */
    .faq-checklist li {
        position: relative;
        padding-left: 26px;
        margin-bottom: 8px;
        font-size: 14px;
        color: #5a5166;
    }

        /* Wine check icon */
        .faq-checklist li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            font-size: 14px;
            font-weight: 700;
            color: #5f1a24;
        }
.aw-page-breadcrumbs {
    background: #ffffff;
    padding: 28px 0 0;
}

.aw-breadcrumbs {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    color: #6f5a86;
}

    .aw-breadcrumbs a {
        color: #4f2f72;
        text-decoration: none;
        transition: color .2s ease;
    }

        .aw-breadcrumbs a:hover {
            color: #5f1a24;
        }

    .aw-breadcrumbs span:last-child {
        color: #8a7a99;
    }

/* ===== Neurographic Art Page ===== */

.neuro-page {
    padding-top: 72px;
    padding-bottom: 80px;
}

    .neuro-page .faq-boutique__title {
        font-size: 38px;
    }

    .neuro-page .faq-boutique__subtitle {
        max-width: 560px;
        margin: 0 auto;
    }

.neuro-page__cta {
    max-width: 980px;
    margin: 34px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.neuro-page__link {
    color: #4f2f72;
    text-decoration: none;
    font-size: 14px;
    transition: color .2s ease;
}

    .neuro-page__link:hover {
        color: #5f1a24;
    }

.faq-boutique__q {
    transition: all .2s ease;
}

    .faq-boutique__q:hover {
        padding-left: 10px;
    }
/* Neuro CTA tweak */


.neuro-cta {
    max-width: 720px;
    margin: 60px auto 0;
    text-align: center;
}

.neuro-cta-title {
    font-family: "Playfair Display", serif;
    font-size: 38px;
    color: #5a3d7a;
    margin-bottom: 10px;
    line-height: 1.2;
}

.neuro-cta-btn {
    width: 380px;
    max-width: 100%;
    margin: 0 auto;
}

    .neuro-cta-btn .aw-res-btn {
        display: block;
        width: 100%;
        text-align: center;
        text-decoration: none !important;
    }
    .neuro-cta .aw-res-title {
        font-size: 34px;
        margin-bottom: 10px;
    }

    .neuro-cta .aw-res-note {
        margin-bottom: 18px;
    }

.neuro-cta-link {
    margin-top: 14px;
}

    .neuro-cta-link a {
        font-size: 13px;
        color: #7b7486;
        text-decoration: none;
        transition: color .2s ease;
    }

        .neuro-cta-link a:hover {
            color: #5f1a24;
        }
.aw-res-btn {
    text-decoration: none !important;
}
/*CREATE EVENT CARD*/
:root {
    --aw-burgundy: #5f1a24;
    --aw-lav-bg: #EEE9F6;
    --aw-sage: #8A9A81;
    --aw-lav: #B386DC;
    --aw-orange: #c14b2c;
    --aw-ink: #201524;
    --aw-line: rgba(32,21,36,.14);
}

.aw-page {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 12px;
    background: #ffffff;
}

.aw-card {
    width: min(560px, 100%);
    background: rgba(255,255,255,.94);
    border-radius: 18px;
    border: 1px solid rgba(95,26,36,.18); 
    box-shadow: 0 22px 60px rgba(17,12,46,.14);
    padding: 22px;
    position: relative;
}

.aw-title {
    text-align: center;
    font-family: "Playfair Display", serif;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: .6px;
    color: #5A3D7A;
    margin: 6px 0 18px;
}

.aw-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.aw-field {
    margin-bottom: 10px;
}

    .aw-field label {
        margin: 0 0 6px;
        font-size: 14px;
        line-height: 1.6;
        font-weight: 500;
        color: #6d6678;
    }

.aw-input {
    font-size: 14px;
    color: #5a5166;
    padding: 10px 12px !important;
    box-shadow: 0 8px 20px rgba(17,12,46,.07);
}

    .aw-input:hover {
        border-color: rgba(179,134,220,.55) !important;
    }

    .aw-input textarea, /*event details*/
    textarea.aw-input {
        resize: none;
        min-height: 110px;
    }

    .aw-input:focus,
    .form-control:focus {
        border-color: #5f1a24 !important;
        box-shadow: 0 0 0 3px rgba(95,26,36,.15) !important;
    }

.aw-time::-webkit-calendar-picker-indicator {
    opacity: .95;
    cursor: pointer;
}

.aw-btn {
    border: none !important;
    border-radius: 14px !important;
    padding: 11px 16px !important;
    font-weight: 900 !important;
    color: #fff !important;
    background: linear-gradient(180deg, #c14b2c, #a93b22) !important;
    box-shadow: 0 16px 34px rgba(193,75,44,.28) !important;
}

    .aw-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 18px 40px rgba(193,75,44,.32) !important;
    }

@media (max-width: 720px) {
    .aw-grid {
        grid-template-columns: 1fr;
    }

    .aw-title {
        font-size: 26px;
    }
}

/* ===== Reservation Card — Boutique Editorial 2026 ===== */

.aw-res-card {
    width: min(560px, 100%);
    margin: 0 auto;
    background: rgba(255,255,255,.95);
    border-radius: 22px;
    border: 1px solid rgba(95,26,36,.10);
    box-shadow: 0 40px 100px rgba(17,12,46,.08);
    padding: 28px;
}

/* TITLE */
.aw-res-title {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    font-weight: 600;
    line-height: 1.08;
    color: #5A3D7A;
    margin: 0 0 18px;
    letter-spacing: .3px;
    text-align: center;
}

/* IMAGE */
.aw-res-img {
    width: 100%;
    display: block;
    border-radius: 18px;
    margin-bottom: 22px;
    box-shadow: 0 20px 50px rgba(17,12,46,.10);
}

/* META */
.aw-res-lines {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.aw-res-line {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 15px;
    color: #6d6678;
}

.aw-res-ico {
    opacity: .7;
}

/* PRICE */

.aw-res-price {
    text-align: center;
    margin: 22px 0 26px;
}

.aw-res-priceval {
    font-size: 48px;
    font-weight: 700;
    color: var(--aw-burgundy);
    letter-spacing: .3px;
}

.aw-res-priceunit {
    margin-top: 4px;
    font-size: 13px;
    font-weight: 500;
    color: #7b7486;
}

/* GUESTS */
.aw-res-guests {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f7f3fb;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid rgba(179,134,220,.20);
    margin-bottom: 24px;
}

.aw-res-guests-label {
    font-size: 14px;
    font-weight: 700;
    color: #4f2f72;
}

/* Stepper */
.aw-stepper {
    display: inline-flex;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(179,134,220,.40);
    background: #fff;
}

.aw-step {
    width: 44px;
    height: 40px;
    border: 0;
    background: #fff;
    font-size: 18px;
    font-weight: 800;
    color: #4f2f72;
    cursor: pointer;
}

    .aw-step:hover {
        background: rgba(179,134,220,.08);
    }

.aw-step-val {
    width: 60px;
    height: 40px;
    border: 0;
    text-align: center;
    font-size: 15px;
    font-weight: 800;
    color: #4f2f72;
    outline: none;
    border-left: 1px solid rgba(179,134,220,.30);
    border-right: 1px solid rgba(179,134,220,.30);
}

/* CTA */
.aw-res-btn {
    width: 100%;
    border-radius: 18px !important;
    padding: 15px 0 !important;

    font-size: 17px;
    font-weight: 600 !important;
    letter-spacing: .2px;

    border: none !important;
    color: #fff !important;
    background-color: #c14b2c !important;

    box-shadow: 0 12px 26px rgba(193,75,44,.18) !important;

    transition:
        background-color .18s ease,
        box-shadow .18s ease,
        filter .18s ease;
}

/* Hover — subtle darken + slightly deeper shadow */
.aw-res-btn:hover {
    filter: brightness(.95);
    box-shadow: 0 16px 32px rgba(193,75,44,.26) !important;
}

/* Focus — clean accessibility ring */
.aw-res-btn:focus-visible {
    outline: none;
    box-shadow:
        0 16px 32px rgba(193,75,44,.26),
        0 0 0 4px rgba(193,75,44,.18) !important;
}

/* Active — gentle tactile press */
.aw-res-btn:active {
    filter: brightness(.92);
    box-shadow: 0 8px 18px rgba(193,75,44,.20) !important;
}

.aw-res-note {
    text-align: center;
    font-size: 13px;
    color: #7b7486;
    margin-bottom: 16px;
}


/* ===== Class Details ===== */

.aw-res-details {
    margin-top: 18px;
    border-top: 1px solid rgba(79,47,114,.14);
    padding-top: 14px;
}

.aw-res-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
    font-weight: 400;
    font-size: 17px;
    color: #3d235c;
    padding: 12px 0;
    list-style: none;
    transition: color .2s ease;
}

    .aw-res-summary:hover {
        color: #5f1a24;
    }

    /* remove default arrow */
    .aw-res-summary::-webkit-details-marker {
        display: none;
    }

/* Chevron same as FAQ */
.aw-res-chev {
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(140,47,57,.9);
    border-bottom: 2px solid rgba(140,47,57,.9);
    transform: rotate(45deg);
    transition: transform .25s ease;
    flex-shrink: 0;
}

/* Rotate when open */
.aw-res-details[open] .aw-res-chev {
    transform: rotate(-135deg);
}

/* Body */
.aw-res-details-body {
    margin-top: 10px;
    color: #6d6678;
    line-height: 1.75;
    font-size: 14px;
}
/* Responsive */
@media (max-width: 720px) {
    .aw-res-title {
        font-size: 32px;
    }
}

/*=====CLIENTS CONFIRMATION=====*/

.aw-page {
    padding: 60px 16px;
}

/* confirmation */
.aw-res-card.confirmation {
    padding: 36px 32px;
}

/* success accent */
.aw-confirm-badge {
    width: 54px;
    height: 54px;
    margin: 0 auto 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(179,134,220,.15);
    border: 1px solid rgba(179,134,220,.35);
    color: #4f2f72;
    font-size: 22px;
    box-shadow: 0 14px 40px rgba(17,12,46,.06);
}

/* Receipt rows look more premium */
.aw-confirm-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    border-radius: 14px;
    background: #f7f3fb;
    border: 1px solid rgba(179,134,220,.20);
    margin-bottom: 12px;
}

.aw-confirm-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #6d6678;
}

.aw-confirm-value {
    font-size: 16px;
    font-weight: 800;
    color: #4f2f72;
}

/* Info paragraph */
.aw-confirm-note {
    text-align: center;
    font-size: 14px;
    color: #6d6678;
    line-height: 1.7;
    margin: 18px 0 24px;
}

/* Keep your orange CTA but slightly softer after success */
.aw-res-btn.confirm-btn {
    margin-top: 8px;
}

/* ===== Confirmation extras (use your aw-res styles) ===== */

.aw-confirm-card {
  text-align: center;
}

.aw-confirm-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(179,134,220,.35);
  background: rgba(179,134,220,.10);
  color: #4f2f72;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: -4px auto 16px;
}

.aw-confirm-img{
  margin-bottom: 18px; 
}

.aw-confirm-lines{
  margin-bottom: 16px;
  text-align: left;
}

.aw-confirm-chips{
  display: grid;
  gap: 12px;
  margin: 18px 0 18px;
}

.aw-confirm-chip{
  background: #f7f3fb;
  border: 1px solid rgba(179,134,220,.20);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  text-align: left;
}

.aw-confirm-label{
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #7b7486;
}

.aw-confirm-value{
  font-weight: 800;
  color: #4f2f72;
  font-size: 16px;
}

.aw-confirm-message{
  color: #6d6678;
  font-size: 14px;
  line-height: 1.7;
  margin: 10px 0 18px;
}

.aw-confirm-sub{
  margin-top: 6px;
  font-size: 13px;
  color: #7b7486;
}

.aw-confirm-link{
  color: #5A3D7A;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.aw-confirm-btn{
  max-width: 360px;
  margin: 0 auto;
}

/* ===== Confirmation typography refinement ===== */

.aw-confirm-title {
    margin-bottom: 6px;
}

.aw-confirm-subtitle {
    text-align: center;
    font-size: 13px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(90,61,122,.65);
    margin-bottom: 22px;
}

/* Button not too wide */
.aw-confirm-btn {
    max-width: 360px;
    margin: 0 auto;
    display: block;
}

/* ===== Values: Together • Create • Explore ===== */


.aw-values {
    padding: 56px 12px;
    background: #ffffff;
}

.aw-values-wrap {
    width: min(920px, 100%);
    margin: 0 auto;
    background: rgba(255,255,255,.95);
    border-radius: 22px;
    border: 1px solid rgba(95,26,36,.10);
    box-shadow: 0 40px 100px rgba(17,12,46,.06);
    padding: 34px 28px;
}

/* Kicker */
.aw-values-kicker {
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 12px;
    font-weight: 700;
    color: rgba(79,47,114,.70);
    text-align: center;
}

/* Title */
.aw-values-title {
    font-family: "Playfair Display", serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.12;
    color: #3d235c;
    margin: 0 0 14px;
    letter-spacing: .2px;
    text-align: center;
}

/* Lead paragraph */
.aw-values-lede {
    margin: 0 auto 22px;
    max-width: 720px;
    text-align: center;
    font-size: 15px;
    line-height: 1.8;
    color: #6d6678;
}

/* Triad chips */
.aw-values-triad {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 14px;
}

.aw-values-chip {
    background: #f7f3fb;
    border: 1px solid rgba(179,134,220,.22);
    border-radius: 16px;
    padding: 16px 16px;
}

.aw-values-chip-title {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 18px;
    color: #4f2f72;
    margin-bottom: 6px;
    letter-spacing: .15px;
}

.aw-values-chip-text {
    display: block;
    font-size: 14px;
    line-height: 1.7;
    color: #6d6678;
}

/* Divider */
.aw-values-divider {
    width: 80px;
    height: 2px;
    margin: 22px auto 18px;
    background: rgba(95,26,36,.18);
    border-radius: 2px;
}

/* CTA inside values card */
.aw-values-cta {
    text-align: center;
    margin-top: 8px;
}

.aw-values-cta-title {
    margin: 0 0 8px;
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 600;
    color: #3d235c;
    line-height: 1.2;
}

.aw-values-cta-text {
    margin: 0 auto 14px;
    max-width: 560px;
    font-size: 15px;
    line-height: 1.8;
    color: #6d6678;
}

.aw-values-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.aw-values-cta-btn {
    width: min(420px, 100%);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Secondary link */
.aw-about-cta-link {
    font-size: 14px;
    color: #4f2f72;
    text-decoration: none;
    border-bottom: 1px solid rgba(79,47,114,.25);
    padding-bottom: 2px;
    transition: color .2s ease, border-color .2s ease;
}

    .aw-about-cta-link:hover {
        color: #5f1a24;
        border-color: rgba(95,26,36,.35);
    }

/* Responsive */
@media (max-width: 820px) {
    .aw-values-title {
        font-size: 30px;
    }

    .aw-values-triad {
        grid-template-columns: 1fr;
    }

    .aw-values-wrap {
        padding: 26px 18px;
    }
}

/* On wider screens: button + link in a row */
@media (min-width: 720px) {
    .aw-values-cta-actions {
        flex-direction: row;
    }

    .aw-values-cta-btn {
        width: auto;
        min-width: 320px;
    }

    .aw-about-cta-link {
        border-bottom: 0;
        padding: 0 10px;
        opacity: .9;
    }
}
/* CONTACT */

.aw-contact {
    padding: 60px 12px;
    background: #fff;
}

.aw-contact-wrap {
    width: min(900px, 100%);
    margin: 0 auto;
    background: rgba(255,255,255,.96);
    border-radius: 24px;
    border: 1px solid rgba(95,26,36,.10);
    box-shadow: 0 40px 100px rgba(17,12,46,.06);
    padding: 40px 30px;
}

.aw-contact-kicker {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 12px;
    font-weight: 700;
    color: rgba(79,47,114,.70);
    margin-bottom: 10px;
}

.aw-contact-title {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    font-weight: 600;
    text-align: center;
    color: #3d235c;
    margin-bottom: 12px;
}

.aw-contact-lede {
    text-align: center;
    font-size: 15px;
    color: #6d6678;
    line-height: 1.8;
    margin-bottom: 30px;
}

.aw-contact-card {
    background: #f7f3fb;
    border: 1px solid rgba(179,134,220,.22);
    border-radius: 20px;
    padding: 24px;
}

.aw-contact-form {
    display: grid;
    gap: 16px;
}

.aw-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.aw-field {
    display: grid;
    gap: 6px;
}

.aw-field-label {
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(79,47,114,.70);
}

.aw-field-input {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(95,26,36,.15);
    padding: 14px 14px;
    font-size: 14px;
    background: #fff;
    outline: none;
    transition: all .2s ease;
    box-sizing: border-box;
}

    .aw-field-input:focus {
        border-color: #c14b2c;
        box-shadow: 0 0 0 4px rgba(193,75,44,.12);
    }

.aw-field-textarea {
    resize: vertical;
    min-height: 140px;
}

.aw-contact-btn {
    display: inline-block;
    padding: 14px 42px; 
    font-size: 16px;
    border-radius: 999px;
    margin: 28px auto 0;
}

.aw-contact-note {
    text-align: center;
    margin-top: 12px;

}

.aw-form-error {
    background: #fff0f0;
    color: #9c2b2b;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
}

.aw-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Responsive */

@media (max-width: 820px) {

    .aw-contact-title {
        font-size: 32px;
    }

    .aw-contact-grid {
        grid-template-columns: 1fr;
    }

    .aw-contact-wrap {
        padding: 30px 20px;
    }

    .aw-contact-btn {
        width: 100%;
    }
}
    /* ===== Auth ===== */
    .aw-form-val {
        font-size: 12.5px;
        color: #8c2f39;
        line-height: 1.4;
    }

    .aw-auth-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-top: 2px;
    }

    .aw-auth-check {
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 0;
        color: #6d6678;
        font-size: 14px;
    }

        .aw-auth-check input {
            width: 18px;
            height: 18px;
            accent-color: #5f1a24; /* wine */
        }

    /* FORCE: auth link color (wins over Bootstrap) */
    .aw-contact-note a.aw-auth-link,
    .aw-contact-note a.aw-auth-link:visited,
    .aw-contact-note a.aw-auth-link:hover,
    .aw-contact-note a.aw-auth-link:active {
        color: #5f1a24 !important;
        text-decoration: none;
        border-bottom: 1px solid rgba(95,26,36,.25);
        padding-bottom: 2px;
        transition: color .2s ease, border-color .2s ease;
    }

        .aw-contact-note a.aw-auth-link:hover {
            color: #7a2230 !important;
            border-bottom-color: rgba(95,26,36,.5);
        }
/*Admin Create Event Card*/
.aw-admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

/*Success*/

.aw-admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.aw-res-btn-secondary {
    border-radius: 18px !important;
    padding: 12px 22px !important;
    font-size: 16px;
    font-weight: 600 !important;
    color: #5A3D7A !important;
    background: #fff !important;
    border: 1px solid rgba(90,61,122,.22) !important;
    box-shadow: 0 10px 24px rgba(17,12,46,.05);
    transition: .18s ease;
    text-decoration: none !important;
}

    .aw-res-btn-secondary:hover {
        background: #faf7fd !important;
        color: #5f1a24 !important;
    }

.aw-res-btn-danger-soft {
    border-radius: 18px !important;
    padding: 12px 22px !important;
    font-size: 16px;
    font-weight: 600 !important;
    color: #c14b2c !important;
    background: #fff !important;
    border: 1px solid rgba(193,75,44,.28) !important;
    box-shadow: 0 10px 24px rgba(17,12,46,.05);
    transition: .18s ease;
    text-decoration: none !important;
}

    .aw-res-btn-danger-soft:hover {
        background: rgba(193,75,44,.05) !important;
        color: #5f1a24 !important;
    }

.aw-success {
    margin: 0 auto 18px;
    max-width: 560px;
    text-align: center;
    font-size: 13px;
    font-style: italic;
    color: rgba(95,26,36,.82);
}
/* ===== Footer — Boutique Editorial 2026 ===== */

/*Social Networks*/
.aw-footer {
    margin-top: 60px;
    padding: 40px 0 30px;
    background: #fff;
    border-top: 1px solid rgba(95,26,36,.08);
}

.aw-footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

/* Brand */
.aw-footer-title {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 600;
    color: #5a3d7a;
}

.aw-footer-subtitle {
    font-size: 13px;
    color: #7b7486;
    text-align: center;
}

/* Socials */
.aw-footer-socials {
    display: flex;
    gap: 12px;
}

.aw-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(95,26,36,.12);
    font-size: 12px;
    font-weight: 700;
    color: #5a3d7a;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(17,12,46,.06);
    transition: all .2s ease;
}

    .aw-social:hover {
        transform: translateY(-2px);
        color: #c14b2c;
        box-shadow: 0 12px 28px rgba(17,12,46,.12);
    }

/* Copy */
.aw-footer-copy {
    font-size: 12px;
    color: #9a94a6;
}

.aw-social svg {
    display: block;
}

