:root {
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --gold-pale: #F5EDD4;
    --cream: #FAF6EF;
    --dark: #1A1410;
    --dark-mid: #2D2419;
    --stone: #6B5E4E;
    --stone-light: #A8998A;
    --red-papal: #8B1A1A;
    --white: #FFFFFF;
    --border: rgba(201,168,76,0.25);
    --shadow: 0 24px 64px rgba(26,20,16,0.18);
    --r: 20px;
    --r-lg: 32px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--dark); overflow-x: hidden; }

nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px; height: 72px;
    background: rgba(250,246,239,0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 600; letter-spacing: 0.08em; color: var(--dark); cursor: pointer; display: flex; align-items: center; gap: 12px; }
.nav-logo .crest { width: 36px; height: 36px; background: var(--dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a { font-size: 0.82rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone); text-decoration: none; cursor: pointer; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active-link { color: var(--dark); }
.btn-nav { background: var(--dark); color: var(--cream) !important; padding: 10px 24px; border-radius: 100px; transition: background 0.2s !important; }
.btn-nav:hover { background: var(--gold) !important; color: var(--dark) !important; }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 16px 36px; border-radius: 100px; font-family: 'DM Sans', sans-serif; font-size: 0.88rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; border: none; transition: all 0.25s; text-decoration: none; }
.btn-primary { background: var(--gold); color: var(--dark); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.4); }
.btn-dark { background: var(--dark); color: var(--cream); }
.btn-dark:hover { background: var(--dark-mid); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--dark); border: 1.5px solid var(--dark); }
.btn-outline:hover { background: var(--dark); color: var(--cream); }
.btn-ghost { background: rgba(255,255,255,0.15); color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,0.25); }

/* HERO */
.hero { position: relative; height: 100vh; min-height: 700px; display: flex; align-items: flex-end; padding: 80px 48px; overflow: hidden; }
.hero-bg {
    position: absolute; inset: 0;
    background:
            linear-gradient(to top, rgba(26,20,16,0.85) 0%, rgba(26,20,16,0.3) 50%, rgba(26,20,16,0.1) 100%),
            url('img/hero-sistine.jpg') center/cover no-repeat;
    transform: scale(1.04);
    animation: heroZoom 20s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-content { position: relative; z-index: 2; max-width: 800px; animation: fadeUp 1.2s ease both; }
@keyframes fadeUp { from { opacity:0; transform: translateY(40px); } to { opacity:1; transform:none; } }
.hero-eyebrow { font-size: 0.75rem; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold-light); }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 7vw, 6rem); font-weight: 300; line-height: 1.05; color: var(--white); margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub { font-size: 1rem; color: rgba(255,255,255,0.72); line-height: 1.7; max-width: 480px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { position: absolute; right: 48px; bottom: 80px; z-index: 2; display: flex; flex-direction: column; gap: 24px; animation: fadeUp 1.4s ease both; }
.hero-stat { text-align: right; }
.hero-stat .num { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 300; color: var(--white); line-height: 1; }
.hero-stat .label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); }

/* QUICK BOOK */
.quick-book { background: var(--dark); padding: 32px 48px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.quick-book-label { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--gold-light); white-space: nowrap; margin-right: 16px; }
.quick-form { flex: 1; display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.qf-field { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 160px; }
.qf-field label { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--stone-light); }
.qf-field select, .qf-field input { background: rgba(255,255,255,0.07); border: 1px solid rgba(201,168,76,0.3); border-radius: 10px; padding: 12px 16px; color: var(--cream); font-family: 'DM Sans', sans-serif; font-size: 0.9rem; outline: none; cursor: pointer; transition: border-color 0.2s; }
.qf-field select:focus, .qf-field input:focus { border-color: var(--gold); }
.qf-field select option { background: var(--dark-mid); }

/* SECTIONS */
.section { padding: 96px 48px; }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; }
.section-eyebrow { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; line-height: 1.15; color: var(--dark); }
.section-title em { font-style: italic; }

/* CARDS */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.collection-card { border-radius: var(--r-lg); overflow: hidden; position: relative; cursor: pointer; transition: transform 0.35s cubic-bezier(.25,.8,.25,1); }
.collection-card:hover { transform: translateY(-8px); }
.collection-card:hover .card-img { transform: scale(1.07); }
.card-img-wrap { height: 280px; overflow: hidden; position: relative; }
.card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.card-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3rem; transition: transform 0.5s ease; }
.card-body { padding: 24px; background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-top: none; border-radius: 0 0 var(--r-lg) var(--r-lg); }
.card-tag { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400; margin-bottom: 8px; }
.card-desc { font-size: 0.85rem; color: var(--stone); line-height: 1.6; margin-bottom: 16px; }
.card-price { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 300; color: var(--dark); }
.card-price span { font-family: 'DM Sans', sans-serif; font-size: 0.8rem; color: var(--stone-light); font-weight: 300; }

/* HIGHLIGHT */
.highlight-section { padding: 0 48px 96px; }
.highlight-card { border-radius: var(--r-lg); overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; background: var(--dark); }
.highlight-visual { position: relative; overflow: hidden; }
.highlight-visual img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; }
.highlight-overlay { position: absolute; inset: 0; background: linear-gradient(to right, transparent, rgba(26,20,16,0.6)); }
.highlight-content { padding: 64px 56px; display: flex; flex-direction: column; justify-content: center; }
.highlight-tag { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.highlight-content h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 300; color: var(--white); line-height: 1.2; margin-bottom: 20px; }
.highlight-content p { color: rgba(255,255,255,0.65); line-height: 1.75; font-size: 0.9rem; margin-bottom: 36px; }
.highlight-price-block { display: flex; align-items: baseline; gap: 12px; margin-bottom: 32px; }
.highlight-price { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 300; color: var(--gold-light); }
.highlight-price-label { color: rgba(255,255,255,0.45); font-size: 0.82rem; }

/* INFO GRID */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.info-card { background: var(--white); border-radius: var(--r); padding: 36px 32px; border: 1px solid rgba(0,0,0,0.06); transition: transform 0.3s, box-shadow 0.3s; }
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.info-icon { width: 52px; height: 52px; background: var(--gold-pale); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; }
.info-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; margin-bottom: 10px; }
.info-card p { font-size: 0.85rem; color: var(--stone); line-height: 1.65; }
.info-card strong { color: var(--dark); font-weight: 500; }

/* TESTIMONIALS */
.testimonials-section { background: var(--dark); padding: 96px 48px; }
.testimonials-section .section-title { color: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 56px; }
.t-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(201,168,76,0.2); border-radius: var(--r); padding: 36px 32px; }
.t-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 2px; }
.t-text { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-style: italic; color: rgba(255,255,255,0.85); line-height: 1.65; margin-bottom: 20px; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gold-pale); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.t-name { font-size: 0.82rem; color: var(--stone-light); }
.t-name strong { display: block; color: var(--white); font-weight: 400; font-size: 0.9rem; }

/* FOOTER */
footer { background: var(--dark-mid); padding: 64px 48px 36px; border-top: 1px solid rgba(201,168,76,0.15); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .brand-name { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 400; color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; color: var(--stone-light); line-height: 1.7; max-width: 300px; margin-bottom: 24px; }
.footer-address { font-size: 0.82rem; color: var(--stone-light); line-height: 1.8; }
.footer-address strong { color: var(--gold-light); font-weight: 400; }
.footer-col h5 { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col a { display: block; font-size: 0.85rem; color: var(--stone-light); text-decoration: none; margin-bottom: 10px; cursor: pointer; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.78rem; color: var(--stone-light); }
.notice-bar { background: var(--red-papal); padding: 10px 48px; font-size: 0.78rem; color: rgba(255,255,255,0.88); text-align: center; letter-spacing: 0.04em; }
.notice-bar strong { color: white; }

/* PAGE 2: TICKETS */
#page-tickets { padding-top: 72px; }
.page-hero-sm { background: var(--dark); padding: 64px 48px; position: relative; overflow: hidden; }
.page-hero-sm::before { content: ''; position: absolute; inset: 0; background: url('img/tickets-bg.jpg') center/cover; opacity: 0.15; }
.page-hero-sm-content { position: relative; z-index: 1; }
.page-hero-sm .eyebrow { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.page-hero-sm h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 300; color: var(--white); margin-bottom: 12px; }
.page-hero-sm p { color: rgba(255,255,255,0.6); font-size: 0.95rem; max-width: 500px; }
.tickets-section { padding: 72px 48px; }
.tour-type-tabs { display: flex; gap: 8px; background: var(--white); border-radius: 100px; padding: 6px; border: 1px solid rgba(0,0,0,0.08); margin-bottom: 48px; width: fit-content; flex-wrap: wrap; }
.tab-btn { padding: 10px 24px; border-radius: 100px; font-family: 'DM Sans', sans-serif; font-size: 0.82rem; font-weight: 400; letter-spacing: 0.08em; cursor: pointer; border: none; background: transparent; color: var(--stone); transition: all 0.2s; white-space: nowrap; }
.tab-btn.active { background: var(--dark); color: var(--cream); }
.tab-btn:hover:not(.active) { color: var(--dark); }
.ticket-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.ticket-card { background: var(--white); border-radius: var(--r-lg); overflow: hidden; border: 1px solid rgba(0,0,0,0.07); transition: transform 0.3s, box-shadow 0.3s; position: relative; display: flex; flex-direction: column; height: 100%; }
.ticket-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.ticket-card.featured { border: 2px solid var(--gold); }
.featured-badge { position: absolute; top: 20px; right: 20px; background: var(--gold); color: var(--dark); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 14px; border-radius: 100px; }
.ticket-header { padding: 32px 32px 24px; background: linear-gradient(135deg, #1A1410, #2D2419); position: relative; overflow: hidden; }
.ticket-header::after { content: attr(data-icon); position: absolute; right: 24px; top: 50%; transform: translateY(-50%); font-size: 4rem; opacity: 0.15; }
.ticket-type { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.ticket-name { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 300; color: var(--white); margin-bottom: 8px; }
.ticket-price-row { display: flex; align-items: baseline; gap: 8px; }
.ticket-price { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 300; color: var(--gold-light); }
.ticket-price-note { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.ticket-body { padding: 28px 32px; display: flex; flex-direction: column; flex: 1; }
.ticket-includes { list-style: none; margin-bottom: 24px; flex-grow: 1; }
.ticket-includes li { font-size: 0.85rem; color: var(--stone); padding: 7px 0; border-bottom: 1px solid rgba(0,0,0,0.05); display: flex; align-items: center; gap: 10px; }
.ticket-includes li::before { content: '✓'; color: var(--gold); font-weight: 500; flex-shrink: 0; }
.reduced-note { background: var(--gold-pale); border-radius: 12px; padding: 12px 16px; font-size: 0.78rem; color: var(--stone); margin-bottom: 20px; line-height: 1.6; }
.ticket-body .btn { margin-top: auto; }
.ticket-body .reduced-note { margin-bottom: 20px; }


/* BOOKING FORM */
.booking-section { padding: 0 48px 96px; }
.booking-form-wrap { background: var(--white); border-radius: var(--r-lg); padding: 56px; border: 1px solid rgba(0,0,0,0.07); max-width: 800px; }
.booking-form-wrap h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; margin-bottom: 8px; }
.booking-form-wrap > p { color: var(--stone); font-size: 0.9rem; margin-bottom: 36px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone); font-weight: 500; }
.form-group input, .form-group select, .form-group textarea { background: var(--cream); border: 1.5px solid rgba(0,0,0,0.1); border-radius: 12px; padding: 14px 18px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--dark); outline: none; transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus { border-color: var(--gold); background: white; }
.quantity-control { display: flex; align-items: center; background: var(--cream); border: 1.5px solid rgba(0,0,0,0.1); border-radius: 12px; overflow: hidden; }
.qty-btn { width: 48px; height: 48px; border: none; background: transparent; font-size: 1.2rem; cursor: pointer; color: var(--stone); transition: background 0.2s, color 0.2s; flex-shrink: 0; }
.qty-btn:hover { background: var(--gold-pale); color: var(--dark); }
.qty-num { flex: 1; text-align: center; font-size: 1rem; font-weight: 500; color: var(--dark); }
.qty-group { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.qty-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.qty-info { flex: 1; }
.qty-info strong { display: block; font-size: 0.88rem; font-weight: 500; margin-bottom: 2px; }
.qty-info small { font-size: 0.78rem; color: var(--stone); }
.order-summary { background: var(--dark); border-radius: var(--r); padding: 28px; margin-top: 28px; }
.order-summary h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--white); margin-bottom: 16px; }
.order-line { display: flex; justify-content: space-between; font-size: 0.85rem; color: rgba(255,255,255,0.55); padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.order-line:last-child { border: none; }
.order-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 16px; }
.order-total span { color: var(--gold-light); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; }
.order-total strong { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: var(--white); }

/* PAGE 3: COLLECTIONS */
#page-collections { padding-top: 72px; }
.masterpieces-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-bottom: 2px; }
.mp-item { position: relative; overflow: hidden; aspect-ratio: 1; cursor: pointer; }
.mp-item:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.mp-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; display: block; min-height: 200px; }
.mp-item:hover img { transform: scale(1.08); }
.mp-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,20,16,0.85) 0%, transparent 50%); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; opacity: 0; transition: opacity 0.3s; }
.mp-item:hover .mp-overlay { opacity: 1; }
.mp-overlay h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--white); margin-bottom: 4px; }
.mp-overlay p { font-size: 0.78rem; color: rgba(255,255,255,0.65); }
.museums-list { padding: 96px 48px; }
.museum-row { display: flex; align-items: center; padding: 36px 0; border-bottom: 1px solid rgba(0,0,0,0.07); gap: 40px; cursor: pointer; transition: padding-left 0.3s; }
.museum-row:hover { padding-left: 8px; }
.museum-number { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; color: rgba(0,0,0,0.1); width: 80px; flex-shrink: 0; text-align: right; }
.museum-thumb { width: 80px; height: 80px; border-radius: 14px; overflow: hidden; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.museum-thumb img { width: 100%; height: 100%; object-fit: cover; }
.museum-thumb-placeholder { width: 80px; height: 80px; border-radius: 14px; overflow: hidden; flex-shrink: 0; font-size: 2.5rem; display: flex; align-items: center; justify-content: center; background: var(--gold-pale); }
.museum-info { flex: 1; }
.museum-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; margin-bottom: 6px; }
.museum-info p { font-size: 0.85rem; color: var(--stone); line-height: 1.6; max-width: 500px; }
.museum-arrow { font-size: 1.5rem; color: var(--stone-light); transition: transform 0.3s, color 0.3s; }
.museum-row:hover .museum-arrow { transform: translateX(8px); color: var(--gold); }

/* PAGE 4: VISIT */
#page-visit { padding-top: 72px; }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 72px 48px; }
.visit-sticky { position: sticky; top: 100px; }
.visit-map-card { background: var(--dark); border-radius: var(--r-lg); overflow: hidden; margin-bottom: 24px; }
.map-visual { height: 240px; overflow: hidden; position: relative; }
.map-visual img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.map-info { padding: 28px; }
.map-info h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--white); margin-bottom: 12px; }
.map-info p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 16px; }
.map-detail { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.map-detail strong { color: var(--gold-light); }
.hours-card { background: var(--white); border-radius: var(--r); padding: 32px; border: 1px solid rgba(0,0,0,0.07); }
.hours-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; margin-bottom: 20px; }
.hours-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 0.85rem; }
.hours-row .day { color: var(--stone); }
.hours-row .time { font-weight: 500; }
.hours-row .free-tag { background: var(--gold-pale); color: var(--gold); font-size: 0.68rem; padding: 2px 10px; border-radius: 100px; font-weight: 500; letter-spacing: 0.08em; }
.hours-closed { color: var(--red-papal) !important; }
.accordion { margin-bottom: 16px; background: var(--white); border-radius: var(--r); border: 1px solid rgba(0,0,0,0.07); overflow: hidden; }
.accordion-header { padding: 24px 28px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: background 0.2s; }
.accordion-header:hover { background: var(--cream); }
.accordion-header h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 400; display: flex; align-items: center; gap: 14px; }
.accordion-arrow { font-size: 1rem; color: var(--stone-light); transition: transform 0.3s; }
.accordion.open .accordion-arrow { transform: rotate(180deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.accordion.open .accordion-body { max-height: 600px; }
.accordion-body-inner { padding: 0 28px 24px; font-size: 0.87rem; color: var(--stone); line-height: 1.75; border-top: 1px solid rgba(0,0,0,0.05); padding-top: 20px; }
.accordion-body-inner ul { list-style: none; margin-top: 10px; }
.accordion-body-inner ul li { padding: 5px 0; padding-left: 16px; position: relative; }
.accordion-body-inner ul li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }

/* MODAL */
.modal-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(26,20,16,0.75); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.modal-overlay.show { opacity: 1; pointer-events: all; }
.modal { background: var(--white); border-radius: var(--r-lg); padding: 56px; max-width: 520px; width: 100%; text-align: center; transform: scale(0.92); transition: transform 0.3s; }
.modal-overlay.show .modal { transform: scale(1); }
.modal-icon { font-size: 4rem; margin-bottom: 24px; }
.modal h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; margin-bottom: 12px; }
.modal p { color: var(--stone); line-height: 1.7; margin-bottom: 32px; }
.booking-ref { background: var(--gold-pale); border-radius: 12px; padding: 16px 24px; font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--dark); letter-spacing: 0.1em; margin-bottom: 32px; }

.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: none; }

@media (max-width: 768px) {
    nav { padding: 0 20px; }
    .nav-links { display: none; }
    .hero { padding: 80px 24px; }
    .hero-stats { display: none; }
    .section { padding: 60px 24px; }
    .highlight-section { padding: 0 24px 60px; }
    .highlight-card { grid-template-columns: 1fr; }
    .highlight-visual { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .tickets-section, .booking-section { padding: 48px 24px; }
    .booking-form-wrap { padding: 32px 24px; }
    .form-grid { grid-template-columns: 1fr; }
    .visit-grid { grid-template-columns: 1fr; padding: 48px 24px; }
    .masterpieces-grid { grid-template-columns: 1fr 1fr; }
    .mp-item:first-child { grid-column: span 2; }
    .museums-list { padding: 60px 24px; }
    .page-hero-sm { padding: 48px 24px; }
    .notice-bar { padding: 10px 20px; }
    .quick-book { padding: 24px; flex-direction: column; align-items: flex-start; }
}