/* ========================================
   Maximus Light Site — Cosmic Dark Theme
   Fonts: Aclonica (headings), ABeeZee (body), Andada Pro (accents)
   ======================================== */

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

:root {
    /* Brand Colors */
    --gold: #C5A355;
    --gold-light: #d4b76a;
    --gold-dark: #a8893e;
    --gold-glow: rgba(197, 163, 85, 0.12);
    --gold-border: rgba(197, 163, 85, 0.3);

    --bg-deep: #0a0a14;
    --bg-primary: #0d0d1a;
    --bg-elevated: #131326;
    --bg-card: #181833;
    --bg-card-hover: #1e1e40;

    --white: #ffffff;
    --text-bright: #f0ece4;
    --text-body: #c8c0b4;
    --text-muted: #8a8378;
    --text-on-gold: #0d0d1a;

    /* Typography */
    --font-heading: 'Aclonica', 'Georgia', serif;
    --font-body: 'ABeeZee', 'Segoe UI', sans-serif;
    --font-accent: 'Andada Pro', 'Georgia', serif;

    /* Spacing */
    --section-padding: 6rem 0;
    --container-width: 1140px;
    --container-narrow: 860px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--bg-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Typography --- */

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.25;
    color: var(--gold);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); margin-bottom: 0.75rem; }
h4 { font-size: 1.2rem; margin-bottom: 0.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-body);
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: var(--gold-light);
}

strong {
    color: var(--text-bright);
}

em {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--gold-light);
}

/* --- Layout --- */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: var(--section-padding);
}

/* --- Header & Navigation --- */

.site-header {
    background: var(--bg-deep);
    border-bottom: 1px solid var(--gold-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
}

.header-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.site-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 0.02em;
}
.site-logo:hover {
    color: var(--gold-light);
}

.site-logo .tm {
    font-size: 0.55em;
    vertical-align: super;
    color: var(--gold-light);
    opacity: 0.7;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-body);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
}

.nav-links a.nav-external {
    color: var(--gold);
    border: 1px solid var(--gold-border);
    padding: 0.35rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
}
.nav-links a.nav-external:hover {
    background: var(--gold);
    color: var(--text-on-gold);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-body);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* --- Hero Sections --- */

.hero {
    background: url('../assets/maxlight_auras_cleannotext.jpg') center center / cover no-repeat;
    color: var(--white);
    text-align: center;
    padding: 10rem 2rem 8rem;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    pointer-events: none;
    opacity: 0;
}

.hero h1 {
    color: var(--gold);
    font-size: clamp(2.8rem, 7vw, 4.5rem);
    margin-bottom: 0.75rem;
    letter-spacing: 0.03em;
    position: relative;
    text-shadow: 0 0 20px rgba(197, 163, 85, 0.6), 0 0 40px rgba(197, 163, 85, 0.3), 0 0 80px rgba(197, 163, 85, 0.15);
}

.hero h1 .tm {
    font-size: 0.35em;
    vertical-align: super;
    color: var(--gold-light);
    opacity: 0.6;
}

.hero .tagline {
    font-family: var(--font-accent);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--text-bright);
    opacity: 0.85;
    margin-bottom: 2rem;
    font-weight: 400;
    font-style: italic;
    position: relative;
    text-shadow: 0 0 15px rgba(240, 236, 228, 0.4), 0 0 30px rgba(240, 236, 228, 0.2);
}

.hero .hero-description {
    max-width: 680px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
    color: var(--text-body);
    opacity: 0.85;
    line-height: 1.8;
    position: relative;
}

.hero-page {
    background: url('../assets/maxlight_auras_cleannotext.jpg') center 30% / cover no-repeat;
    padding: 6rem 2rem 4rem;
    min-height: 40vh;
}

.hero-page h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    text-shadow: 0 0 20px rgba(197, 163, 85, 0.6), 0 0 40px rgba(197, 163, 85, 0.3), 0 0 80px rgba(197, 163, 85, 0.15);
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* --- Section Styles --- */

.section-dark {
    background: var(--bg-deep);
    color: var(--text-body);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--gold);
}

.section-dark p {
    color: var(--text-body);
}

.section-nature {
    background: url('../assets/waterfall-forest.jpg') center center / cover no-repeat fixed;
    position: relative;
}

.section-nature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 20, 0.7);
    pointer-events: none;
}

.section-gradient {
    background: url('../assets/Gradient18_2000px.jpg') center center / cover no-repeat fixed;
    position: relative;
}

.section-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 20, 0.75);
    pointer-events: none;
}

.section-gradient .container,
.section-gradient .container-narrow {
    position: relative;
    z-index: 1;
}

.section-spiral-gold {
    background: url('../assets/spiral%20magic-421110120-2000px.jpg') center center / cover no-repeat fixed;
    position: relative;
}

.section-spiral-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 20, 0.7);
    pointer-events: none;
}

.section-spiral-gold .container,
.section-spiral-gold .container-narrow {
    position: relative;
    z-index: 1;
}

.section-ceremony {
    background: url('../assets/sacred-ceremony-2000px.jpg') center center / cover no-repeat fixed;
    position: relative;
}

.section-ceremony::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 20, 0.7);
    pointer-events: none;
}

.section-ceremony .container,
.section-ceremony .container-narrow {
    position: relative;
    z-index: 1;
}

.section-spiral {
    background: url('../assets/spiral%20magic_31919847_2000px.jpg') center center / cover no-repeat fixed;
    position: relative;
}

.section-spiral::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 20, 0.65);
    pointer-events: none;
}

.section-spiral .container,
.section-spiral .container-narrow {
    position: relative;
    z-index: 1;
}

.section-nature .container {
    position: relative;
    z-index: 1;
}

.section-alt {
    background: var(--bg-elevated);
}

.section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.section-heading .overline {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    font-weight: 400;
    display: block;
    margin-bottom: 0.5rem;
}

/* --- Gold Divider --- */

.gold-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 2.5rem auto;
    border: none;
    opacity: 0.6;
}

.gold-divider-left {
    margin-left: 0;
}

/* --- Buttons --- */

.btn {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    letter-spacing: 0.03em;
}

.btn-gold {
    background: var(--gold);
    color: var(--text-on-gold);
}
.btn-gold:hover {
    background: var(--gold-light);
    color: var(--text-on-gold);
    box-shadow: 0 0 20px rgba(197, 163, 85, 0.3);
}

.btn-outline {
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--text-on-gold);
    box-shadow: 0 0 20px rgba(197, 163, 85, 0.3);
}

/* --- Video Embed --- */

.video-wrapper {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--gold-border);
    box-shadow: 0 4px 30px rgba(197, 163, 85, 0.1);
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* --- Cards & Boxes --- */

.info-card {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid var(--gold-border);
}

.highlight-box {
    background: var(--gold-glow);
    border-left: 3px solid var(--gold);
    padding: 1.5rem 2rem;
    border-radius: 0 6px 6px 0;
    margin: 2rem 0;
}

.highlight-box p {
    color: var(--text-bright);
    margin: 0;
}

/* --- Content Image --- */

.content-image {
    border-radius: 8px;
    border: 1px solid var(--gold-border);
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* --- Intro Grid --- */

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text h2 {
    color: var(--gold);
}

/* --- Feature Cards --- */

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--gold-border);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(197, 163, 85, 0.1);
    border-color: var(--gold);
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.feature-card h4 {
    font-family: var(--font-heading);
    color: var(--gold);
}

.feature-card p {
    font-size: 0.9rem;
    margin: 0;
}

/* --- About Page --- */

.about-content {
    max-width: 760px;
}

.about-content h2 {
    margin-top: 2.5rem;
}

.about-content h2:first-child {
    margin-top: 0;
}

.about-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-section-grid.reverse {
    direction: rtl;
}

.about-section-grid.reverse > * {
    direction: ltr;
}

/* --- CTA Section --- */

.cta-section {
    background: linear-gradient(135deg, var(--bg-deep) 0%, var(--bg-elevated) 50%, var(--bg-deep) 100%);
    text-align: center;
    padding: 5rem 2rem;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(197, 163, 85, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    color: var(--gold);
    margin-bottom: 1rem;
    position: relative;
}

.cta-section p {
    color: var(--text-body);
    opacity: 0.85;
    max-width: 580px;
    margin: 0 auto 2rem;
    position: relative;
}

/* === TERMS PAGE === */

/* --- Legal Notice Banner --- */

.legal-banner {
    background: var(--bg-deep);
    color: var(--gold);
    text-align: center;
    padding: 1rem 2rem;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 400;
    border-bottom: 1px solid var(--gold-border);
}

/* --- Legal Section --- */

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    border-bottom: 1px solid var(--gold-border);
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
}

.legal-section h3 {
    color: var(--gold-light);
    margin-top: 2rem;
}

.legal-section ul {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.legal-section ul li {
    margin-bottom: 0.5rem;
    color: var(--text-body);
}

.legal-section ol {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.legal-section ol li {
    margin-bottom: 0.5rem;
    color: var(--text-body);
}

/* --- Tables --- */

.fee-table-wrapper {
    overflow-x: auto;
    margin: 1.5rem 0;
    border-radius: 8px;
    border: 1px solid var(--gold-border);
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.fee-table thead {
    background: var(--bg-deep);
    color: var(--gold);
}

.fee-table th {
    padding: 1rem 1.25rem;
    text-align: left;
    font-weight: 400;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-family: var(--font-heading);
}

.fee-table td {
    padding: 0.9rem 1.25rem;
    border-bottom: 1px solid rgba(197, 163, 85, 0.1);
    color: var(--text-body);
}

.fee-table tbody tr {
    background: var(--bg-card);
}

.fee-table tbody tr:nth-child(even) {
    background: var(--bg-elevated);
}

.fee-table tbody tr:hover {
    background: var(--bg-card-hover);
}

.fee-amount {
    font-weight: 400;
    color: var(--gold);
    white-space: nowrap;
}

/* --- Tier Cards (for violation tiers) --- */

.tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.tier-card {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid var(--gold-border);
    transition: border-color 0.3s ease;
}

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

.tier-card .tier-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 0.25rem;
    font-family: var(--font-accent);
}

.tier-card h4 {
    color: var(--text-bright);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.tier-card .tier-range {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.tier-card ul {
    list-style: none;
    padding: 0;
}

.tier-card ul li {
    padding: 0.35rem 0;
    font-size: 0.9rem;
    color: var(--text-body);
    border-bottom: 1px solid rgba(197, 163, 85, 0.08);
}

.tier-card ul li:last-child {
    border-bottom: none;
}

/* --- Category Cards (for trespass) --- */

.category-grid {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.category-card {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 2rem;
    border-left: 4px solid var(--gold);
    border-top: 1px solid var(--gold-border);
    border-right: 1px solid var(--gold-border);
    border-bottom: 1px solid var(--gold-border);
}

.category-card .category-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 0.25rem;
    font-family: var(--font-accent);
}

.category-card h4 {
    color: var(--text-bright);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.category-card .range {
    font-weight: 400;
    color: var(--gold);
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
}

.category-card .items {
    display: grid;
    gap: 0.4rem;
}

.category-card .item-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(197, 163, 85, 0.08);
    font-size: 0.9rem;
}

.category-card .item-row:last-child {
    border-bottom: none;
}

.category-card .item-row .label {
    color: var(--text-body);
    flex: 1;
    padding-right: 1rem;
}

.category-card .item-row .amount {
    font-weight: 400;
    color: var(--gold);
    white-space: nowrap;
}

/* --- Reservation Block --- */

.reservation-block {
    background: var(--bg-deep);
    color: var(--text-body);
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid var(--gold-border);
}

.reservation-block .legal-text {
    font-size: 1.1rem;
    letter-spacing: 0.06em;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.reservation-block p {
    color: var(--text-body);
    opacity: 0.75;
    max-width: 600px;
    margin: 0 auto;
    font-size: 0.9rem;
}

/* --- Footer --- */

.site-footer {
    background: var(--bg-deep);
    color: var(--text-body);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--gold-border);
}

.footer-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-brand .brand-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-body);
    opacity: 0.65;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-nav {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav ul li {
    margin-bottom: 0.4rem;
}

.footer-nav ul li a {
    color: var(--text-body);
    opacity: 0.7;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-nav ul li a:hover {
    opacity: 1;
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(197, 163, 85, 0.15);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.8rem;
    opacity: 0.5;
    color: var(--text-body);
    margin: 0;
}

.footer-bottom .legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom .legal-links a {
    font-size: 0.8rem;
    color: var(--text-body);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.footer-bottom .legal-links a:hover {
    opacity: 1;
    color: var(--gold);
}

/* --- Responsive --- */

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100vh;
        background: var(--bg-deep);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 1rem;
        border-right: 1px solid var(--gold-border);
        transition: left 0.3s ease;
        z-index: 1000;
        box-shadow: none;
    }

    .nav-links.open {
        left: 0;
        box-shadow: 4px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .nav-overlay.open {
        display: block;
    }

    .intro-grid,
    .about-section-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-section-grid.reverse {
        direction: ltr;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero {
        background-image: url('../assets/hero-bg-mobile.jpg');
        min-height: 70vh;
        padding: 4rem 1.5rem;
    }

    .hero-page {
        padding: 3rem 1.5rem 2rem;
    }

    section {
        padding: 3.5rem 0;
    }

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

    .category-card .item-row {
        flex-direction: column;
        gap: 0.15rem;
    }

    .fee-table {
        font-size: 0.85rem;
    }

    .fee-table th,
    .fee-table td {
        padding: 0.7rem 0.75rem;
    }
}

@media (max-width: 480px) {
    .container,
    .container-narrow {
        padding: 0 1.25rem;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }

    .hero h1 {
        font-size: 2.5rem;
    }
}

/* --- Print Styles (important for terms page) --- */

@media print {
    .site-header,
    .site-footer,
    .menu-toggle,
    .legal-banner {
        display: none;
    }

    body {
        background: white;
        color: black;
        font-size: 11pt;
    }

    h1, h2, h3, h4, h5 {
        color: black;
    }

    .hero {
        background: white;
        color: black;
        padding: 1rem 0;
    }

    .hero h1 {
        color: black;
    }

    .hero .tagline {
        color: #333;
    }

    .fee-table thead {
        background: #eee;
        color: black;
    }

    .fee-table td {
        color: black;
        border-bottom-color: #ccc;
    }

    .fee-table tbody tr,
    .fee-table tbody tr:nth-child(even) {
        background: white;
    }

    .fee-amount {
        color: black;
    }

    .tier-card,
    .category-card,
    .info-card {
        background: white;
        border-color: #ccc;
    }

    .tier-card h4,
    .category-card h4 {
        color: black;
    }

    .tier-card .tier-range,
    .category-card .range,
    .category-card .item-row .amount {
        color: black;
    }

    .highlight-box {
        background: #f5f5f5;
        border-left-color: #999;
    }

    .highlight-box p {
        color: black;
    }

    .reservation-block {
        background: #f0f0f0;
        border-top: 1px solid #ccc;
    }

    .reservation-block .legal-text {
        color: black;
    }

    .reservation-block p {
        color: #333;
    }

    section {
        padding: 1rem 0;
        page-break-inside: avoid;
    }

    a {
        color: black;
        text-decoration: underline;
    }

    p, li {
        color: black;
    }

    strong {
        color: black;
    }

    .section-alt,
    .section-dark {
        background: white;
    }

    .section-dark p,
    .section-dark h2,
    .section-dark h3 {
        color: black;
    }
}
