/* =============================================================================
   HANABI MAGIC 富士・山中湖 2026 — Stylesheet
   ============================================================================= */

/* --- Custom Properties --- */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #141414;
    --bg-tertiary: #222222;
    --bg-card: #1c1c1c;
    --text-primary: #f0f0f0;
    --text-secondary: #ffffff;
    --text-muted: #555555;
    --accent-gold: #c9a96e;
    --accent-gold-hover: #dbbe85;
    --accent-gold-dim: rgba(201, 169, 110, 0.15);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-gold: rgba(201, 169, 110, 0.3);
    --font-serif: 'Noto Serif JP', serif;
    --font-sans: 'Noto Sans JP', sans-serif;
    --font-display: 'Cormorant Garamond', 'Noto Serif JP', serif;
    --max-width: 1100px;
    --header-height: 70px;
    --transition-base: 0.3s ease;
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color var(--transition-base);
}

a:hover {
    color: var(--accent-gold-hover);
}

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

ul {
    list-style: none;
}

/* =============================================================================
   Header
   ============================================================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--header-height);
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.6) 0%, transparent 100%);
    transition: background var(--transition-base), backdrop-filter var(--transition-base);
}

.header--scrolled {
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

.header__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
}

.header__logo {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--text-primary);
    text-transform: uppercase;
    margin-right: auto;
}

.header__logo:hover {
    color: var(--accent-gold);
}

.header__menu {
    display: none;
    gap: 32px;
    margin-right: auto;
}

.header__menu a {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    text-transform: uppercase;
    transition: color var(--transition-base);
}

.header__menu a:hover {
    color: var(--text-primary);
}

.header__lang {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
    padding: 6px 14px;
    margin-right: 16px;
    transition: all var(--transition-base);
}

.header__lang:hover {
    color: var(--text-primary);
    border-color: var(--accent-gold);
}

/* Hamburger */
.header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.header__hamburger span {
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--text-primary);
    transition: all var(--transition-base);
}

.header__hamburger.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

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

.header__hamburger.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 99;
    background-color: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu__list {
    text-align: center;
}

.mobile-menu__list li {
    margin: 24px 0;
}

.mobile-menu__list a {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
    text-transform: uppercase;
    transition: color var(--transition-base);
}

.mobile-menu__list a:hover {
    color: var(--text-primary);
}

.mobile-menu__lang {
    display: inline-block;
    margin-top: 16px;
    padding: 8px 24px;
    border: 1px solid var(--border-subtle);
}

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

/* Hero background video */
.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    object-position: center 30%;
    opacity: 0;
    animation: bgReveal 2s cubic-bezier(0.16, 1, 0.3, 1) 2.6s forwards;
}

@media (max-width: 767px) {
    .hero__bg {
        object-position: center center;
    }
}

@keyframes bgReveal {
    0% { opacity: 0; transform: scale(1.08); }
    100% { opacity: 1; transform: scale(1); }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(10, 10, 10, 0.55) 0%,
            rgba(10, 10, 10, 0.35) 35%,
            rgba(10, 10, 10, 0.4) 60%,
            rgba(10, 10, 10, 0.88) 100%
        );
    z-index: 1;
}

/* --- Logo Area --- */
.hero__logo-area {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 clamp(16px, 4vw, 40px);
}

/* Logo wrapper with shimmer overlay */
.hero__logo-wrapper {
    position: relative;
    display: inline-block;
    width: clamp(240px, 50vw, 520px);
    opacity: 0;
    transform: scale(0.9);
    animation: logoReveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.hero__logo-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(201, 169, 110, 0.3));
    overflow: visible;
}

@keyframes logoReveal {
    0% {
        opacity: 0;
        transform: scale(0.9);
        filter: blur(8px);
    }
    60% {
        opacity: 1;
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

/* --- Event Info below logo --- */
.hero__event-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: clamp(24px, 4vw, 48px);
    opacity: 0;
    transform: translateY(16px);
    animation: eventInfoFadeIn 1s ease 2.4s forwards;
}

@keyframes eventInfoFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__event-divider {
    width: clamp(80px, 16vw, 180px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.hero__event-date {
    font-family: var(--font-display);
    font-size: clamp(18px, 3vw, 32px);
    font-weight: 400;
    letter-spacing: 0.25em;
    color: var(--accent-gold);
    text-shadow: 0 0 30px rgba(201, 169, 110, 0.3);
    margin: clamp(8px, 1.5vw, 16px) 0 4px;
}

.hero__event-venue {
    font-family: var(--font-serif);
    font-size: clamp(12px, 1.6vw, 16px);
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    text-shadow: 0 0 30px rgba(201, 169, 110, 0.3);
    margin-bottom: clamp(8px, 1.5vw, 16px);
}

@keyframes infoFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =============================================================================
   Section Divider
   ============================================================================= */
.section-divider {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 40px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0.4;
}

/* =============================================================================
   Sections — Common
   ============================================================================= */
.section {
    padding: clamp(80px, 12vw, 160px) clamp(20px, 5vw, 40px);
}

.section__inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section__label {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--accent-gold);
}

.section__title {
    font-family: var(--font-serif);
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.5;
    color: var(--text-primary);
    margin-bottom: clamp(48px, 7vw, 72px);
}

/* =============================================================================
   About
   ============================================================================= */
.about {
    background-color: #0a0a0a;
}

.about .section__title {
    margin-bottom: clamp(24px, 4vw, 36px);
}

.about__lead {
    font-family: var(--font-serif);
    font-size: clamp(15px, 1.8vw, 19px);
    font-weight: 400;
    line-height: 2.2;
    color: var(--text-primary);
    margin-bottom: 32px;
}

.about__text {
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 400;
    line-height: 2.2;
    color: var(--text-secondary);
    max-width: 720px;
    margin-bottom: clamp(48px, 8vw, 80px);
}

.about__features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.about__feature {
    padding: 32px;
    border: 1px solid var(--border-subtle);
    transition: border-color var(--transition-base);
}

.about__feature:hover {
    border-color: var(--border-gold);
}

.about__feature h3 {
    font-family: var(--font-serif);
    font-size: clamp(15px, 1.6vw, 18px);
    font-weight: 400;
    color: var(--accent-gold);
    margin-bottom: 12px;
    letter-spacing: 0.03em;
    line-height: 1.7;
}

.about__feature p {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.9;
}

/* =============================================================================
   Tickets
   ============================================================================= */
.tickets {
    background-color: #1c1c1c;
}

.tickets__lead {
    font-family: var(--font-serif);
    font-size: clamp(14px, 1.6vw, 17px);
    font-weight: 400;
    line-height: 2.2;
    color: var(--text-primary);
    margin-top: -24px;
    margin-bottom: 48px;
}

.tickets__note {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 32px;
    text-align: center;
}

.tickets__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.ticket-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: clamp(28px, 4vw, 44px);
    transition: border-color var(--transition-base), transform var(--transition-base);
}

.ticket-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-2px);
}

/* --- Tier Styles --- */
.ticket-card--premium {
    border-color: var(--border-gold);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(201, 169, 110, 0.07) 100%);
}

.ticket-card--royal {
    border-color: rgba(192, 192, 192, 0.25);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(192, 192, 192, 0.04) 100%);
}

/* --- Icon --- */
.ticket-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
}

.ticket-card__icon--crown::before   { content: "👑"; }
.ticket-card__icon--trophy::before  { content: "🏆"; }
.ticket-card__icon--briefcase::before { content: "💼"; }
.ticket-card__icon--star::before    { content: "🌟"; }

/* --- Header --- */
.ticket-card__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.ticket-card__name {
    font-family: var(--font-serif);
    font-size: clamp(17px, 2vw, 22px);
    font-weight: 500;
    letter-spacing: 0.03em;
}

.ticket-card--premium .ticket-card__name {
    color: var(--accent-gold);
}

/* --- Price --- */
.ticket-card__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 20px;
}

.ticket-card__amount {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--accent-gold);
}

.ticket-card__unit {
    font-size: 12px;
    color: #999;
}

/* --- Description --- */
.ticket-card__desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-subtle);
}

/* --- Details (Includes & Recommend) --- */
.ticket-card__details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.ticket-card__section-title {
    font-family: var(--font-serif);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.ticket-card__list {
    list-style: none;
    padding: 0;
}

.ticket-card__list li {
    position: relative;
    padding-left: 16px;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-primary);
}

.ticket-card__list li::before {
    content: "·";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 700;
}

.ticket-card__list--recommend li {
    color: var(--text-secondary);
}

.ticket-card__list--recommend li::before {
    content: "→";
    font-size: 11px;
    color: var(--text-muted);
}

.tickets__cta {
    text-align: center;
}

/* Button */
.btn {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 16px 48px;
    transition: all var(--transition-base);
}

.btn--primary {
    color: var(--bg-primary);
    background-color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
}

.btn--primary:hover {
    color: var(--accent-gold);
    background-color: transparent;
}

/* =============================================================================
   Seat Map
   ============================================================================= */
.seatmap {
    background-color: #0a0a0a;
}

.seatmap__figure {
    margin: 0;
}

.seatmap__image-wrapper {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    padding: clamp(16px, 3vw, 32px);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.seatmap__image {
    max-width: 100%;
    height: auto;
}

.seatmap__caption {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 16px;
    text-align: center;
}

/* =============================================================================
   Access
   ============================================================================= */
.access {
    background-color: #1c1c1c;
}

.access__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.access__block {
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-subtle);
}

.access__block:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.access__subtitle {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.access__venue-name {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 8px;
}

.access__address {
    font-size: 13px;
    color: var(--text-secondary);
}

.access__list li {
    position: relative;
    padding-left: 16px;
    font-size: 14px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 2;
}

.access__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.9em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--accent-gold);
}

/* =============================================================================
   FAQ
   ============================================================================= */
.faq {
    background-color: #0a0a0a;
}

.faq__category {
    margin-bottom: 48px;
}

.faq__category:last-child {
    margin-bottom: 0;
}

.faq__category-title {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--accent-gold);
    padding-bottom: 16px;
    margin-bottom: 0;
    border-bottom: 1px solid var(--border-gold);
}

.faq__item {
    border-bottom: 1px solid var(--border-subtle);
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    transition: color var(--transition-base);
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question::after {
    content: '+';
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 300;
    color: var(--text-muted);
    transition: transform var(--transition-base);
}

details[open] .faq__question::after {
    content: '−';
    color: var(--accent-gold);
}

.faq__question:hover {
    color: var(--accent-gold);
}

.faq__answer {
    padding: 0 0 20px;
}

.faq__answer p {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 2;
}

/* =============================================================================
   Contact & SNS
   ============================================================================= */
.contact {
    background-color: #1c1c1c;
    text-align: center;
}

.contact .section__label,
.contact .section__title {
    text-align: center;
}

.contact__text {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.contact__alert {
    padding: 16px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 24px;
    text-align: left;
}

.contact__alert--success {
    background: rgba(110, 201, 130, 0.12);
    border: 1px solid rgba(110, 201, 130, 0.3);
    color: #6ec982;
}

.contact__alert--error,
.contact__alert--validation {
    background: rgba(201, 110, 110, 0.12);
    border: 1px solid rgba(201, 110, 110, 0.3);
    color: #c96e6e;
}

.contact__organizer {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.contact__site {
    margin-bottom: 48px;
}

.contact__site a {
    font-size: 13px;
    letter-spacing: 0.05em;
}

/* Contact Form */
.contact__form {
    max-width: 600px;
    margin: 0 auto 48px;
    text-align: left;
}

.contact__form-group {
    margin-bottom: 24px;
}

.contact__form-group label {
    display: block;
    font-family: var(--font-serif);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.contact__form-group input,
.contact__form-group select,
.contact__form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    color: var(--text-primary);
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    outline: none;
    transition: border-color var(--transition-base);
    -webkit-appearance: none;
    appearance: none;
}

.contact__form-group input:focus,
.contact__form-group select:focus,
.contact__form-group textarea:focus {
    border-color: var(--accent-gold);
}

.contact__form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%23999' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.contact__form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact__form-submit {
    text-align: center;
    margin-top: 32px;
}

.contact__sns {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.contact__sns-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    transition: all var(--transition-base);
}

.contact__sns-link:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

/* =============================================================================
   Footer
   ============================================================================= */
.footer {
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-subtle);
    padding: 40px clamp(20px, 5vw, 40px);
}

.footer__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.footer__sponsor {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer__sponsor-label {
    font-size: 11px;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.footer__sponsor-link {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity var(--transition-base);
}

.footer__sponsor-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer__supporters {
    font-size: 11px;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.footer__copyright {
    font-size: 11px;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* =============================================================================
   Sticky CTA
   ============================================================================= */
.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 90;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sticky-cta__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--bg-primary);
    background-color: var(--accent-gold);
    text-decoration: none;
    transition: all var(--transition-base);
}

.sticky-cta__btn:hover {
    background-color: var(--accent-gold-hover);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

/* =============================================================================
   Fade-in Animation
   ============================================================================= */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================================================
   Responsive — Tablet (768px+)
   ============================================================================= */
@media (min-width: 768px) {
    body {
        font-size: 16px;
    }

    .about__features {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .tickets__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .ticket-card__details {
        grid-template-columns: 1fr 1fr;
    }

    .access__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }

    .access__block {
        padding-bottom: 0;
        border-bottom: none;
    }
}

/* =============================================================================
   Responsive — Desktop (1024px+)
   ============================================================================= */
@media (min-width: 1024px) {
    .header__menu {
        display: flex;
    }

    .header__hamburger {
        display: none;
    }

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