:root {
    --white: #ffffff;
    --black: #0a0a0a;
    --accent: #0070f3;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --transition: 1.2s var(--ease);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--black);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* --- FLOATING UI (RIGHT ONLY) --- */
.floating-ui-right {
    position: fixed; top: 40px; right: 40px; z-index: 1001;
    display: flex; align-items: center; gap: 20px;
}
.floating-cta {
    background: var(--white); color: var(--black); text-decoration: none;
    padding: 10px 20px; font-size: 0.7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px; transition: 0.3s;
}
.floating-cta:hover { background: var(--accent); color: var(--white); }

.menu-toggle {
    width: 50px; height: 50px; background: rgba(255,255,255,0.05); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; cursor: pointer;
    display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 6px;
}
.menu-toggle .line { width: 20px; height: 1px; background: var(--white); transition: 0.4s; }
.menu-active .menu-toggle .line:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.menu-active .menu-toggle .line:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* --- NAV OVERLAY --- */
.menu-overlay {
    position: fixed; inset: 0; background: var(--black); z-index: 1000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: 0.6s var(--ease);
}
.menu-active .menu-overlay { opacity: 1; visibility: visible; }
.overlay-nav { display: flex; flex-direction: column; gap: 15px; text-align: center; }
.nav-link { font-family: 'Montserrat', sans-serif; font-size: clamp(2rem, 5vw, 4rem); color: var(--white); text-decoration: none; font-weight: 800; text-transform: uppercase; transition: 0.4s; }
.nav-link:hover { color: var(--accent); letter-spacing: 5px; }
.nav-separator { color: var(--accent); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 5px; margin-top: 30px; }
.nav-sub { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
.nav-sub a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 1.1rem; transition: 0.3s; }
.nav-sub a:hover { color: var(--white); }

/* --- HERO --- */
.hero { height: 100vh; position: relative; display: flex; align-items: center; justify-content: flex-end; padding-right: 10%; }
.hero-image-container { position: absolute; inset: 0; z-index: -1; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 10%; filter: brightness(0.7); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to left, var(--black) 10%, transparent 60%); }

.hero-content { text-align: right; }
.hero-title { 
    font-family: 'Montserrat', sans-serif; 
    font-size: clamp(3rem, 10vw, 6.5rem); /* Smaller header */
    line-height: 1; 
    margin-bottom: 40px; /* Increased vertical spacing */
    opacity: 0; transform: translateY(30px); transition: var(--transition);
}
.hero-subtitle { 
    font-size: 1rem; /* Smaller subtitle */
    letter-spacing: 12px; /* Wider spacing */
    text-transform: uppercase; font-weight: 200; 
    color: rgba(255,255,255,0.7);
    opacity: 0; transform: translateY(30px); transition: var(--transition); transition-delay: 0.8s;
}

.scroll-prompt {
    position: absolute; bottom: 50px; right: 10%; display: flex; align-items: center; gap: 15px;
    font-size: 0.6rem; text-transform: uppercase; letter-spacing: 3px; color: rgba(255,255,255,0.4);
}
.scroll-line { width: 40px; height: 1px; background: var(--accent); }

.loaded .hero-title, .loaded .hero-subtitle { opacity: 1; transform: translateY(0); }

/* --- SECTIONS --- */
.welcome-section { padding: 180px 10% 120px; text-align: center; }
.section-eyebrow { font-size: 0.7rem; text-transform: uppercase; color: var(--accent); letter-spacing: 6px; margin-bottom: 30px; }
.welcome-text { font-size: clamp(1.4rem, 3.5vw, 2.4rem); font-weight: 200; line-height: 1.4; max-width: 900px; margin: 0 auto; color: #aaa; }
.welcome-text strong { color: var(--white); font-weight: 400; }

/* --- UPDATED GRID SECTION --- */
.home-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    background: var(--black); 
}

.grid-item { 
    position: relative; 
    height: 85vh; 
    overflow: hidden; 
    border: 0.2px solid rgba(255,255,255,0.05); 
    display: block; 
    text-decoration: none;
}

.grid-item img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    filter: brightness(0.6) grayscale(30%); 
    transition: 1.8s var(--ease); 
}

.span-full { 
    grid-column: span 2; 
    height: 60vh; 
}

/* Updated Overlay for Bottom Alignment */
.grid-overlay { 
    position: absolute; 
    inset: 0; 
    display: flex; 
    justify-content: center; /* Centers horizontally */
    align-items: flex-end;    /* Aligns to the bottom */
    padding-bottom: 8%;       /* Vertical distance from the bottom edge */
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 40%);
    transition: 0.4s var(--ease);
    text-align: center;       /* Ensures multi-line text is centered */
}

/* Updated Title Styles */
.grid-title {
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: -2px;
    line-height: 0.85;
    transition: 0.5s var(--ease);
}

/* Hover Effects */
.grid-item:hover img { 
    transform: scale(1.04); 
    filter: brightness(1) grayscale(0%); 
}

.grid-item:hover .grid-title { 
    color: var(--accent); 
    transform: translateY(-10px); /* Lifts the text slightly for a cleaner centered look */
}

.grid-item:hover .grid-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
}

/* --- PRESS SECTION --- */
.press-section { padding: 120px 10%; background: #080808; border-top: 1px solid #111; }
.quotes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; margin-top: 50px; }
.quote-card { border-left: 2px solid var(--accent); padding-left: 30px; }
.quote { font-size: 1.2rem; font-style: italic; margin-bottom: 15px; color: #eee; }
cite { font-size: 0.7rem; text-transform: uppercase; color: var(--accent); letter-spacing: 2px; font-style: normal; }

/* --- REVEAL --- */
.reveal { opacity: 0; transform: translateY(50px); transition: 1.2s var(--ease); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* --- FOOTER --- */
.minimal-footer { padding: 60px 10%; text-align: center; border-top: 1px solid #111; }
.footer-links { display: flex; justify-content: center; gap: 40px; margin-bottom: 30px; }
.footer-links a { color: var(--white); text-decoration: none; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; transition: 0.3s; opacity: 0.5; }
.footer-links a:hover { opacity: 1; color: var(--accent); }
.minimal-footer p { font-size: 0.65rem; color: #444; text-transform: uppercase; letter-spacing: 2px; }

@media (max-width: 768px) {
    .home-grid { grid-template-columns: 1fr; }
    .span-full { grid-column: auto; height: 75vh; }
    .hero { justify-content: center; padding-right: 0; }
    .hero-content { text-align: center; }
    .hero-subtitle { letter-spacing: 6px; }
}

.content-body {
    padding-top: 100px;
}

.big-text {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 200;
    line-height: 1.5;
    color: #ccc;
    max-width: 800px;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 80px;
}

.detail-block h3 {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.detail-block ul {
    list-style: none;
}

.detail-block li {
    margin-bottom: 10px;
    font-weight: 300;
}

/* PRICING CARDS */
.price-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.p-card {
    background: #111;
    padding: 40px;
    border: 1px solid #222;
    transition: 0.3s;
}

.accent-card {
    border-color: var(--accent);
}

.p-card h4 {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.p-card p {
    font-size: 1.5rem;
    font-weight: 600;
}

/* TESTIMONIALS */
.t-card {
    background: #0e0e0e;
    padding: 30px;
    margin-bottom: 30px;
}

.hidden { display: none; }

.read-more {
    background: none;
    border: none;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.7rem;
    cursor: pointer;
    margin: 15px 0;
}

/* STATS */
.stats-box {
    display: flex;
    gap: 100px;
    border-top: 1px solid #222;
    padding: 100px 10%;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    font-family: 'Montserrat';
    color: var(--accent);
}

@media (max-width: 768px) {
    .details-grid, .stats-box { grid-template-columns: 1fr; flex-direction: column; gap: 40px; }
}

/* =========================================
   GLOBAL VARIABLES & RESET
   ========================================= */
:root {
    --white: #ffffff;
    --black: #0a0a0a;
    --accent: #0070f3;
    --dark-gray: #111111;
    --light-gray: #aaaaaa;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --transition: 1.2s var(--ease);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--black);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* --- FLOATING UI (FIXED OVERLAP) --- */
.floating-ui-right {
    position: fixed; 
    top: 40px; 
    right: 40px; 
    z-index: 2000; /* Ensure UI stays above hero text */
    display: flex; 
    align-items: center; 
    gap: 20px;
}

.floating-cta {
    background: var(--white); 
    color: var(--black); 
    text-decoration: none;
    padding: 12px 25px; 
    font-size: 0.75rem; 
    font-weight: 700;
    text-transform: uppercase; 
    letter-spacing: 1px; 
    transition: 0.3s var(--ease);
}

.floating-cta:hover { 
    background: var(--accent); 
    color: var(--white); 
    transform: translateY(-2px);
}

.menu-toggle {
    width: 50px; 
    height: 50px; 
    background: rgba(255,255,255,0.05); 
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1); 
    border-radius: 50%; 
    cursor: pointer;
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    gap: 6px;
}

.menu-toggle .line { width: 20px; height: 1px; background: var(--white); transition: 0.4s; }
.menu-active .menu-toggle .line:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.menu-active .menu-toggle .line:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* --- NAV OVERLAY --- */
.menu-overlay {
    position: fixed; inset: 0; background: var(--black); z-index: 1000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: 0.6s var(--ease);
}
.menu-active .menu-overlay { opacity: 1; visibility: visible; }
.overlay-nav { display: flex; flex-direction: column; gap: 15px; text-align: center; }
.nav-link { font-family: 'Montserrat', sans-serif; font-size: clamp(2rem, 5vw, 4rem); color: var(--white); text-decoration: none; font-weight: 800; text-transform: uppercase; transition: 0.4s; }
.nav-link:hover { color: var(--accent); letter-spacing: 5px; }

/* =========================================
   GLOBAL HERO (Standard for all Sub-pages)
   Bottom-Centered Positioning
   ========================================= */
.hero { 
    height: 100vh; 
    position: relative; 
    display: flex; 
    align-items: flex-end;   /* VERTICAL: Bottom */
    justify-content: center; /* HORIZONTAL: Center */
    padding-bottom: 80px;    /* Space from the bottom edge */
    padding-right: 0;        /* Ensure no side offset */
    text-align: center;
}

.hero-small { height: 80vh; min-height: 600px; }

/* Global Vertical Gradient (Protects faces and supports bottom text) */
.hero-overlay { 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(to top, var(--black) 0%, rgba(0,0,0,0.4) 40%, transparent 100%); 
}

.hero-content { 
    text-align: center; 
    max-width: 90vw; 
    z-index: 2;
}

.hero-title { 
    font-family: 'Montserrat', sans-serif; 
    font-size: clamp(3rem, 10vw, 6.5rem); 
    line-height: 1; 
    margin-bottom: 30px; 
    opacity: 0; 
    transform: translateY(30px); 
    transition: var(--transition); 
}

.hero-subtitle { 
    font-size: 0.85rem;
    letter-spacing: 12px; 
    text-transform: uppercase; 
    font-weight: 300; 
    color: rgba(255,255,255,0.8); 
    opacity: 0; 
    transform: translateY(30px); 
    transition: var(--transition); 
    transition-delay: 0.8s; 
}

/* =========================================
   HOME PAGE OVERRIDE 
   Keep the original right-aligned look
   ========================================= */
.home-page .hero {
    align-items: center;    /* Center vertically for home only */
    justify-content: flex-end; 
    padding-right: 10%;
    padding-bottom: 0;
    text-align: right;
}

.home-page .hero-overlay {
    background: linear-gradient(to left, var(--black) 10%, transparent 60%);
}

.home-page .hero-content {
    text-align: right;
    max-width: 800px;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .hero, .home-page .hero {
        justify-content: center;
        align-items: flex-end;
        padding-right: 0;
        padding-bottom: 60px;
        text-align: center;
    }
}

/* --- CONTENT CONTAINERS --- */
.container { padding: 120px 10%; width: 100%; }
.section-eyebrow { font-size: 0.7rem; text-transform: uppercase; color: var(--accent); letter-spacing: 6px; margin-bottom: 30px; }
.welcome-text { font-size: clamp(1.4rem, 3.5vw, 2.4rem); font-weight: 200; line-height: 1.4; max-width: 900px; margin: 0 auto 80px; text-align: center; color: var(--white); }
.welcome-text strong { color: var(--accent); font-weight: 400; }

/* --- DETAILS GRID --- */
.details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; margin-top: 50px; }
.detail-block h3 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 3px; color: var(--accent); margin-bottom: 25px; }
.detail-block ul { list-style: none; }
.detail-block li { margin-bottom: 12px; font-weight: 300; font-size: 1.1rem; border-bottom: 1px solid #1a1a1a; padding-bottom: 10px; }
.detail-block p { font-weight: 300; line-height: 1.6; margin-bottom: 15px; }

/* --- PRICING SECTION --- */
.price-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; margin-top: 40px; }
.p-card { background: #080808; padding: 60px 45px; position: relative; border: 1px solid #1a1a1a; transition: 0.4s var(--ease); }
.p-card:hover { border-color: var(--accent); background: #0c0c0c; }
.accent-card { border-color: var(--accent); }

.card-label { position: absolute; top: 30px; right: 40px; font-size: 0.6rem; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); }
.p-card h3 { font-family: 'Montserrat', sans-serif; font-size: 2.2rem; margin-bottom: 35px; }
.price-item { font-size: 1.5rem; font-weight: 300; margin-bottom: 12px; }
.p-card small { display: block; margin-top: 30px; color: #555; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1.5px; }

/* --- THE FLAGSHIP (SIX WEEKS TO SING) --- */
.flagship-section { background: var(--white); color: var(--black); padding: 120px 0; }
.flagship-container { max-width: 1100px; margin: 0 auto; padding: 0 10%; }
.flagship-title { font-family: 'Montserrat', sans-serif; font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 900; margin-bottom: 20px; line-height: 0.9; }
.flagship-container p { font-size: 1.2rem; font-weight: 400; max-width: 600px; line-height: 1.5; margin-bottom: 40px; }

.check-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 15px 40px; margin-bottom: 50px; }
.check-list li { font-size: 1rem; font-weight: 600; display: flex; align-items: center; gap: 15px; }
.check-list li::before { content: '→'; color: var(--accent); font-weight: 900; }

.enroll-btn { 
    display: inline-block; background: var(--black); color: var(--white); text-decoration: none; 
    padding: 20px 45px; font-weight: 800; text-transform: uppercase; 
    font-size: 0.85rem; letter-spacing: 2px; transition: 0.3s;
}
.enroll-btn:hover { background: var(--accent); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

/* --- TESTIMONIALS --- */
.quotes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; margin-top: 50px; }
.t-card { border-left: 2px solid var(--accent); padding: 35px; background: #080808; transition: 0.3s; }
.t-card:hover { background: #0c0c0c; }
.quote { font-size: 1.15rem; font-style: italic; color: #ddd; line-height: 1.7; }
cite { display: block; margin-top: 25px; font-size: 0.7rem; text-transform: uppercase; color: var(--accent); letter-spacing: 2px; font-style: normal; font-weight: 700; }

.hidden-content { display: none; margin-top: 20px; padding-top: 20px; border-top: 1px solid #1a1a1a; color: var(--light-gray); font-size: 0.95rem; line-height: 1.6; }
.read-more-btn { background: none; border: none; color: var(--accent); font-weight: 800; text-transform: uppercase; font-size: 0.7rem; cursor: pointer; margin-top: 15px; }

/* --- CTA SECTION (BOOK NOW) --- */
.cta-section { padding: 180px 10%; text-align: center; }
.cta-eyebrow { font-size: 1rem; text-transform: uppercase; letter-spacing: 6px; color: #444; margin-bottom: 25px; display: block; }
.huge-link { 
    display: block; font-family: 'Montserrat', sans-serif; 
    font-size: clamp(4rem, 15vw, 11rem); 
    text-decoration: none; color: var(--white); font-weight: 900; 
    text-transform: uppercase; transition: 0.5s var(--ease); line-height: 0.85;
}
.huge-link:hover { color: var(--accent); transform: scale(1.05); }

/* --- FOOTER --- */
.minimal-footer { padding: 60px 10%; text-align: center; border-top: 1px solid #1a1a1a; font-size: 0.65rem; color: #333; text-transform: uppercase; letter-spacing: 2px; }

/* --- REVEAL SYSTEM --- */
.reveal { opacity: 0; transform: translateY(40px); transition: 1.2s var(--ease); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero-title { font-size: 4.5rem; }
    .floating-ui-right { top: 20px; right: 20px; }
    .floating-cta { display: none; } /* Hide CTA on small screens to keep UI clean */
}

@media (max-width: 768px) {
    .details-grid, .check-list, .price-cards { grid-template-columns: 1fr; gap: 40px; }
    .hero { justify-content: center; padding: 0 5%; }
    .hero-content { text-align: center; }
    .hero-subtitle { letter-spacing: 5px; }
    .flagship-card { padding: 60px 5%; text-align: center; align-items: center; }
    .flagship-container { padding: 0 5%; }
    .flagship-content { align-items: center; }
    .p-card { padding: 40px 30px; }
}

.hidden-content {
    display: block !important; /* Overrides display: none */
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.8s var(--ease), opacity 0.5s ease, margin 0.5s ease;
    margin-top: 0;
    padding-top: 0;
    border-top: 1px solid transparent;
}

.hidden-content.is-open {
    max-height: 1000px; /* High enough to fit the text */
    opacity: 1;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #1a1a1a;
}

/* --- SPLIT SECTION (FOR BIO/ABOUT) --- */
.split-section {
    display: flex;
    align-items: stretch;
    min-height: 80vh;
    background: #080808;
    overflow: hidden;
}

.split-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) grayscale(20%);
    transition: 1.5s var(--ease);
}

.split-section:hover .split-image img {
    transform: scale(1.05);
    filter: brightness(1) grayscale(0%);
}

.split-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10% 8%;
}

.split-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 300;
    color: #ccc;
    margin-bottom: 25px;
}

.split-text strong {
    color: var(--white);
    font-weight: 400;
}

/* --- LIST STYLING FOR DETAILS GRID --- */
.detail-block ul {
    list-style: none;
    margin-top: 20px;
}

.detail-block li {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.detail-block li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 1px;
    background: var(--accent);
}

/* --- MOBILE RESPONSIVE FOR ABOUT --- */
@media (max-width: 1024px) {
    .split-section {
        flex-direction: column;
    }
    .split-image {
        height: 50vh;
    }
    .split-text {
        padding: 60px 10%;
    }
}

/* --- MEDIA STATS LAYOUT --- */
.stat-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.stat-box {
    border: 1px solid #222;
    padding: 30px 20px;
    text-align: center;
}

.stat-value {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--light-gray);
}

/* --- ADJUSTMENTS FOR KIT LISTS --- */
.detail-block ul {
    list-style: none;
    margin-top: 20px;
}

.detail-block li {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid #111;
    padding-bottom: 10px;
}

.detail-block li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* --- PRICING REFINEMENT FOR MEDIA --- */
.pricing-section .p-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* --- MOBILE TWEAKS --- */
@media (max-width: 768px) {
    .stat-container {
        grid-template-columns: 1fr;
    }
}

/* --- DIARY LIST LAYOUT --- */
.diary-list {
    margin-top: 40px;
    border-top: 1px solid #1a1a1a;
}

.diary-item {
    display: grid;
    grid-template-columns: 180px 1fr 150px;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid #1a1a1a;
    transition: 0.3s var(--ease);
}

.diary-item:hover {
    background: rgba(255,255,255,0.02);
    padding-left: 20px;
    padding-right: 20px;
}

.diary-date {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--accent);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.diary-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.diary-info p {
    font-weight: 200;
    color: var(--light-gray);
    font-size: 1rem;
}

.ticket-link {
    text-align: right;
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    border: 1px solid #333;
    padding: 12px 20px;
    transition: 0.3s;
}

.ticket-link:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

/* --- SEASON HIGHLIGHTS --- */
.highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
    text-align: left;
}

.highlight-year h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 30px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.highlight-year ul {
    list-style: none;
}

.highlight-year li {
    margin-bottom: 25px;
    font-weight: 200;
    line-height: 1.6;
    color: #ccc;
}

.highlight-year strong {
    color: var(--accent);
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 900px) {
    .diary-item {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    .ticket-link {
        text-align: center;
        width: 100%;
    }
    .highlights-grid {
        grid-template-columns: 1fr;
    }
}

.minimal-footer a.saern-link {
    color: inherit;
    text-decoration: underline;
    transition: 0.3s var(--ease);
}

.minimal-footer a.saern-link:hover {
    color: var(--accent);
}

/* --- TMC SPECIFIC STYLES --- */

.tmc-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Reusing the ticket-link style from diary, ensuring it works here */
.tmc-links .ticket-link {
    text-align: center;
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    border: 1px solid #333;
    padding: 15px 30px;
    transition: 0.3s var(--ease);
    display: inline-block;
}

.tmc-links .ticket-link:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* Adjusting Stat boxes for the TMC page specifically */
.stat-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.stat-box {
    border: 1px solid #1a1a1a;
    padding: 25px 15px;
    text-align: center;
    background: rgba(255,255,255,0.01);
}

.stat-value {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--light-gray);
}

/* --- SAERN LINK STYLE --- */
.minimal-footer a.saern-link {
    color: inherit;
    text-decoration: underline;
    transition: 0.3s var(--ease);
}

.minimal-footer a.saern-link:hover {
    color: var(--accent);
}

@media (max-width: 768px) {
    .tmc-links {
        flex-direction: column;
    }
}

/* --- CONTACT PAGE SPECIFIC STYLES --- */

.container-small {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 5%;
}

.form-intro {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--light-gray);
    margin-bottom: 50px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--accent);
}

/* Glassmorphism Inputs */
.contact-form input, 
.contact-form select, 
.contact-form textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #222;
    padding: 15px 20px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: 0.3s var(--ease);
}

.contact-form input:focus, 
.contact-form select:focus, 
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.06);
}

.contact-form select option {
    background: var(--black);
    color: var(--white);
}

.general-enquiries {
    margin-top: 60px;
    text-align: center;
    border-top: 1px solid #1a1a1a;
    padding-top: 40px;
}

.general-enquiries p {
    font-size: 0.9rem;
    color: #555;
    letter-spacing: 1px;
}

.general-enquiries a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.general-enquiries a:hover {
    color: var(--accent);
}

/* --- MOBILE FORM TWEAKS --- */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    .container-small {
        padding: 80px 5%;
    }
}

/* About Image */
.grid-item[href="about.html"] img {
    object-position: center 15%;
}

/* Singing Lessons Image */
.grid-item[href="singing-lessons.html"] img {
    object-position: center 10%;
}

/* Reviews Image */
.grid-item[href="reviews.html"] img {
    object-position: center 15%;
}

/* --- REVIEWS PAGE SPECIFIC --- */

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    align-items: start;
}

.review-card {
    background: #080808;
    border: 1px solid #1a1a1a;
    padding: 40px;
    position: relative;
    transition: 0.4s var(--ease);
}

.review-card:hover {
    border-color: var(--accent);
    background: #0c0c0c;
}

.quote-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--white);
    font-style: italic;
    margin-bottom: 0;
}

/* Expansion Logic */
.review-card .hidden-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.8s var(--ease), opacity 0.5s ease, margin 0.5s ease;
    margin-top: 0;
    padding-top: 0;
    border-top: 1px solid transparent;
}

.review-card .hidden-content.is-open {
    max-height: 1000px;
    opacity: 1;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #1a1a1a;
}

.review-card cite {
    display: block;
    margin-top: 25px;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--accent);
    letter-spacing: 2px;
    font-style: normal;
    font-weight: 700;
}

.read-more-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.3);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.6rem;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 15px;
    transition: 0.3s;
}

.read-more-btn:hover {
    color: var(--accent);
}

/* Mobile responsive tweak */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}