:root {
    --bg: #05070d;
    --bg-elevated: rgba(8, 12, 22, 0.92);
    --surface: rgba(13, 18, 30, 0.92);
    --surface-strong: rgba(18, 24, 38, 0.96);
    --surface-soft: rgba(25, 31, 46, 0.9);
    --border: rgba(245, 158, 11, 0.16);
    --border-strong: rgba(245, 158, 11, 0.32);
    --text: #f3efe8;
    --muted: #b7af9d;
    --muted-strong: #d6cab2;
    --accent: #f59e0b;
    --accent-2: #f97316;
    --accent-3: #d4af37;
    --success: #86efac;
    --danger: #fda4af;
    --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.52);
    --shadow-md: 0 18px 42px rgba(0, 0, 0, 0.35);
    --shadow-soft: 0 12px 26px rgba(0, 0, 0, 0.22);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --container: 1200px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    color: var(--text);
    font-family: "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.65;
    background:
        radial-gradient(circle at top center, rgba(245, 158, 11, 0.12), transparent 26%),
        radial-gradient(circle at 80% 15%, rgba(249, 115, 22, 0.1), transparent 20%),
        linear-gradient(180deg, #03040a 0%, #060a11 42%, #020305 100%);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    animation: fadeIn 0.45s ease both;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 75%);
}

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

img,
video {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(92%, var(--container));
    margin: 0 auto;
}

.section,
.featured-events,
.experience-section,
.page-section {
    padding: 3.3rem 0;
}

.section--tight,
.page-section-tight {
    padding-top: 0;
}

.section-header {
    width: min(100%, 720px);
    margin: 0 auto;
    text-align: center;
}

.section-header--compact {
    width: min(100%, 720px);
    margin: 0 auto 0.35rem;
    text-align: center;
}

.section-header .section-subtitle {
    width: min(100%, 720px);
}

.section-header--compact .section-subtitle {
    width: min(100%, 680px);
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    z-index: 2000;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    background: var(--accent);
    color: #1a1205;
    font-weight: 800;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 1rem;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(245, 158, 11, 0.14);
    background: rgba(3, 4, 8, 0.84);
    backdrop-filter: blur(18px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 76px;
    padding: 0.9rem 0;
}

.navbar-logo a {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff6e8;
}

.navbar-logo a::after {
    content: "";
    display: block;
    width: 0.95rem;
    height: 0.95rem;
    background: url("../images/fancy-mask.png") center/contain no-repeat;
    filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.35));
}

.nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 999px;
    background: rgba(14, 18, 28, 0.88);
    color: var(--text);
    font-size: 1.15rem;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
    border-color: rgba(245, 158, 11, 0.5);
    background: rgba(245, 158, 11, 0.12);
    transform: translateY(-1px);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
    outline: none;
}

.nav-menu {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0 0.65rem;
    margin-top: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(4, 6, 12, 0.96);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: max-height 0.32s ease, opacity 0.24s ease, transform 0.24s ease, padding 0.24s ease, margin-top 0.24s ease;
}

.nav-menu.active {
    max-height: 240px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    padding: 0.65rem;
    margin-top: 0.35rem;
}

.nav-menu,
.nav-item {
    list-style: none;
}

.nav-link {
    display: block;
    padding: 0.7rem 1rem;
    color: var(--text);
    font-size: 0.98rem;
    font-weight: 700;
    text-align: center;
    transition: color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ffd48a;
    transform: translateY(-1px);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.28rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(245, 158, 11, 0), #ffd38f, rgba(245, 158, 11, 0));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link.active {
    text-shadow: 0 0 12px rgba(245, 158, 11, 0.16);
}

.hero {
    position: relative;
    isolation: isolate;
    display: grid;
    align-items: center;
    min-height: min(79vh, 690px);
    overflow: hidden;
    padding: 1.45rem 0 2.3rem;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0.88;
    filter: saturate(0.9) contrast(1.06) brightness(0.88);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(2, 3, 6, 0.2) 0%, rgba(2, 3, 6, 0.72) 62%, rgba(2, 3, 6, 0.94) 100%),
        linear-gradient(115deg, rgba(0, 0, 0, 0.62) 0%, rgba(6, 8, 15, 0.42) 45%, rgba(245, 158, 11, 0.1) 100%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, transparent 0%, rgba(5, 7, 12, 0.34) 100%);
}

.hero-content {
    width: min(100%, 760px);
    text-align: center;
    padding: 0.2rem 0 0.2rem;
}

.hero-copy {
    margin-top: clamp(1.5rem, 3vw, 2.4rem);
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-copy.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-eyebrow,
.detail-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.78rem;
    color: #ffd48a;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.hero-eyebrow::before,
.detail-eyebrow::before {
    content: "";
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), #ffd18b);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.45);
}

.hero-content h1,
.page-hero h1,
.featured-events h2,
.experience-section h2,
.detail-title {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: 0.02em;
    text-wrap: balance;
}

.hero-content h1 {
    font-size: clamp(2.95rem, 10vw, 6.4rem);
    margin-bottom: 0;
    text-shadow: 0 20px 44px rgba(0, 0, 0, 0.48);
}

.hero-content p {
    width: min(100%, 640px);
    margin: 0 auto 1.42rem;
    color: #f3e5cf;
    font-size: clamp(1.05rem, 2.2vw, 1.24rem);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: min(100%, 360px);
    margin: 0 auto;
}

.btn,
.cta-button,
.secondary-button,
.view-details-btn,
.form-submit,
.detail-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.9rem 1.2rem;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary,
.cta-button,
.form-submit,
.detail-cta {
    border: 0;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #1a1205;
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.2);
}

.btn-secondary,
.secondary-button,
.view-details-btn {
    border: 1px solid rgba(245, 158, 11, 0.22);
    background: rgba(14, 18, 28, 0.78);
    color: #fff4df;
}

.cta-button:hover,
.secondary-button:hover,
.view-details-btn:hover,
.form-submit:hover,
.detail-cta:hover {
    transform: translateY(-2px);
}

.cta-button:hover,
.form-submit:hover,
.detail-cta:hover {
    box-shadow: 0 24px 44px rgba(245, 158, 11, 0.22);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    width: min(100%, 560px);
    margin: 1.3rem auto 1.4rem;
    list-style: none;
}

.card,
.hero-stats li,
.feature-card,
.contact-card,
.booking-summary,
.detail-panel,
.event-card,
.info-panel {
    border: 1px solid rgba(245, 158, 11, 0.15);
    border-radius: var(--radius-md);
    background:
        linear-gradient(180deg, rgba(17, 22, 34, 0.96) 0%, rgba(8, 10, 16, 0.96) 100%);
    box-shadow: var(--shadow-md);
}

.hero-stats li {
    padding: 1rem 1rem 0.95rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-stats strong {
    display: block;
    margin-bottom: 0.15rem;
    color: #fff4df;
    font-size: 1.2rem;
}

.hero-stats span {
    color: var(--muted);
    font-size: 0.92rem;
}

.page-hero {
    padding-bottom: 1rem;
}

.page-hero-tight {
    padding-bottom: 0.4rem;
}

.page-hero-spaced {
    padding-bottom: 1.8rem;
}

.detail-page-section {
    padding-top: 1.1rem;
}

.page-hero h1,
.featured-events h2,
.experience-section h2,
.detail-title {
    font-size: clamp(2.35rem, 6vw, 4.4rem);
}

.section-subtitle {
    margin: 0.9rem auto 0;
    color: var(--muted);
    font-size: 1.05rem;
    text-align: center;
}

.page-hero .section-subtitle {
    margin-top: 1rem;
}

.page-hero-tight .section-subtitle {
    margin-top: 0.55rem;
}

.events-grid,
.experience-grid,
.contact-layout,
.booking-layout,
.detail-layout {
    display: grid;
    gap: 1.25rem;
    width: min(100%, 1120px);
    margin-left: auto;
    margin-right: auto;
}

.events-grid {
    margin-top: 2rem;
}

.event-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
    margin-top: 1.5rem;
}

.filter-btn {
    min-height: 42px;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(245, 158, 11, 0.16);
    border-radius: 999px;
    background: rgba(14, 18, 28, 0.7);
    color: #dccdb6;
    font-weight: 800;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter-btn:hover,
.filter-btn:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(245, 158, 11, 0.36);
    outline: none;
}

.filter-btn.active {
    border-color: transparent;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #1a1205;
}

.filter-status {
    margin-top: 1rem;
    color: var(--muted);
    text-align: center;
    font-size: 0.95rem;
}

.event-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease, max-height 0.3s ease, margin 0.3s ease;
}

.event-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.08) 0%, transparent 20%, rgba(0, 0, 0, 0.2) 100%);
    opacity: 0.85;
}

.event-card:hover {
    transform: translateY(-7px);
    border-color: rgba(245, 158, 11, 0.32);
    box-shadow: 0 26px 58px rgba(0, 0, 0, 0.42);
}

.event-card.is-hidden {
    display: none;
}

.event-image {
    position: relative;
    overflow: hidden;
}

.event-card--festival .event-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15, 7, 4, 0.12) 0%, rgba(77, 25, 5, 0.24) 55%, rgba(245, 103, 19, 0.28) 100%),
        linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(249, 115, 22, 0.22) 100%);
    mix-blend-mode: multiply;
    pointer-events: none;
}

.event-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.event-card--festival .event-image img {
    filter: saturate(1.15) contrast(1.08) brightness(0.92) sepia(0.28) hue-rotate(-10deg);
}

.event-card--theater .event-image img {
    filter: saturate(1.12) contrast(1.06) brightness(0.92) sepia(0.22) hue-rotate(-18deg);
}

.event-card--acoustic .event-image img {
    filter: saturate(1.1) contrast(1.06) brightness(0.92) sepia(0.2) hue-rotate(-14deg);
}

.event-card:hover .event-image img {
    transform: scale(1.05);
    filter: saturate(1.08) contrast(1.02);
}

.event-card--festival:hover .event-image img {
    filter: saturate(1.2) contrast(1.05) brightness(0.9) sepia(0.34) hue-rotate(-8deg);
}

.event-card--theater:hover .event-image img {
    filter: saturate(1.16) contrast(1.08) brightness(0.9) sepia(0.28) hue-rotate(-14deg);
}

.event-card--acoustic:hover .event-image img {
    filter: saturate(1.14) contrast(1.08) brightness(0.9) sepia(0.24) hue-rotate(-10deg);
}

.detail-media--acoustic img {
    filter: saturate(1.08) contrast(1.04) brightness(0.94) sepia(0.18) hue-rotate(-12deg);
}

.event-badge {
    position: absolute;
    top: 0.9rem;
    left: 0.9rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.95);
    color: #1a1205;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.24);
}

.event-info {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.2rem 1.2rem 1.3rem;
}

.event-info::before {
    content: "";
    position: absolute;
    left: 1.2rem;
    right: 1.2rem;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.42), transparent);
}

.event-info h3 {
    margin-bottom: 0.8rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
    line-height: 1.15;
}

.event-date,
.event-location,
.event-price {
    margin-bottom: 0.45rem;
    color: #d6cab2;
    font-size: 0.95rem;
}

.event-price {
    color: #ffd38f;
    font-weight: 800;
}

.view-details-btn {
    margin-top: 1rem;
    margin-top: auto;
    border-color: rgba(245, 158, 11, 0.26);
    color: #fff0d5;
}

.experience-grid {
    margin-top: 2rem;
}

.feature-card,
.info-panel {
    padding: 1.35rem;
    width: 100%;
}

.feature-card {
    text-align: center;
}

.feature-card h3,
.contact-card h3,
.booking-summary h2,
.detail-panel h2 {
    margin-bottom: 0.6rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
}

.feature-card p,
.contact-card p,
.booking-summary p,
.detail-panel p {
    color: #d5caba;
}

.feature-list,
.detail-list,
.contact-list {
    list-style: none;
}

.feature-list {
    display: grid;
    gap: 0.75rem;
    margin-top: 1rem;
    justify-items: center;
}

.feature-list li,
.detail-list li {
    position: relative;
    padding-left: 0;
    color: #efe5d5;
}

.feature-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
}

.feature-list li::before,
.detail-list li::before {
    content: "";
    position: static;
    width: 0.48rem;
    height: 0.48rem;
    flex: 0 0 auto;
    border-radius: 999px;
    background: linear-gradient(135deg, #f59e0b, #ffd38f);
    box-shadow: 0 0 16px rgba(245, 158, 11, 0.35);
}

.detail-layout {
    margin-top: 2rem;
    margin-bottom: 2.5rem;
}

.detail-media {
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(245, 158, 11, 0.16);
    box-shadow: var(--shadow-lg);
    width: 100%;
    min-height: 280px;
}

.detail-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-panel {
    padding: 1.4rem;
    width: 100%;
}

.detail-block {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(245, 158, 11, 0.12);
}

.detail-block:last-of-type {
    margin-bottom: 1.2rem;
    padding-bottom: 0;
    border-bottom: 0;
}

.detail-label {
    display: inline-block;
    margin-bottom: 0.45rem;
    color: #ffd38f;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.detail-list {
    display: grid;
    gap: 0.65rem;
    margin-top: 0.3rem;
}

.detail-cta {
    width: 100%;
}

.booking-layout {
    margin-top: 0;
}

.form-card,
.booking-form,
.contact-form {
    padding: 1.35rem;
    border: 1px solid rgba(245, 158, 11, 0.16);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(15, 19, 30, 0.95) 0%, rgba(8, 10, 16, 0.98) 100%);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 720px;
    justify-self: center;
}

.form-row {
    margin-bottom: 1rem;
}

.booking-form label,
.contact-form label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.55rem;
    color: #fff7ea;
    font-weight: 700;
}

.required-mark {
    color: #ffd38f;
    font-weight: 900;
}

.booking-form input,
.booking-form select,
.booking-form textarea,
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 0.82rem 0.95rem;
    border: 1px solid rgba(245, 158, 11, 0.16);
    border-radius: var(--radius-sm);
    background: rgba(4, 7, 12, 0.9);
    color: var(--text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.booking-form textarea,
.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.booking-form input::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #998c79;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #f59e0b;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
    background: rgba(4, 7, 12, 1);
}

.booking-form .is-invalid,
.contact-form .is-invalid {
    border-color: rgba(253, 164, 175, 0.9);
    box-shadow: 0 0 0 4px rgba(253, 164, 175, 0.12);
}

.field-help,
.field-error {
    margin-top: 0.45rem;
    font-size: 0.88rem;
}

.field-help {
    color: var(--muted);
}

.field-error {
    min-height: 1.05em;
    color: #fecaca;
}

.booking-summary {
    margin-top: 1rem;
    padding: 1.15rem;
    background: rgba(24, 29, 42, 0.88);
    width: 100%;
    max-width: 400px;
    justify-self: center;
}

.summary-list {
    display: grid;
    gap: 0.8rem;
    margin-top: 1rem;
}

.summary-list div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(245, 158, 11, 0.1);
}

.summary-list div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.summary-list dt {
    color: var(--muted);
    font-size: 0.9rem;
}

.summary-list dd {
    color: #fff5e3;
    font-weight: 800;
    text-align: right;
}

.form-message {
    min-height: 1.4em;
    margin-top: 1rem;
    font-weight: 700;
    text-align: center;
}

.form-message.is-success {
    color: var(--success);
}

.form-message.is-error {
    color: var(--danger);
}

.contact-layout {
    margin-top: 0;
}

.contact-card {
    padding: 1.35rem;
    width: 100%;
    max-width: 400px;
    justify-self: center;
}

.contact-list {
    display: grid;
    gap: 0.9rem;
    margin-top: 1rem;
}

.contact-list li {
    display: grid;
    gap: 0.25rem;
}

.contact-list strong {
    color: #fff6e8;
}

.contact-list span,
.contact-list a {
    color: var(--muted);
}

.footer {
    margin-top: 0.5rem;
    padding: 0.4rem 0 1rem;
    border-top: 1px solid rgba(245, 158, 11, 0.12);
    background: rgba(3, 4, 8, 0.92);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.4rem;
    width: min(100%, 900px);
    margin: 0 auto;
    justify-items: center;
    text-align: center;
}

.footer-section h4 {
    margin-bottom: 0.65rem;
    color: #fff4de;
    font-size: 1.05rem;
}

.footer-section p,
.footer-section a,
.footer-bottom {
    color: var(--muted);
}

.footer-section ul {
    list-style: none;
    display: grid;
    gap: 0.55rem;
}

.footer-section a:hover {
    color: #fff4de;
}

.footer-bottom {
    width: min(100%, 900px);
    margin: 2.7rem auto 0;
    padding-top: 0.4rem;
    padding-bottom: 0.35rem;
    border-top: 1px solid rgba(245, 158, 11, 0.12);
    text-align: center;
    font-size: 0.92rem;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-content.scroll-reveal {
    transform: translateY(10px);
}

.hero-stats.scroll-reveal,
.events-grid.scroll-reveal,
.experience-grid.scroll-reveal,
.booking-layout.scroll-reveal,
.contact-layout.scroll-reveal,
.detail-layout.scroll-reveal,
.footer-content.scroll-reveal {
    transform: translateY(22px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
        justify-content: center;
        width: auto;
    }

    .hero-stats {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        margin-bottom: 1.7rem;
    }

    .booking-layout,
    .contact-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .events-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .experience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 900px) {
    .navbar-container {
        gap: 1.25rem;
    }

    .nav-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        width: auto;
        flex-direction: row;
        align-items: center;
        gap: 0.8rem;
        margin: 0 0 0 auto;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        max-height: none;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        overflow: visible;
    }

    .nav-link {
        padding: 0.65rem 0.25rem;
    }

    .page-hero,
    .featured-events,
    .experience-section,
    .page-section {
        padding: 4rem 0;
    }

    .page-hero-tight {
        padding: 2.2rem 0 0.9rem;
    }

    .page-hero-spaced {
        padding-bottom: 2.8rem;
    }

    .detail-page-section {
        padding-top: 1.75rem;
    }

    .section--tight,
    .page-section-tight {
        padding-top: 0;
    }

    .hero {
        min-height: min(81vh, 730px);
        padding: 1.45rem 0 2.65rem;
    }

    .events-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .experience-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .booking-layout {
        grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
        align-items: start;
    }

    .contact-layout {
        grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
        align-items: start;
    }

    .detail-layout {
        grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
        align-items: start;
        margin-bottom: 3rem;
    }

    .footer-content {
        grid-template-columns: repeat(3, minmax(0, 240px));
        justify-content: center;
        justify-items: center;
        align-items: start;
        text-align: center;
    }

    .footer-section {
        width: 100%;
        text-align: center;
    }
}

@media (min-width: 1100px) {
    .hero-content,
    .page-hero h1,
    .page-hero .section-subtitle,
    .featured-events h2,
    .experience-section h2,
    .detail-title {
        text-align: center;
    }
}

@media (max-width: 899.98px) {
    .page-hero h1,
    .featured-events h2,
    .experience-section h2,
    .detail-title {
        text-align: center;
    }
}

@media (max-width: 639.98px) {
    .navbar-container {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "brand toggle"
            "menu menu";
        align-items: center;
        column-gap: 0.85rem;
    }

    .navbar-logo {
        grid-area: brand;
        margin-right: 0;
    }

    .nav-toggle {
        grid-area: toggle;
        justify-self: end;
        margin-left: 0;
    }

    .nav-menu {
        grid-area: menu;
    }

    .hero {
        min-height: 69vh;
        padding: 1.1rem 0 2.05rem;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .event-image img {
        height: 200px;
    }

    .booking-form,
    .contact-form,
    .booking-summary,
    .contact-card,
    .detail-panel,
    .feature-card,
    .info-panel {
        padding: 1rem;
    }

    .booking-form,
    .contact-form,
    .booking-summary,
    .contact-card {
        width: calc(100% - 1.1rem);
        margin-left: auto;
        margin-right: auto;
    }

    .footer-content {
        gap: 1.1rem;
    }

    .section--tight,
    .page-section-tight {
        padding-top: 0;
    }

    .detail-page-section {
        padding-top: 0.9rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .scroll-reveal,
    .scroll-reveal.is-visible {
        opacity: 1;
        transform: none;
    }

    .hero-copy,
    .hero-copy.is-visible {
        opacity: 1;
        transform: none;
    }
}
