/* ============================================================
   ALLEL BEAUTY - Main Stylesheet
   Palette: Black #0a0a0a | Deep Purple #6b1f6b | 
            Beige #e8dfd0 | White #ffffff
   Fonts: Cormorant Garamond (display) + Jost (body)
============================================================ */

:root {
    --black:       #0a0a0a;
    --purple:      #6b1f6b;
    --purple-dark: #4a1450;
    --purple-light:#8c2e8c;
    --beige:       #e8dfd0;
    --beige-dark:  #c8b89e;
    --white:       #ffffff;
    --off-white:   #faf8f5;
    --gray-light:  #f5f2ee;
    --gray-mid:    #9a9087;
    --text-dark:   #1a1a1a;
    --text-mid:    #555555;

    --font-display: 'Cormorant Garamond', serif;
    --font-body:    'Jost', sans-serif;

    --transition: 0.35s ease;
    --shadow-sm:  0 4px 20px rgba(0,0,0,0.07);
    --shadow-md:  0 10px 40px rgba(0,0,0,0.12);
    --shadow-lg:  0 20px 60px rgba(0,0,0,0.18);
    --radius:     4px;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; transition: var(--transition); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
}

/* ============================================================
   TOP BAR
============================================================ */
.topbar {
    background: var(--black);
    color: var(--beige);
    font-size: 12px;
    letter-spacing: 0.08em;
    padding: 8px 0;
}
.topbar a { color: var(--beige); opacity: 0.75; }
.topbar a:hover { opacity: 1; color: var(--purple-light); }

/* ============================================================
   NAVBAR
============================================================ */
#mainNav {
    background: var(--black);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: all 0.4s ease;
    z-index: 1000;
}

#mainNav.scrolled {
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.navbar-brand { display: flex; align-items: center; }

.logo-light { height: 60px; display: block; }
.logo-dark  { height: 60px; display: none; }

#mainNav.light-nav .logo-light { display: none; }
#mainNav.light-nav .logo-dark  { display: block; }

.navbar-nav .nav-link {
    color: rgba(232, 223, 208, 0.8) !important;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 8px 16px !important;
    position: relative;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 1px;
    background: var(--purple-light);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--beige) !important;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-toggler {
    border: 1px solid rgba(232, 223, 208, 0.3);
    padding: 6px 10px;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28232, 223, 208, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================================
   BUTTONS
============================================================ */
.btn-brand {
    background: var(--purple);
    color: var(--white) !important;
    border: 1.5px solid var(--purple);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: var(--radius);
    transition: all 0.3s ease;
}
.btn-brand:hover {
    background: var(--purple-dark);
    border-color: var(--purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 31, 107, 0.4);
}

.btn-brand-outline {
    background: var(--beige);
    color: var(--black) !important;
    border: 1.5px solid var(--beige-dark);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: var(--radius);
    transition: all 0.3s ease;
}
.btn-brand-outline:hover {
    background: var(--beige);
    color: var(--black) !important;
    transform: translateY(-2px);
}

.btn-brand-light {
    background: transparent;
    color: var(--purple) !important;
    border: 1.5px solid var(--purple);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: var(--radius);
    transition: all 0.3s ease;
}
.btn-brand-light:hover {
    background: var(--purple);
    color: var(--white) !important;
    transform: translateY(-2px);
}

/* ============================================================
   SECTION HEADINGS
============================================================ */
.section-label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--purple);
    display: block;
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    color: var(--black);
    line-height: 1.15;
    margin-bottom: 20px;
}

.section-title.light { color: var(--white); }

.section-divider {
    width: 48px;
    height: 2px;
    background: var(--purple);
    margin: 0 auto 40px;
}
.section-divider.left { margin: 0 0 40px; }

/* ============================================================
   HERO SECTION
============================================================ */
.hero {
    background: var(--black);
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 60%, rgba(107,31,107,0.18) 0%, transparent 65%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--purple-light);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--purple-light);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 300;
    color: var(--beige);
    line-height: 1.05;
    margin-bottom: 28px;
}
.hero-title em {
    font-style: italic;
    color: var(--purple);
}

.hero-text {
    font-size: 15px;
    color: rgba(232,223,208,0.65);
    line-height: 1.8;
    max-width: 460px;
    margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-image-wrap {
    position: relative;
    z-index: 2;
}
.hero-image-wrap img {
    width: 100%;
    max-height: 88vh;
    object-fit: cover;
    object-position: top center;
    border-radius: 2px;
    filter: grayscale(10%);
}
.hero-image-wrap::before {
    content: '';
    position: absolute;
    inset: -12px;
    border: 1px solid rgba(107,31,107,0.4);
    border-radius: 2px;
    z-index: -1;
}

/* ============================================================
   STATS BAR
============================================================ */
.stats-bar {
    background: var(--off-white);
    padding: 50px 0;
    border-bottom: 1px solid var(--beige-dark);
}

.stat-item {
    text-align: center;
    padding: 10px 20px;
    position: relative;
}
.stat-item + .stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 1px;
    background: var(--beige-dark);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--purple);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-mid);
}

/* ============================================================
   ABOUT SECTION
============================================================ */
.about-section {
    padding: 110px 0;
    background: var(--white);
}

.about-image-stack {
    position: relative;
}
.about-image-stack .img-main {
    width: 80%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 2px;
    margin-left: auto;
    display: block;
}
.about-image-stack .img-accent {
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 50%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 2px;
    border: 6px solid var(--white);
    box-shadow: var(--shadow-md);
}

.feature-list { list-style: none; padding: 0; margin: 24px 0; }
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-mid);
}
.feature-list li i {
    color: var(--purple);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================================
   SERVICES SECTION
============================================================ */
.services-section {
    padding: 110px 0;
    background: var(--off-white);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.35s ease;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid transparent;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(107,31,107,0.12);
}

.service-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-card:hover .service-card-img {
    transform: scale(1.05);
}

.service-card-img-wrap {
    overflow: hidden;
    position: relative;
}
.service-card-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.3), transparent);
    pointer-events: none;
}

.service-card-body {
    padding: 28px;
}

.service-icon {
    width: 42px;
    height: 42px;
    background: rgba(107,31,107,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.service-icon i {
    color: var(--purple);
    font-size: 18px;
}

.service-card-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 10px;
}

.service-card-desc {
    font-size: 13.5px;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-price {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--purple);
    font-weight: 500;
}
.service-price span { font-size: 12px; color: var(--gray-mid); font-family: var(--font-body); }

/* ============================================================
   GALLERY SECTION
============================================================ */
.gallery-section {
    padding: 110px 0;
    background: var(--purple);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.gallery-grid .item-tall { grid-row: span 2; }

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1 / 1;
}
.gallery-item.item-tall { aspect-ratio: 1 / 2.1; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(107,31,107,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i { color: white; font-size: 2rem; }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials-section {
    padding: 110px 0;
    background: var(--off-white);
}

.testimonial-card {
    background: var(--white);
    padding: 40px 36px;
    border-radius: var(--radius);
    border: 1px solid var(--beige-dark);
    height: 100%;
    position: relative;
    transition: var(--transition);
}
.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 6rem;
    color: var(--purple);
    opacity: 0.15;
    position: absolute;
    top: -10px;
    left: 24px;
    line-height: 1;
}

.testimonial-stars { color: var(--purple); margin-bottom: 16px; font-size: 13px; }
.testimonial-text {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.65;
    margin-bottom: 24px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(107,31,107,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--purple);
    flex-shrink: 0;
}
.testimonial-name {
    font-weight: 600;
    font-size: 13px;
    color: var(--black);
    letter-spacing: 0.04em;
}
.testimonial-service { font-size: 11px; color: var(--gray-mid); }

/* ============================================================
   ACADEMY / CTA STRIP
============================================================ */
.academy-strip {
    padding: 110px 0;
    /*background: var(--black);*/
    position: relative;
    overflow: hidden;
}
.academy-strip::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 50%;
    height: 100%;
    background: var(--purple-dark);
    opacity: 0.12;
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.academy-content { position: relative; z-index: 2; }

.academy-class-card {
    background: rgba(107,31,107,0.5);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
}
.academy-class-card:hover {
    background: rgba(107,31,107,0.15);
    border-color: rgba(107,31,107,0.4);
    transform: translateY(-4px);
}
.academy-class-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    /*color: var(--beige);*/
    margin-bottom: 8px;
}
.academy-class-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--purple-light);
    margin-bottom: 14px;
}
.academy-class-detail {
    font-size: 12px;
    /*color: rgba(232,223,208,0.55);*/
    letter-spacing: 0.06em;
}
.badge-virtual {
    background: rgba(107,31,107,0.4);
    /*color: var(--purple-light);*/
    font-size: 10px;
    letter-spacing: 0.12em;
    padding: 4px 10px;
    border-radius: 2px;
    text-transform: uppercase;
}

/* ============================================================
   PAGE HERO (inner pages)
============================================================ */
.page-hero {
    background: var(--purple);
    padding: 100px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.2) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    color: var(--beige);
    margin-bottom: 16px;
}
.page-hero-subtitle {
    color: rgba(232,223,208,0.6);
    font-size: 15px;
    max-width: 560px;
    margin: 0 auto;
}
.breadcrumb-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(232,223,208,0.45);
    margin-bottom: 20px;
}
.breadcrumb-custom a { color: var(--purple-light); }
.breadcrumb-custom a:hover { color: var(--beige); }

/* ============================================================
   BOOKING FORM
============================================================ */
.booking-section {
    padding: 90px 0;
    background: var(--off-white);
}

.booking-form-wrap {
    background: var(--white);
    border-radius: var(--radius);
    padding: 50px;
    box-shadow: var(--shadow-md);
}

.form-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-control, .form-select {
    border: 1px solid var(--beige-dark);
    border-radius: var(--radius);
    padding: 12px 16px;
    font-size: 14px;
    font-family: var(--font-body);
    background: var(--white);
    color: var(--text-dark);
    transition: var(--transition);
}
.form-control:focus, .form-select:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(107,31,107,0.1);
    outline: none;
}

.booking-sidebar {
    background: var(--black);
    border-radius: var(--radius);
    padding: 40px 36px;
    color: var(--beige);
    height: 100%;
}

.booking-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.booking-info-item:last-child { border: none; margin: 0; padding: 0; }
.booking-info-icon {
    width: 40px;
    height: 40px;
    background: rgba(107,31,107,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.booking-info-icon i { color: var(--purple-light); font-size: 18px; }
.booking-info-title { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--beige); margin-bottom: 4px; }
.booking-info-text { font-size: 13px; color: rgba(232,223,208,0.55); }

/* ============================================================
   ALERT MESSAGES
============================================================ */
.alert-brand-success {
    background: rgba(107,31,107,0.08);
    border: 1px solid rgba(107,31,107,0.3);
    color: var(--purple-dark);
    border-radius: var(--radius);
    padding: 16px 20px;
    font-size: 14px;
}
.alert-brand-error {
    background: rgba(220,53,69,0.06);
    border: 1px solid rgba(220,53,69,0.25);
    color: #721c24;
    border-radius: var(--radius);
    padding: 16px 20px;
    font-size: 14px;
}

/* ============================================================
   TEAM CARDS
============================================================ */
.team-card {
    text-align: center;
    margin-bottom: 30px;
}
.team-card-image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 20px;
    transition: var(--transition);
    filter: grayscale(15%);
}
.team-card:hover .team-card-image { filter: grayscale(0); }
.team-card-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 4px;
}
.team-card-role { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--purple); }

/* ============================================================
   GALLERY PAGE GRID
============================================================ */
.gallery-masonry {
    columns: 3 220px;
    gap: 10px;
}
.gallery-masonry-item {
    break-inside: avoid;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
}
.gallery-masonry-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}
.gallery-masonry-item:hover img { transform: scale(1.06); }
.gallery-masonry-overlay {
    position: absolute;
    inset: 0;
    background: rgba(107,31,107,0.55);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.35s ease;
}
.gallery-masonry-item:hover .gallery-masonry-overlay { opacity: 1; }
.gallery-masonry-overlay i { color: white; font-size: 2rem; }

/* Gallery Filter Tabs */
.gallery-filter-btn {
    background: transparent;
    border: 1px solid var(--beige-dark);
    color: var(--text-mid);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 9px 22px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--purple);
    border-color: var(--purple);
    color: var(--white);
}

/* ============================================================
   LIGHTBOX
============================================================ */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.lightbox-overlay.active { display: flex; }
.lightbox-close {
    position: absolute;
    top: 24px;
    right: 28px;
    background: none;
    border: none;
    color: var(--beige);
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.75;
    transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-img {
    max-height: 85vh;
    max-width: 90vw;
    object-fit: contain;
    border-radius: 2px;
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(107,31,107,0.5);
    border: none;
    color: white;
    font-size: 1.6rem;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.3s;
}
.lightbox-nav:hover { background: rgba(107,31,107,0.85); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* ============================================================
   BACK TO TOP & MISC
============================================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--purple);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(107,31,107,0.4);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover {
    background: var(--purple-dark);
    transform: translateY(-4px);
    color: white;
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
    background: var(--purple);
    /*color: var(--beige);*/
    padding: 80px 0 0;
}

.footer-logo { height: 36px; }

.footer-tagline {
    font-size: 13.5px;
    color: rgba(232,223,208,0.5);
    line-height: 1.75;
    max-width: 280px;
}

.social-links { display: flex; gap: 14px; }
.social-links a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(232,223,208,0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(232,223,208,0.6);
    font-size: 15px;
    transition: var(--transition);
}
.social-links a:hover {
    background: var(--purple);
    border-color: var(--purple);
    color: white;
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    /*color: var(--beige-dark);*/
    color: white;
    margin-bottom: 20px;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    font-size: 13.5px;
    color: rgba(232,223,208,0.5);
    transition: var(--transition);
}
.footer-links a:hover {
    /*color: var(--purple-light); */
    padding-left: 4px; 
}

.footer-contact { list-style: none; padding: 0; }
.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13.5px;
    color: rgba(232,223,208,0.5);
    margin-bottom: 12px;
}
.footer-contact li i { color: var(--purple-light); flex-shrink: 0; margin-top: 3px; }

.footer-divider {
    border-color: rgba(255,255,255,0.06);
    margin: 50px 0 30px;
}

.footer-copy {
    font-size: 12px;
    color: rgba(232,223,208,0.3);
    letter-spacing: 0.06em;
}

.footer-bottom-link {
    font-size: 12px;
    color: rgba(232,223,208,0.4);
    transition: color 0.3s;
}
.footer-bottom-link:hover { color: var(--purple-light); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
    .hero { min-height: auto; }
    .hero-image-wrap { margin-top: 40px; }
    .hero-title { font-size: clamp(2.4rem, 7vw, 3.5rem); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid .item-tall { grid-row: auto; }
    .gallery-masonry { columns: 2 180px; }
    .booking-form-wrap { padding: 32px 24px; }
    .about-image-stack .img-accent { display: none; }
}

@media (max-width: 576px) {
    .stat-item + .stat-item::before { display: none; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-masonry { columns: 2 140px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn-brand, .hero-actions .btn-brand-outline { text-align: center; }
}

/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.7s ease forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }