/* ========================================
   TUSCAN SUN BOUTIQUE - Main Styles
   A warm, elegant design inspired by Tuscan sunsets
   ======================================== */

/* ---- CSS Variables ---- */
:root {
    /* Primary Palette - Tuscan Sunset */
    --color-terracotta: #C45A32;
    --color-terracotta-dark: #A0432A;
    --color-coral: #E07252;
    --color-coral-light: #F0A48E;
    --color-gold: #D4A245;
    --color-gold-light: #E8C172;
    --color-amber: #E8944A;
    --color-sunset-rose: #D4607A;
    --color-sunset-peach: #F2B894;
    --color-sunset-mauve: #B8899E;
    --color-sunset-lavender: #A0849A;
    --color-dusk: #654048;
    --color-dusk-dark: #453338;
    --color-dusk-deep: #2F2328;

    /* Neutrals - Warm Italian Stone */
    --color-cream: #FBF6EE;
    --color-cream-dark: #F2E8D8;
    --color-sand: #E5D9C5;
    --color-warm-white: #FFF8F0;
    --color-charcoal: #2A1F18;
    --color-brown-dark: #38261C;
    --color-brown-medium: #6B5244;
    --color-brown-light: #9B8575;

    /* Accent - Tuscan Landscape */
    --color-olive: #5E7142;
    --color-olive-light: #7A8E5E;
    --color-sage: #A3B58E;
    --color-rust: #B84530;
    --color-wine: #7A3048;
    --color-tuscan-blue: #4A6B82;

    /* Gradients - Tuscan Sunset Sky */
    --gradient-sunset: linear-gradient(135deg, #C45A32 0%, #E8944A 35%, #D4607A 70%, #B8899E 100%);
    --gradient-warm: linear-gradient(135deg, #D4A245 0%, #E8C172 50%, #F2B894 100%);
    --gradient-hero: linear-gradient(160deg, #2F2328 0%, #453338 15%, #7A4858 30%, #8B4A28 50%, #C45A32 65%, #E8944A 80%, #E8C172 95%);
    --gradient-card: linear-gradient(180deg, rgba(251,246,238,0) 0%, rgba(251,246,238,1) 100%);
    --gradient-dark: linear-gradient(135deg, #2F2328 0%, #453338 40%, #54383F 70%, #654048 100%);
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(139, 90, 56, 0.08);
    --shadow-md: 0 4px 20px rgba(139, 90, 56, 0.12);
    --shadow-lg: 0 8px 40px rgba(139, 90, 56, 0.15);
    --shadow-xl: 0 20px 60px rgba(139, 90, 56, 0.2);

    /* Typography */
    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Raleway', 'Helvetica Neue', sans-serif;
    --font-accent: 'Cormorant Garamond', 'Georgia', serif;

    /* Spacing Scale */
    --space-xs: 0.25rem;   /* 4px */
    --space-sm: 0.5rem;    /* 8px */
    --space-md: 1rem;      /* 16px */
    --space-lg: 1.5rem;    /* 24px */
    --space-xl: 2rem;      /* 32px */
    --space-2xl: 3rem;     /* 48px */
    --space-3xl: 4rem;     /* 64px */
    --space-4xl: 6rem;     /* 96px */

    /* Typography Scale */
    --text-xs: 0.75rem;    /* 12px */
    --text-sm: 0.85rem;    /* ~14px */
    --text-base: 1rem;     /* 16px */
    --text-md: 1.1rem;     /* ~18px */
    --text-lg: 1.2rem;     /* ~19px */
    --text-xl: 1.5rem;     /* 24px */
    --text-2xl: 2rem;      /* 32px */
    --text-3xl: 2.5rem;    /* 40px */
    --text-4xl: 3.5rem;    /* 56px */

    /* Social Media Brand Colors */
    --color-instagram: #E1306C;
    --color-instagram-dark: #C13584;
    --color-instagram-gradient: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
    --color-facebook: #1877F2;

    /* Animation Timing */
    --ease-default: 0.3s ease;
    --ease-slow: 0.5s ease;
    --ease-xslow: 0.8s ease;
    --ease-spring: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* Layout */
    --section-padding: 6rem 0;
    --container-width: 1200px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;
    --border-radius-pill: 50px;

    /* Z-Index Scale */
    --z-base: 1;
    --z-content: 10;
    --z-lightbox: 900;
    --z-navbar: 1000;
    --z-nav-toggle: 1010;
    --z-announcement: 1100;
    --z-modal: 950;
    --z-skip-link: 9000;
    --z-overlay: 9500;
    --z-back-to-top: 9600;
    --z-preloader: 10000;
    --z-skip-link-top: 10001;
}

/* ---- Dark Mode ---- */
body.dark-mode {
    /* Neutrals - inverted for dark backgrounds */
    --color-cream: #1A1210;
    --color-cream-dark: #221A16;
    --color-sand: #3A302A;
    --color-warm-white: #2A2220;
    --color-charcoal: #F2E8D8;
    --color-brown-dark: #E5D9C5;
    --color-brown-medium: #C8B8A8;
    --color-brown-light: #9B8B7B;

    /* Accent colors - slightly brighter for dark bg contrast */
    --color-terracotta: #D4673E;
    --color-coral: #E88566;
    --color-gold: #DEB050;
    --color-amber: #F0A058;
    --color-olive: #6E8450;
    --color-sage: #B3C59E;

    /* Shadows - darker, more subtle */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.35);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.4);

    /* Gradient adjustments */
    --gradient-card: linear-gradient(180deg, rgba(26,18,16,0) 0%, rgba(26,18,16,1) 100%);
}

/* Smooth theme transition (after initial load) */
body.theme-ready {
    transition: background-color 0.3s ease, color 0.3s ease;
}

body.theme-ready .navbar,
body.theme-ready .footer,
body.theme-ready .category-card,
body.theme-ready .review-card,
body.theme-ready .showcase-info,
body.theme-ready .events-card {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Prevent flash of unstyled content on dark mode */
html.dark-mode-pending body {
    background-color: #1A1210;
    color: #F2E8D8;
}

/* Dark mode - Navbar */
body.dark-mode .navbar.scrolled {
    background: rgba(26, 18, 16, 0.97);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
    border-bottom-color: rgba(232, 148, 74, 0.1);
}

body.dark-mode .navbar.scrolled .nav-link {
    color: var(--color-brown-dark);
}

body.dark-mode .navbar.scrolled .nav-link:hover,
body.dark-mode .navbar.scrolled .nav-link.active {
    color: var(--color-terracotta);
}

body.dark-mode .navbar.scrolled .nav-toggle span {
    background: var(--color-brown-dark);
}

body.dark-mode .navbar.scrolled .logo-text {
    color: var(--color-brown-dark);
}

/* Dark mode - Announcement bar */
body.dark-mode .announcement-bar {
    background: linear-gradient(135deg, var(--color-cream-dark), var(--color-sand));
}

/* Dark mode - Cards */
body.dark-mode .category-card {
    border: 1px solid rgba(232, 148, 74, 0.08);
}

body.dark-mode .category-card .card-content h3 {
    color: var(--color-charcoal);
}

body.dark-mode .category-card .card-content p {
    color: var(--color-brown-medium);
}

/* Dark mode - Process section */
body.dark-mode .process-step {
    background: rgba(42, 34, 32, 0.8);
    border-color: rgba(232, 148, 74, 0.1);
}

/* Dark mode - Reviews */
body.dark-mode .review-card {
    border-color: rgba(232, 148, 74, 0.08);
}

body.dark-mode .reviews-summary {
    border-color: rgba(232, 148, 74, 0.08);
}

body.dark-mode .review-form-card {
    border-color: rgba(232, 148, 74, 0.08);
}

body.dark-mode .filter-tag {
    border-color: var(--color-sand);
    color: var(--color-brown-medium);
}

body.dark-mode .filter-tag.active {
    background: var(--color-terracotta);
    border-color: var(--color-terracotta);
    color: white;
}

body.dark-mode .filter-count {
    background: rgba(232, 148, 74, 0.15);
    color: var(--color-gold);
}

/* Dark mode - Featured reviews */
body.dark-mode .featured-review-card {
    border-color: rgba(232, 148, 74, 0.08);
}

/* Dark mode - Forms */
body.dark-mode .form-group input,
body.dark-mode .form-group textarea,
body.dark-mode .form-group select {
    background: var(--color-cream-dark);
    border-color: var(--color-sand);
    color: var(--color-charcoal);
}


/* Dark mode - Review sort select */
body.dark-mode .review-sort select {
    border-color: var(--color-sand);
    color: var(--color-charcoal);
}

/* Dark mode - Footer */
body.dark-mode .footer {
    background: linear-gradient(180deg, #120E0C 0%, #1A1210 50%, #0E0A08 100%);
}

body.dark-mode .footer-wave svg {
    color: var(--color-cream);
}

/* Dark mode - Page headers (subpages) */
body.dark-mode .page-header {
    background: var(--gradient-dark);
}

body.dark-mode .page-header::after {
    background: var(--color-cream);
}


/* Dark mode - Showcase */
body.dark-mode .showcase-info {
    background: var(--color-warm-white);
    border: 1px solid rgba(232, 148, 74, 0.12);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
}

body.dark-mode .showcase-badge {
    background: rgba(26, 18, 16, 0.85);
    color: var(--color-gold);
    border: 1px solid rgba(232, 148, 74, 0.2);
}

body.dark-mode .showcase-info h3 {
    color: var(--color-charcoal);
}

body.dark-mode .showcase-info p {
    color: var(--color-brown-medium);
}

body.dark-mode .showcase-category {
    color: var(--color-gold);
}

body.dark-mode .showcase {
    background: linear-gradient(180deg, var(--color-cream-dark) 0%, var(--color-cream) 100%);
}


/* Dark mode - Showcase Gallery */
body.dark-mode .showcase-gallery-item {
    background: var(--color-sand);
}

body.dark-mode .gallery-empty-state {
    border-color: var(--color-sand);
}

body.dark-mode .gallery-empty-state i {
    color: var(--color-brown-light);
}

body.dark-mode .gallery-empty-state h3 {
    color: var(--color-charcoal);
}

body.dark-mode .gallery-empty-state p {
    color: var(--color-brown-light);
}


/* Dark mode - Process connector */
body.dark-mode .process-connector {
    background: rgba(232, 148, 74, 0.2);
}

/* Dark mode - btn-outline visibility */
body.dark-mode .btn-outline {
    color: var(--color-terracotta);
    border-color: var(--color-terracotta);
}

body.dark-mode .btn-outline:hover {
    background: var(--color-terracotta);
    color: white;
}

/* Dark mode - Events banner */
body.dark-mode .events-card {
    border-color: rgba(232, 148, 74, 0.08);
}

/* Dark mode - FAQ/accordion (contact page) */
body.dark-mode .faq-card {
    border-color: rgba(232, 148, 74, 0.08);
}

/* Dark mode - Back to top */
body.dark-mode .back-to-top {
    background: var(--color-terracotta);
    color: white;
}

/* Dark mode - Preloader */
body.dark-mode #preloader {
    background: #1A1210;
}

/* Dark mode - Hero badge */
body.dark-mode .hero-badge {
    background: rgba(26, 18, 16, 0.4);
}

/* Dark mode mobile nav */
@media (max-width: 768px) {
    body.dark-mode .nav-menu {
        background: var(--color-cream);
    }
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--color-charcoal);
    background-color: var(--color-cream);
    line-height: 1.7;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ---- Container ---- */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-brown-dark);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }

p {
    color: var(--color-brown-medium);
    line-height: 1.8;
}

.text-accent {
    color: var(--color-terracotta);
}

.text-accent-light {
    color: var(--color-gold-light);
}

/* ---- Section Styles ---- */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header.light .section-title,
.section-header.light .section-subtitle {
    color: var(--color-cream);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: var(--text-md);
    font-weight: 400;
    color: var(--color-terracotta);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    position: relative;
}

.section-tag::before,
.section-tag::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-sunset-rose));
    vertical-align: middle;
    margin: 0 0.75rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: var(--text-md);
    color: var(--color-brown-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.9rem 2rem;
    border-radius: var(--border-radius-pill);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-sunset);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(196, 114, 78, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 8px 30px rgba(196, 114, 78, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.btn-small {
    padding: 0.6rem 1.5rem;
    font-size: var(--text-sm);
    background: var(--gradient-sunset);
    color: white;
    border-radius: var(--border-radius-pill);
    box-shadow: 0 4px 15px rgba(196, 114, 78, 0.25);
}

.btn-small:hover {
    box-shadow: 0 6px 20px rgba(196, 114, 78, 0.4);
    transform: translateY(-2px);
}

/* ---- Announcement Bar ---- */
.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-announcement);
    background: var(--gradient-dark);
    overflow: hidden;
    height: 40px;
    display: flex;
    align-items: center;
    transition: height 0.4s ease, opacity 0.4s ease;
}

.announcement-bar.hidden {
    height: 0;
    opacity: 0;
    pointer-events: none;
}

.announcement-track {
    flex: 1;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.announcement-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0 2rem;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.5s ease, transform 0.5s ease;
    text-align: center;
    white-space: nowrap;
}

.announcement-slide.active {
    opacity: 1;
    transform: translateY(0);
}

.announcement-slide.exit-up {
    opacity: 0;
    transform: translateY(-100%);
}

.announcement-slide i {
    color: var(--color-gold);
    font-size: var(--text-sm);
    flex-shrink: 0;
}

.announcement-slide a {
    color: var(--color-gold-light);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
}

.announcement-slide a:hover {
    color: white;
}

.announcement-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--text-xs);
    flex-shrink: 0;
    transition: color 0.3s;
    cursor: pointer;
    background: none;
    border: none;
}

.announcement-close:hover {
    color: white;
}

/* Navbar offset when announcement bar is visible */
body:not(.announcement-dismissed) .navbar {
    top: 40px;
}

body:not(.announcement-dismissed) .hero {
    padding-top: 40px;
}

body:not(.announcement-dismissed) .page-header {
    padding-top: calc(10rem + 40px);
}

body.announcement-dismissed .announcement-bar {
    height: 0;
    opacity: 0;
    pointer-events: none;
}

/* ---- Base Card Background ---- */
.review-card,
.featured-review-card,
.reviews-summary,
.review-form-card,
.category-card,
.events-card,
.value-card,
.event-card,
.contact-form-card,
.faq-card {
    background: var(--color-warm-white);
}

/* ---- Customer Reviews ---- */
.reviews-section {
    background: var(--color-cream);
    position: relative;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-sunset-peach), var(--color-sunset-rose), transparent);
    opacity: 0.3;
}

/* Featured Top Reviews */
.featured-reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.featured-review-card {
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--color-terracotta);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.featured-quote {
    color: var(--color-terracotta);
    font-size: var(--text-lg);
    opacity: 0.65;
    margin-bottom: 0.5rem;
}

.featured-review-card p {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-brown-dark);
    margin-bottom: 0.75rem;
}

.featured-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.82rem;
}

.featured-author strong {
    color: var(--color-brown-dark);
}

.featured-verified {
    color: var(--color-sage);
    font-size: 0.72rem;
    font-weight: 500;
}

.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    margin-bottom: 1.25rem;
    padding: 1.25rem 1.75rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.summary-score {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.summary-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-brown-dark);
    line-height: 1;
}

.summary-meta {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.summary-stars {
    color: var(--color-gold);
    font-size: 0.9rem;
    display: flex;
    gap: 0.15rem;
}

.summary-count {
    font-size: 0.78rem;
    color: var(--color-brown-light);
}

.write-review-btn {
    flex-shrink: 0;
}

/* Review Form */
.review-form-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, margin 0.5s ease;
    margin-bottom: 0;
}

.review-form-wrapper.open {
    max-height: 700px;
    margin-bottom: 3rem;
}

.review-form-card {
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(232, 148, 74, 0.1);
}

.review-form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.review-form-header h3 {
    font-size: 1.4rem;
}

.review-form-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-brown-medium);
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.review-form-close:hover {
    background: var(--color-terracotta);
    color: white;
}

/* Star Rating Input */
.star-rating-input {
    display: flex;
    gap: 0.35rem;
    font-size: var(--text-xl);
    cursor: pointer;
}

.star-rating-input i {
    color: var(--color-sand);
    transition: color 0.2s, transform 0.2s;
}

.star-rating-input i.active {
    color: var(--color-gold);
}

.star-rating-input i:hover {
    transform: scale(1.2);
}

/* Review Filters */
.review-filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.review-sort {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--color-brown-medium);
}

.review-sort label {
    white-space: nowrap;
    font-weight: 600;
}

.review-sort select {
    padding: 0.4rem 0.75rem;
    border: 1px solid rgba(139, 90, 56, 0.15);
    border-radius: 8px;
    background: var(--color-warm-white);
    font-size: var(--text-sm);
    color: var(--color-brown-dark);
    cursor: pointer;
    transition: border-color 0.3s;
}

.review-sort select:focus {
    border-color: var(--color-terracotta);
    outline-color: transparent;
    box-shadow: 0 0 0 3px rgba(196, 90, 50, 0.2);
}

.review-filter-tags {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.filter-tag {
    padding: 0.35rem 0.85rem;
    border: 1px solid rgba(139, 90, 56, 0.15);
    border-radius: var(--border-radius-pill);
    background: var(--color-warm-white);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-brown-medium);
    cursor: pointer;
    transition: all 0.25s ease;
}

.filter-tag:hover {
    border-color: var(--color-terracotta);
    color: var(--color-terracotta);
}

.filter-tag.active {
    background: var(--color-terracotta);
    color: white;
    border-color: var(--color-terracotta);
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.reviews-grid-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--color-brown-light);
    padding: 2rem;
}

.review-stars i.dim {
    opacity: 0.3;
}

.review-card {
    border-radius: var(--border-radius);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: review-appear 0.4s ease forwards;
    opacity: 0;
}

@keyframes review-appear {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.review-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.6rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient-warm);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--text-sm);
}

.review-author-info strong {
    display: block;
    color: var(--color-brown-dark);
    font-size: 0.88rem;
}

.review-author-info span {
    font-size: 0.72rem;
    color: var(--color-brown-light);
}

.review-author-info span i {
    color: var(--color-sage);
    margin-right: 0.2rem;
}

.review-stars {
    color: var(--color-gold);
    font-size: var(--text-xs);
    display: flex;
    gap: 0.1rem;
}

.review-badge i {
    margin-right: 0.3rem;
    font-size: 0.6rem;
}

.review-badge {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    background: rgba(196, 90, 50, 0.08);
    color: var(--color-terracotta);
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: var(--border-radius-pill);
    margin-bottom: 0.5rem;
}

.review-text {
    font-family: var(--font-accent);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--color-brown-dark);
    line-height: 1.6;
}

.review-product-image {
    margin: 0.5rem 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    max-width: 120px;
}

.review-product-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

.review-product-image img:hover {
    transform: scale(1.05);
}

.review-date {
    font-size: 0.72rem;
    color: var(--color-brown-light);
    margin-top: 0.6rem;
}

.review-date i {
    margin-right: 0.3rem;
    font-size: 0.65rem;
}

.reviews-load-more {
    text-align: center;
    margin-top: 1.5rem;
}

.review-action-buttons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.reviews-expandable {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    margin-top: 0;
}

.reviews-expandable.open {
    margin-top: 1.5rem;
}

.reviews-paging {
    text-align: center;
    margin-top: 1.25rem;
}

.reviews-paging-buttons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.review-count-showing {
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--color-brown-light);
}

/* ---- Navigation ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-navbar);
    padding: 1rem 0;
    background: transparent;
    transition: background-color 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

.navbar.scrolled {
    background: rgba(251, 246, 238, 0.97);
    box-shadow: 0 2px 30px rgba(139, 90, 56, 0.08), 0 1px 0 rgba(232, 148, 74, 0.08);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(232, 148, 74, 0.06);
}

.nav-container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    z-index: var(--z-nav-toggle);
}

.logo-svg {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(212, 149, 106, 0.3));
}

.logo-mandala {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    animation: spin-slow 20s linear infinite;
    filter: drop-shadow(0 0 6px rgba(232, 148, 74, 0.3));
}

.logo-icon {
    font-size: var(--text-2xl);
    color: var(--color-gold);
    filter: drop-shadow(0 0 8px rgba(212, 149, 106, 0.3));
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.02em;
}

.navbar.scrolled .logo-text {
    color: var(--color-brown-dark);
}

.logo-accent {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width 0.3s ease, left 0.3s ease;
    border-radius: 1px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
    left: 20%;
}

.nav-link:hover {
    color: white;
}

.navbar.scrolled .nav-link {
    color: var(--color-brown-medium);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--color-terracotta);
}

.nav-cta {
    background: var(--gradient-sunset);
    color: white !important;
    border-radius: var(--border-radius-pill);
    padding: 0.5rem 1.5rem;
    margin-left: 0.5rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(196, 114, 78, 0.3);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    box-shadow: 0 6px 25px rgba(196, 114, 78, 0.5);
    transform: translateY(-1px);
}

/* Theme Toggle Pill */
.theme-toggle-pill {
    position: relative;
    width: 60px;
    height: 30px;
    border-radius: 15px;
    border: none;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 7px;
    transition: background 0.3s ease;
    flex-shrink: 0;
}

.theme-toggle-icon {
    font-size: var(--text-xs);
    z-index: 1;
    transition: color 0.3s ease;
    pointer-events: none;
}

.theme-toggle-icon--sun {
    color: var(--color-gold);
}

.theme-toggle-icon--moon {
    color: rgba(255, 255, 255, 0.4);
}

.theme-toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    pointer-events: none;
}

body.dark-mode .theme-toggle-slider {
    transform: translateX(30px);
}

body.dark-mode .theme-toggle-icon--sun {
    color: rgba(255, 255, 255, 0.4);
}

body.dark-mode .theme-toggle-icon--moon {
    color: var(--color-gold);
}

.theme-toggle-pill:hover {
    background: rgba(255, 255, 255, 0.25);
}

.navbar.scrolled .theme-toggle-pill {
    background: rgba(139, 90, 56, 0.08);
}

.navbar.scrolled .theme-toggle-icon--sun {
    color: var(--color-gold);
}

.navbar.scrolled .theme-toggle-icon--moon {
    color: var(--color-brown-light);
}

.navbar.scrolled .theme-toggle-pill:hover {
    background: rgba(139, 90, 56, 0.15);
}

.navbar.scrolled .theme-toggle-slider {
    background: white;
    box-shadow: 0 1px 4px rgba(139, 90, 56, 0.15);
}

body.dark-mode .navbar.scrolled .theme-toggle-pill {
    background: rgba(232, 148, 74, 0.1);
}

body.dark-mode .navbar.scrolled .theme-toggle-icon--sun {
    color: rgba(255, 255, 255, 0.4);
}

body.dark-mode .navbar.scrolled .theme-toggle-icon--moon {
    color: var(--color-gold);
}

body.dark-mode .navbar.scrolled .theme-toggle-pill:hover {
    background: rgba(232, 148, 74, 0.2);
}

body.dark-mode .navbar.scrolled .theme-toggle-slider {
    background: var(--color-gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: var(--z-nav-toggle);
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.navbar.scrolled .nav-toggle span {
    background: var(--color-brown-dark);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Hero ---- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    overflow: hidden;
}

/* Tuscan sunset horizon glow */
.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background:
        radial-gradient(ellipse 120% 60% at 50% 100%, rgba(232, 148, 74, 0.25) 0%, transparent 70%),
        radial-gradient(ellipse 80% 40% at 50% 100%, rgba(232, 193, 114, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

/* Tuscan hilltop silhouette */
.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 120px;
    background: var(--color-cream);
    clip-path: polygon(
        0% 100%, 0% 85%,
        5% 72%, 8% 68%, 12% 65%, 16% 60%,
        20% 55%, 24% 52%, 28% 50%, 32% 48%,
        36% 52%, 40% 58%, 42% 55%, 45% 50%,
        48% 46%, 52% 44%, 55% 42%, 58% 44%,
        62% 48%, 65% 52%, 68% 50%, 72% 46%,
        76% 42%, 80% 38%, 84% 40%, 88% 45%,
        92% 50%, 95% 55%, 98% 60%, 100% 65%,
        100% 100%
    );
    z-index: 3;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(232, 193, 114, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 60%, rgba(232, 148, 74, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 40%, rgba(212, 96, 122, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(158, 107, 138, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 75%, rgba(126, 95, 138, 0.1) 0%, transparent 45%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
    padding: 2rem;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 149, 106, 0.15);
    border: 1px solid rgba(212, 149, 106, 0.3);
    border-radius: var(--border-radius-pill);
    color: var(--color-gold-light);
    font-family: var(--font-accent);
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.hero-title {
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.title-line {
    display: block;
}

.title-accent {
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-sunset-peach), var(--color-sunset-rose), var(--color-gold-light));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
    animation: gradient-shift 6s ease infinite;
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.75);
    max-width: 650px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    font-family: var(--font-accent);
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- Categories ---- */
.categories {
    background: var(--color-cream);
    position: relative;
}

.categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-sunset-peach), var(--color-sunset-rose), var(--color-gold-light), transparent);
    opacity: 0.4;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.category-card {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.card-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.card-image-wrapper[data-gallery] {
    background: var(--color-sand);
}

.card-image--cycle {
    display: none;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 36, 32, 0.2);
    opacity: 0;
    z-index: 2;
}

.card-icon {
    font-size: 3rem;
    color: white;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.3));
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

.card-content p {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-terracotta);
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap 0.3s ease;
}

.card-link:hover {
    gap: 0.8rem;
}

/* ---- Showcase ---- */
.showcase {
    background: linear-gradient(180deg, var(--color-cream-dark) 0%, var(--color-cream) 100%);
    position: relative;
}

.showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold-light), var(--color-sunset-peach), transparent);
    opacity: 0.35;
}

.showcase-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-3xl);
}

.showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.showcase-item.reverse .showcase-image {
    order: 2;
}

.showcase-item.reverse .showcase-info {
    order: 1;
}

.showcase-image {
    height: 480px;
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--color-sand);
}

/* Crossfade cycling images */
.cycle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 2s ease;
    z-index: 1;
    will-change: opacity;
}

.cycle-img--active {
    opacity: 1;
}

.showcase-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: white;
    color: var(--color-terracotta);
    padding: 0.35rem 1rem;
    border-radius: var(--border-radius-pill);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.showcase-info {
    padding: 1rem 0;
}

.showcase-category {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.95rem;
    color: var(--color-terracotta);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.showcase-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.showcase-info p {
    margin-bottom: 1.5rem;
    font-size: var(--text-base);
}

/* ---- Process ---- */
.process {
    background: var(--gradient-dark);
    overflow: hidden;
}

.process-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(232, 148, 74, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(212, 96, 122, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 90% 80%, rgba(158, 107, 138, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.process-steps {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    position: relative;
}

.process-step {
    background: rgba(255, 255, 255, 0.06);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    flex: 1;
    max-width: 260px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-gold);
    background: var(--color-brown-dark);
    border: 1px solid rgba(212, 149, 106, 0.3);
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.step-icon {
    font-size: var(--text-2xl);
    color: var(--color-gold);
    margin-bottom: 1.25rem;
}

.process-step h3 {
    color: white;
    font-size: var(--text-lg);
    margin-bottom: 0.75rem;
}

.process-step p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.7;
}

.process-connector {
    width: 40px;
    height: 2px;
    background: rgba(212, 149, 106, 0.3);
    align-self: center;
    margin-top: 2rem;
    flex-shrink: 0;
}

/* ---- Events Banner ---- */
.events-banner {
    background: var(--color-cream);
    padding: 4rem 0;
    position: relative;
}

.events-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-sunset-rose), var(--color-gold-light), transparent);
    opacity: 0.3;
}

.events-card {
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid rgba(212, 149, 106, 0.1);
}

.events-card-content {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 3rem;
}

.events-icon-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-instagram), var(--color-instagram-dark));
    border-radius: 50%;
    color: white;
    font-size: var(--text-2xl);
}

.events-text {
    flex: 1;
}

.events-label {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.9rem;
    color: var(--color-coral);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.events-text h2 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.events-text p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.events-text a {
    color: var(--color-terracotta);
    font-weight: 600;
}

.events-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-shrink: 0;
}

.events-actions .btn-outline {
    color: var(--color-terracotta);
    border-color: var(--color-terracotta);
}

.events-actions .btn-outline:hover {
    background: var(--color-terracotta);
    color: white;
}


/* ---- Footer ---- */
.footer {
    background: linear-gradient(180deg, var(--color-brown-dark) 0%, var(--color-dusk-dark) 50%, var(--color-dusk-deep) 100%);
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    padding-top: 0;
}

.footer-wave {
    color: var(--color-cream);
    line-height: 0;
    margin-bottom: 3rem;
}

.footer-wave svg {
    width: 100%;
    height: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-2xl);
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: 1rem;
}

.footer-logo .logo-text {
    color: white;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-md);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--color-amber), var(--color-sunset-rose));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(232, 148, 74, 0.3);
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.footer-contact li a {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: var(--color-gold);
}

.footer-contact i {
    color: var(--color-gold);
    margin-top: 0.2rem;
    font-size: 0.9rem;
    width: 16px;
    flex-shrink: 0;
}

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-sm);
}

.footer-tagline {
    margin-top: 0.5rem;
    font-family: var(--font-accent);
    font-style: italic;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.9rem !important;
}

/* ---- Back to Top ---- */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-sunset);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-base);
    z-index: var(--z-back-to-top);
    box-shadow: 0 4px 20px rgba(196, 90, 50, 0.35);
}

/* ---- Cookie Consent ---- */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-modal);
    background: var(--color-cream-dark);
    border-top: 1px solid rgba(139, 90, 56, 0.15);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-consent.visible {
    transform: translateY(0);
}

.cookie-consent__text {
    font-size: 0.85rem;
    color: var(--color-brown-medium);
    max-width: 600px;
}

.cookie-consent__text a {
    color: var(--color-terracotta);
    text-decoration: underline;
}

.cookie-consent__actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-decline-btn {
    background: transparent;
    color: var(--color-terracotta);
    border: 1px solid var(--color-terracotta);
}

.cookie-decline-btn:hover {
    background: var(--color-terracotta);
    color: white;
}

body.dark-mode .cookie-consent {
    background: #221A16;
    border-top-color: rgba(232, 148, 74, 0.1);
}

body.dark-mode .cookie-decline-btn {
    color: var(--color-coral);
    border-color: var(--color-coral);
}

body.dark-mode .cookie-decline-btn:hover {
    background: var(--color-coral);
    color: white;
}

@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1rem 1.5rem;
    }
}

/* ---- Page Header (for subpages) ---- */
.page-header {
    background: var(--gradient-hero);
    padding: 10rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 50% 70%, rgba(232, 148, 74, 0.2) 0%, transparent 55%),
        radial-gradient(ellipse at 30% 50%, rgba(212, 96, 122, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(158, 107, 138, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--color-cream);
    clip-path: polygon(
        0% 100%, 0% 70%,
        10% 55%, 20% 45%, 30% 50%, 40% 40%,
        50% 35%, 60% 40%, 70% 50%, 80% 45%,
        90% 55%, 100% 50%, 100% 100%
    );
}

.page-header h1 {
    color: white;
    font-size: clamp(2rem, 5vw, 3.5rem);
    position: relative;
    z-index: 1;
    margin-bottom: 0.75rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-accent);
    font-size: var(--text-lg);
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.page-header .breadcrumb {
    position: relative;
    z-index: 1;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.page-header .breadcrumb a {
    color: var(--color-gold-light);
    transition: color 0.3s;
}

.page-header .breadcrumb a:hover {
    color: white;
}

/* ---- Generic Content Section ---- */
.content-section {
    padding: var(--section-padding);
    background: var(--color-cream);
}


/* ---- Contact Form Styles ---- */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-brown-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.85rem 1.25rem;
    border: 1px solid var(--color-sand);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-charcoal);
    background: var(--color-warm-white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline-color: transparent;
    border-color: var(--color-terracotta);
    box-shadow: 0 0 0 3px rgba(196, 90, 50, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* ---- Filter Bar ---- */
.filter-bar {
    text-align: center;
    margin-bottom: 3rem;
}

.filter-bar__track {
    display: inline-flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    justify-content: center;
    background: var(--color-warm-white);
    padding: 0.5rem;
    border-radius: var(--border-radius-pill);
    box-shadow: var(--shadow-sm);
}

body.dark-mode .filter-bar__track {
    background: var(--color-sand);
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    border-radius: var(--border-radius-pill);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: var(--text-sm);
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--color-brown-medium);
    transition: all 0.3s;
}

.filter-btn:hover {
    background: rgba(196, 90, 50, 0.08);
    color: var(--color-terracotta);
}

.filter-btn.active {
    background: var(--color-terracotta);
    color: white;
}

/* ---- Licensed Designs Banner ---- */
.licensed-banner {
    background: var(--gradient-dark);
    border-radius: var(--border-radius-xl);
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.licensed-banner__icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: rgba(212, 149, 106, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.licensed-banner__icon i {
    font-size: var(--text-2xl);
    color: var(--color-gold);
}

.licensed-banner__text {
    flex: 1;
    min-width: 250px;
}

.licensed-banner__text h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.licensed-banner__text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
}

/* ---- Event Card Header Variants ---- */
.event-card__header--sunset { background: var(--gradient-sunset); }
.event-card__header--olive { background: linear-gradient(135deg, var(--color-olive), var(--color-olive-light)); }
.event-card__header--blue { background: linear-gradient(135deg, var(--color-tuscan-blue), #5E8BA0); }
.event-card__header--wine { background: linear-gradient(135deg, var(--color-wine), #9E4A62); }
.event-card__header--pride { background: linear-gradient(135deg, #e40303, #ff8c00, #ffed00, #008026, #004dff, #750787); }

.event-card--pride {
    border: 2px solid transparent;
    background: linear-gradient(var(--color-cream), var(--color-cream)) padding-box,
                linear-gradient(135deg, #e40303, #ff8c00, #ffed00, #008026, #004dff, #750787) border-box;
    box-shadow: 0 4px 20px rgba(117, 7, 135, 0.15), 0 4px 20px rgba(0, 77, 255, 0.1);
}

body.dark-mode .event-card--pride {
    background: linear-gradient(#1A1210, #1A1210) padding-box,
                linear-gradient(135deg, #e40303, #ff8c00, #ffed00, #008026, #004dff, #750787) border-box;
}

/* ---- Contact Icon Colors ---- */
.icon-circle--small i {
    font-size: var(--text-md);
}

.icon-circle--small.icon-circle--terracotta i {
    color: var(--color-terracotta);
}

/* ---- CTA Section ---- */
.cta-text {
    font-family: var(--font-accent);
    font-size: var(--text-lg);
    color: var(--color-brown-light);
    margin-bottom: 1.5rem;
}

.btn--gradient {
    background: var(--gradient-sunset);
}

/* ---- Showcase Gallery ---- */
.showcase-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-bottom: 2rem;
}

.showcase-gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 4 / 5;
    background: var(--color-sand);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.showcase-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-gallery-item:hover img {
    transform: scale(1.06);
}

/* Skeleton Loading States */
.skeleton {
    background: linear-gradient(90deg,
        var(--color-sand) 25%,
        var(--color-cream) 50%,
        var(--color-sand) 75%
    );
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s ease-in-out infinite;
    border-radius: var(--border-radius);
}

@keyframes skeleton-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.showcase-skeleton {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    padding: 2rem 0;
}

.showcase-skeleton .skeleton-image {
    height: 480px;
    border-radius: var(--border-radius-lg);
}

.showcase-skeleton .skeleton-text {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.showcase-skeleton .skeleton-line {
    height: 1rem;
    border-radius: 6px;
}

.showcase-skeleton .skeleton-line--title {
    height: 1.8rem;
    width: 60%;
}

.showcase-skeleton .skeleton-line--subtitle {
    width: 40%;
    height: 0.8rem;
}

.gallery-skeleton {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.gallery-skeleton .skeleton-card {
    aspect-ratio: 4 / 5;
    border-radius: var(--border-radius);
}

/* Gallery Stagger Load Animation */
.showcase-gallery-item.gallery-enter {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
}

.showcase-gallery-item.gallery-revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Gallery filter animation classes */
.showcase-gallery-item.gallery-visible {
    animation: galleryFadeIn 0.4s ease forwards;
}

.showcase-gallery-item.gallery-hidden {
    animation: galleryFadeOut 0.3s ease forwards;
    pointer-events: none;
}

@keyframes galleryFadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes galleryFadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(16px); display: none; }
}

/* Filter Count Badge */
.filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    background: rgba(196, 90, 50, 0.12);
    color: var(--color-terracotta);
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 0.4rem;
    padding: 0 5px;
}

.filter-btn.active .filter-count {
    background: rgba(255, 255, 255, 0.25);
    color: white;
}

/* Gallery Empty State (hidden by default, shown by JS when needed) */
.gallery-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    border: 2px dashed var(--color-sand);
    border-radius: var(--border-radius-lg);
    margin-bottom: 2rem;
    display: none;
}

.gallery-empty-state i {
    font-size: 3rem;
    color: var(--color-brown-light);
    margin-bottom: 1rem;
    display: block;
}

.gallery-empty-state h3 {
    font-family: var(--font-heading);
    color: var(--color-charcoal);
    margin-bottom: 0.75rem;
}

.gallery-empty-state p {
    color: var(--color-brown-light);
    max-width: 420px;
    margin: 0 auto 1.5rem;
    font-size: 0.95rem;
}

/* Lightbox Overlay */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: var(--z-lightbox);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    font-size: var(--text-xl);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 1;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-image {
    max-width: 85vw;
    max-height: 75vh;
    border-radius: var(--border-radius);
    object-fit: contain;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox-overlay.active .lightbox-image {
    transform: scale(1);
}

/* Lightbox Navigation Buttons */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: white;
    font-size: 1.3rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 2;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lightbox-prev {
    left: 1.5rem;
}

.lightbox-next {
    right: 1.5rem;
}

.lightbox-counter {
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--text-sm);
    margin-top: 0.5rem;
    text-align: center;
    letter-spacing: 0.1em;
}

/* Screen reader only (visually hidden) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Skip to Content Link */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-terracotta);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 8px 8px;
    z-index: var(--z-skip-link-top);
    font-weight: 600;
    text-decoration: none;
    transition: top 0.3s ease;
}

.skip-to-content:focus {
    top: 0;
}

/* Hover Lift Utility */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ---- Subpage Component Classes (Phase 3) ---- */

/* Layout: Content grids */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.content-grid--top {
    align-items: flex-start;
}

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

.content-grid--events {
    gap: var(--space-xl);
}

.content-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.content-grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

/* Layout: Spacing utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-6 { margin-bottom: 6rem; }
.mb-4 { margin-bottom: 4rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-2-5 { margin-bottom: 2.5rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-1-5 { margin-bottom: 1.5rem; }
.mb-1 { margin-bottom: 1rem; }
.mt-6 { margin-top: 6rem; }
.mt-4 { margin-top: 4rem; }
.mt-2 { margin-top: 2rem; }
.text-muted { color: var(--color-brown-medium); }
.link-accent { color: var(--color-terracotta); font-weight: 600; }
.link-accent:hover { color: var(--color-terracotta-dark); }
.pb-2 { padding-bottom: 2rem; }
.pt-2 { padding-top: 2rem; }
.flex-center {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Component: Value card (white card with icon) */
.value-card {
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.value-card h3 {
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 0.95rem;
}

/* Component: Icon circles */
.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.icon-circle--terracotta { background: rgba(196,114,78,0.1); }
.icon-circle--coral { background: rgba(235,106,106,0.1); }
.icon-circle--gold { background: rgba(212,149,106,0.1); }
.icon-circle--olive { background: rgba(122,139,90,0.1); }

.icon-circle i {
    font-size: var(--text-xl);
}

.icon-circle--coral i { color: var(--color-coral); }
.icon-circle--gold i { color: var(--color-gold); }
.icon-circle--olive i { color: var(--color-olive); }
.icon-circle--terracotta i { color: var(--color-terracotta); }

.icon-circle--small {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle--small.icon-circle--terracotta { background: rgba(196,114,78,0.1); }

/* Component: Step circle (numbered, gradient) */
.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-sunset);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Component: Stat card / dark banner */
.dark-banner {
    background: var(--gradient-dark);
    border-radius: var(--border-radius-xl);
    padding: 4rem;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    color: var(--color-gold);
    font-weight: 700;
}

.stat-label {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Component: About image containers */
.about-image-wrap {
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    position: relative;
}

.about-image-wrap--tall { min-height: 300px; }
.about-image-wrap--medium { min-height: 280px; }

.about-photo {
    width: 100%;
    height: auto;
    display: block;
}

.about-gradient {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-gradient--sunset {
    background: linear-gradient(135deg, #C4724E 0%, #D4956A 30%, #E8B892 60%, #EB6A6A 100%);
}

.about-gradient--maker {
    background: linear-gradient(135deg, #8B5A38 0%, #6B5244 40%, #D4956A 100%);
}

.about-gradient__label {
    text-align: center;
    color: white;
}

.about-gradient__label i {
    opacity: 0.3;
    margin-bottom: 1rem;
    display: block;
    font-size: 4rem;
}

.about-gradient__label span {
    font-family: var(--font-accent);
    font-size: var(--text-xl);
    opacity: 0.5;
}

.about-gradient--maker .about-gradient__label i {
    font-size: 5rem;
}

.about-gradient--maker .about-gradient__label span {
    font-size: 1.3rem;
}

/* Component: Section tag left-aligned variant */
.section-tag--left {
    display: block;
    text-align: left;
    margin-bottom: 1rem;
}

/* Component: Body text sizing */
.body-lg {
    font-size: 1.05rem;
}

.body-sm {
    font-size: 0.95rem;
}

/* Component: About heading */
.heading-xl {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.heading-lg {
    font-size: var(--text-2xl);
    margin-bottom: 1rem;
}

/* Component: Button row */
.btn-row {
    display: flex;
    gap: var(--space-md);
}

.btn-row--wrap {
    flex-wrap: wrap;
}

/* Component: Instagram gradient button */
.btn--instagram {
    background: linear-gradient(135deg, var(--color-instagram), var(--color-instagram-dark));
}

.btn--facebook {
    background: var(--color-facebook);
}

.btn--white-ig {
    background: white;
    color: var(--color-instagram);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Events: IG Live hero section */
.ig-live-hero {
    background: var(--color-instagram-gradient);
    border-radius: var(--border-radius-xl);
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.ig-live-hero__title {
    font-size: var(--text-3xl);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.ig-live-hero__desc {
    font-size: var(--text-md);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.ig-live-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.ig-live-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

/* Events: Live badge pill */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-pill);
    margin-bottom: 1.5rem;
}

.live-badge__text {
    color: white;
    font-weight: 600;
    font-size: var(--text-sm);
    letter-spacing: 0.05em;
}

.live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff4444;
    animation: pulse-text 1.5s ease-in-out infinite;
}

/* Events: Time display card */
.time-display {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--border-radius-xl);
    padding: 3rem 2rem;
}

.time-display__day {
    font-family: var(--font-accent);
    color: rgba(255,255,255,0.7);
    font-size: var(--text-base);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.time-display__time {
    font-family: var(--font-heading);
    color: white;
    font-size: var(--text-4xl);
    font-weight: 700;
    line-height: 1;
}

.time-display__meridiem {
    font-family: var(--font-heading);
    color: var(--color-gold-light);
    font-size: var(--text-xl);
    font-weight: 600;
}

.time-display__divider {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.time-display__platform-label {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.time-display__platform {
    color: white;
    font-size: var(--text-md);
    font-weight: 600;
}

/* Events: How-it-works section */
.how-it-works {
    background: var(--color-cream-dark);
    border-radius: var(--border-radius-xl);
    padding: 4rem;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
}

.how-it-works h4 {
    margin-bottom: 0.5rem;
    font-size: var(--text-base);
}

.how-it-works p {
    font-size: var(--text-sm);
}

/* Events: Event card */
.event-card {
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

.event-card__header {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.event-card__date {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    text-align: center;
    min-width: 70px;
}

.event-card__date-day {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.event-card__date-month {
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.event-card__title {
    color: white;
    font-size: var(--text-lg);
    margin-bottom: 0.15rem;
}

.event-card__location {
    color: rgba(255,255,255,0.8);
    font-size: var(--text-sm);
}

.event-card__location i {
    margin-right: 0.3rem;
}

.event-card__body {
    padding: 1.5rem 2rem;
}

.event-card__body > p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.event-card__meta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: var(--color-brown-light);
}

.event-card__meta i {
    color: var(--color-terracotta);
    margin-right: 0.3rem;
}

.event-card__address {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.event-card__address a {
    color: var(--color-brown-light);
    text-decoration: none;
    transition: color 0.2s;
}

.event-card__address a:hover {
    color: var(--color-terracotta);
    text-decoration: underline;
}

.event-card__address i {
    color: var(--color-terracotta);
    margin-right: 0.3rem;
}

.event-card__website {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.75rem;
    padding: 0.4rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-terracotta);
    border: 1px solid var(--color-terracotta);
    border-radius: var(--border-radius-pill);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.event-card__website:hover {
    background: var(--color-terracotta);
    color: white;
}

/* Events: CTA section */
.events-cta h2 {
    margin-bottom: 1rem;
}

.events-cta p {
    color: var(--color-brown-light);
    max-width: 500px;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
}

/* Events: Hero text colors */
.hero-white { color: white; }
.hero-white-muted { color: rgba(255,255,255,0.85); }

/* Contact: Info item rows */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.contact-info-item h4 {
    margin-bottom: 0.25rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.contact-info-item a {
    color: var(--color-terracotta);
    font-weight: 500;
}

/* Contact: Social icon buttons */
.social-icon-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--text-lg);
    transition: transform 0.3s, box-shadow 0.3s;
}

.social-icon-btn--instagram {
    background: linear-gradient(135deg, var(--color-instagram), var(--color-instagram-dark));
}

.social-icon-btn--facebook {
    background: var(--color-facebook);
}

/* Contact: Form card */
.contact-form-card {
    border-radius: var(--border-radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
    margin-bottom: 0.5rem;
    font-size: var(--text-xl);
}

.contact-form-card > p {
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: var(--color-brown-light);
}

.form-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

/* Contact: FAQ items */
.faq-card {
    border-radius: var(--border-radius);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-sm);
}

.faq-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    color: var(--color-brown-dark);
}

.faq-card p {
    font-size: 0.95rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

/* Contact: Follow us label */
.follow-label {
    margin-bottom: 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.social-row {
    display: flex;
    gap: 0.75rem;
}


/* Contact: Full-width submit */
.btn--full {
    width: 100%;
    justify-content: center;
}

/* ---- Dark Mode: Subpage Components ---- */
body.dark-mode .value-card {
    border: 1px solid rgba(232, 148, 74, 0.08);
}

body.dark-mode .event-card {
    border: 1px solid rgba(232, 148, 74, 0.08);
}

body.dark-mode .contact-form-card {
    border: 1px solid rgba(232, 148, 74, 0.08);
}

body.dark-mode .faq-card {
    border: 1px solid rgba(232, 148, 74, 0.08);
}

body.dark-mode .how-it-works {
    background: var(--color-warm-white);
}

body.dark-mode .icon-circle--terracotta {
    background: rgba(212, 103, 62, 0.15);
}

body.dark-mode .icon-circle--coral {
    background: rgba(232, 133, 102, 0.15);
}

body.dark-mode .icon-circle--gold {
    background: rgba(222, 176, 80, 0.15);
}

body.dark-mode .icon-circle--olive {
    background: rgba(110, 132, 80, 0.15);
}

/* ---- 404 Error Page ---- */
.error-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.error-mandala {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    opacity: 0.06;
    pointer-events: none;
    animation: spin-slow-centered 60s linear infinite;
}

@keyframes spin-slow-centered {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.error-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.error-code {
    font-family: var(--font-heading);
    font-size: clamp(6rem, 15vw, 10rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #E8C172, #E8944A, #D4607A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--color-charcoal);
    margin-bottom: 1rem;
    font-weight: 600;
}

.error-description {
    font-family: var(--font-body);
    font-size: var(--text-md);
    color: var(--color-brown-medium);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.error-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.error-buttons .btn {
    min-width: 160px;
    justify-content: center;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-grid .category-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }

    .events-card-content {
        flex-wrap: wrap;
    }

    .process-steps {
        flex-wrap: wrap;
        gap: var(--space-lg);
    }

    .process-connector {
        display: none;
    }

    .process-step {
        max-width: 45%;
        flex: 0 0 45%;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem 0;
    }

    /* Prevent hero content from overlapping with fixed navbar on mobile */
    .hero {
        padding-top: 80px;
    }

    body:not(.announcement-dismissed) .hero {
        padding-top: 120px;
    }

    /* Scale down navbar logo for mobile */
    .logo-mandala {
        width: 32px;
        height: 32px;
    }

    .logo-text {
        font-size: 1.15rem;
    }

    .logo-accent {
        font-size: 0.7rem;
    }

    .showcase-gallery {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: var(--space-md);
    }

    .lightbox-image {
        max-width: 95vw;
        max-height: 70vh;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: var(--text-base);
    }

    .lightbox-prev {
        left: 0.5rem;
    }

    .lightbox-next {
        right: 0.5rem;
    }


    .announcement-slide {
        font-size: var(--text-xs);
        white-space: normal;
        line-height: 1.3;
        padding: 0 2.5rem 0 0.75rem;
    }

    .reviews-summary {
        flex-direction: column;
        gap: var(--space-lg);
        text-align: center;
    }

    .featured-reviews {
        grid-template-columns: 1fr;
    }

    .review-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .review-sort {
        justify-content: center;
    }

    .review-filter-tags {
        justify-content: center;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    /* Subpage grids responsive */
    .content-grid,
    .content-grid--contact,
    .ig-live-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .content-grid-3col {
        grid-template-columns: 1fr;
    }

    .content-grid-4col {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        height: 100dvh;
        background: var(--color-cream);
        flex-direction: column;
        padding: 4rem 1.5rem 2rem;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        align-items: flex-start;
        gap: var(--space-sm);
        z-index: var(--z-navbar);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.3s ease,
                    visibility 0.3s ease;
    }

    body:not(.announcement-dismissed) .nav-menu {
        top: 40px;
        height: calc(100vh - 40px);
        height: calc(100dvh - 40px);
    }

    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu .nav-link {
        color: var(--color-brown-dark);
        font-size: var(--text-md);
        padding: 0.75rem 1rem;
        width: 100%;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .nav-menu .nav-cta {
        margin-left: 0;
        margin-top: 1rem;
        text-align: center;
        justify-content: center;
        width: 100%;
    }

    .theme-toggle-pill {
        margin: 0.5rem 1rem;
        order: 10;
    }

    .nav-toggle {
        display: flex;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .categories-grid .category-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .showcase-item {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .showcase-item.reverse .showcase-image,
    .showcase-item.reverse .showcase-info {
        order: unset;
    }

    .showcase-image {
        height: 350px;
    }

    .process-step {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .events-card-content {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .events-actions {
        flex-direction: row;
        width: 100%;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact li,
    .footer-contact li a {
        justify-content: center;
    }


    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .hero-subtitle {
        font-size: var(--text-base);
    }

    .page-header {
        padding: 6rem 0 3rem;
    }

    body:not(.announcement-dismissed) .page-header {
        padding-top: calc(6rem + 40px);
    }

    .process-step {
        padding: 1.5rem 1.25rem;
    }

    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 42px;
        height: 42px;
    }

    .events-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: var(--text-xl);
    }

    .events-card-content {
        gap: 1.5rem;
        padding: 1.5rem;
    }

}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .section-tag::before,
    .section-tag::after {
        width: 15px;
    }

    .filter-bar__track {
        border-radius: var(--border-radius);
        padding: 0.4rem;
        gap: 0.3rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .ig-live-hero__title {
        font-size: 1.8rem;
    }

    .container {
        width: 95%;
    }

    .showcase-image {
        height: 280px;
    }

    .showcase-gallery {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }

    .announcement-slide {
        padding: 0 2.5rem 0 0.5rem;
        font-size: 0.75rem;
    }

    .hero-buttons .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }

    .page-header {
        padding: 5rem 0 2.5rem;
    }

    body:not(.announcement-dismissed) .page-header {
        padding-top: calc(5rem + 40px);
    }

    .section-header {
        margin: 0 auto 2.5rem;
    }

    .lightbox-nav {
        width: 36px;
        height: 36px;
    }

    .lightbox-prev {
        left: 0.25rem;
    }

    .lightbox-next {
        right: 0.25rem;
    }
}

/* Extra-small phones (320-379px) */
@media (max-width: 380px) {
    .page-header {
        padding: 4rem 0 2rem;
    }

    body:not(.announcement-dismissed) .page-header {
        padding-top: calc(4rem + 40px);
    }

    .hero-title {
        font-size: clamp(1.6rem, 8vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .section-title {
        font-size: clamp(1.4rem, 6vw, 2rem);
    }
}

/* Landscape phones — reduce hero height */
@media (orientation: landscape) and (max-height: 500px) {
    .hero {
        min-height: auto;
        padding: 100px 0 40px;
    }

    body:not(.announcement-dismissed) .hero {
        padding-top: 140px;
    }

    .page-header {
        padding: 4rem 0 2rem;
    }

    .hero-content {
        padding: 1rem 2rem;
    }

    .hero-scroll-indicator {
        display: none;
    }
}
