/* ============================================
   CIW Annual Reunion - Squarespace Ready CSS
   ============================================ */

/* CSS Custom Properties (Variables) */
:root {
    /* Colors - Warm, celebratory palette */
    --color-primary: #1a1a2e;
    --color-secondary: #16213e;
    --color-accent: #e94560;
    --color-accent-light: #ff6b6b;
    --color-gold: #d4af37;
    --color-gold-light: #f4d03f;
    --color-cream: #fef5e7;
    --color-white: #ffffff;
    --color-text: #2d3436;
    --color-text-light: #636e72;
    
    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 16px 60px rgba(0, 0, 0, 0.2);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.7;
    background-color: var(--color-cream);
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--space-md);
    color: var(--color-primary);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: var(--space-sm);
}

/* Section Labels */
.section-label,
.event-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

/* ============================================
   Navigation
   ============================================ */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
    background: transparent;
    transition: var(--transition-smooth);
}

.main-nav.scrolled {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
}

.nav-links {
    display: flex;
    gap: var(--space-md);
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-white);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition-fast);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition-fast);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 50%, #0f3460 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(233, 69, 96, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 50px 50px;
    animation: twinkle 20s linear infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--space-md);
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--space-lg);
}

.title-line {
    font-family: var(--font-display);
    font-size: clamp(3rem, 12vw, 8rem);
    font-weight: 700;
    line-height: 0.9;
    color: var(--color-white);
    letter-spacing: -0.02em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }
.title-line:nth-child(4) { animation-delay: 0.8s; }
.title-line:nth-child(5) { animation-delay: 1s; }

.title-line.accent {
    color: var(--color-gold);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(2rem, 8vw, 5rem);
}

.title-year {
    font-family: var(--font-display);
    font-size: clamp(4rem, 15vw, 10rem);
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 2px var(--color-gold);
    text-stroke: 2px var(--color-gold);
    margin-top: var(--space-sm);
    opacity: 0;
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: 1s;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta {
    display: inline-block;
    padding: var(--space-sm) var(--space-md);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
    background: var(--color-gold);
    border: 2px solid var(--color-gold);
    transition: var(--transition-smooth);
    opacity: 0;
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: 1.2s;
}

.hero-cta:hover {
    color: var(--color-gold);
    background: transparent;
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-white);
    opacity: 0.6;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-white), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 0.6; }
    50% { transform: scaleY(1.2); opacity: 1; }
}

/* ============================================
   Event Section
   ============================================ */
.event-section {
    padding: var(--space-xl) 0;
    background: var(--color-white);
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-md);
}

.event-card {
    padding: var(--space-lg);
    background: var(--color-cream);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.event-card h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: var(--space-xs);
}

.event-day {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.event-times {
    font-size: 1.125rem;
}

.event-times p {
    margin-bottom: var(--space-xs);
}

.venue-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-sm);
}

address {
    font-style: normal;
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.map-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--color-accent);
}

.map-link:hover {
    color: var(--color-accent-light);
}

/* ============================================
   About Section
   ============================================ */
.about-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-white) 100%);
}

.about-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-lg);
}

.intro-text {
    font-size: 1.25rem;
    color: var(--color-text-light);
}

/* Ticket Info */
.ticket-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.ticket-card {
    background: var(--color-primary);
    color: var(--color-white);
    padding: var(--space-lg);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.ticket-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.ticket-price {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-md);
}

.currency {
    font-size: 2rem;
    font-weight: 300;
    color: var(--color-gold);
    margin-top: 0.5rem;
}

.amount {
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-gold);
}

.per {
    font-size: 1rem;
    color: var(--color-gold-light);
    margin-top: 0.75rem;
    margin-left: 0.5rem;
}

.ticket-card h3 {
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.includes-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xs);
}

.includes-list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.includes-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
}

.early-bird {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    color: var(--color-primary);
    padding: var(--space-lg);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.early-bird-badge {
    background: var(--color-primary);
    color: var(--color-gold);
    padding: var(--space-xs) var(--space-sm);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
    align-self: center;
}

.early-bird .highlight {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: var(--space-xs);
}

/* Raffle Info */
.raffle-info {
    text-align: center;
    padding: var(--space-lg);
    background: var(--color-white);
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
    margin-bottom: var(--space-lg);
}

.raffle-grid {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin: var(--space-md) 0;
}

.raffle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.raffle-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}

.raffle-text {
    font-size: 0.875rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.raffle-note {
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-style: italic;
}

/* Meal Section */
.meal-section {
    text-align: center;
}

.meal-section h3 {
    margin-bottom: var(--space-md);
}

.meal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.meal-option {
    padding: var(--space-md);
    background: var(--color-white);
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.meal-option:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.meal-icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.meal-option span {
    font-weight: 500;
    color: var(--color-text);
}

.meal-includes {
    padding: var(--space-md);
    background: var(--color-cream);
    border-radius: 4px;
    text-align: left;
}

/* ============================================
   Payment Section
   ============================================ */
.payment-section {
    padding: var(--space-xl) 0;
    background: var(--color-secondary);
    color: var(--color-white);
}

.payment-section h2 {
    color: var(--color-white);
    text-align: center;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.payment-option {
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.payment-option:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.payment-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-gold);
    opacity: 0.5;
    margin-bottom: var(--space-sm);
}

.payment-option h3 {
    color: var(--color-gold);
}

.payment-detail {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-white);
    word-break: break-all;
}

.payment-name {
    color: var(--color-text-light);
}

.payment-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: var(--space-sm);
}

.payment-note ul {
    margin: var(--space-xs) 0;
    padding-left: var(--space-sm);
}

.payment-note li {
    position: relative;
    padding-left: 1rem;
}

.payment-note li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-gold);
}

/* ============================================
   Schedule Section
   ============================================ */
.schedule-section {
    padding: var(--space-xl) 0;
    background: var(--color-cream);
}

.schedule-section h2 {
    text-align: center;
}

.timeline {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-gold), var(--color-accent));
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    position: relative;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 74px;
    width: 14px;
    height: 14px;
    background: var(--color-white);
    border: 3px solid var(--color-gold);
    border-radius: 50%;
}

.timeline-item.highlight::after {
    background: var(--color-accent);
    border-color: var(--color-accent);
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.4);
}

.timeline-time {
    width: 60px;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    text-align: right;
}

.timeline-content {
    flex: 1;
    padding-left: var(--space-md);
}

.timeline-content h3 {
    margin: 0;
    font-size: 1.25rem;
}

.timeline-item.highlight .timeline-content h3 {
    color: var(--color-accent);
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery-section {
    padding: var(--space-xl) 0;
    background: var(--color-white);
}

.gallery-section h2 {
    text-align: center;
}

.gallery-subtitle {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-sm);
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-medium);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: 500;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Gallery loading/error states */
.gallery-loading,
.gallery-empty,
.gallery-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--space-lg);
    color: var(--color-text-light);
}

.gallery-error code {
    background: var(--color-cream);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: var(--shadow-strong);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* ============================================
   Committee Section
   ============================================ */
.committee-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-white) 100%);
}

.committee-section h2 {
    text-align: center;
}

.committee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-md);
    max-width: 900px;
    margin: 0 auto;
}

.committee-member {
    text-align: center;
}

.member-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto var(--space-sm);
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.committee-member:hover .member-photo {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.committee-member h3 {
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    padding: var(--space-xl) 0;
    background: var(--color-primary);
    color: var(--color-white);
    text-align: center;
}

.contact-section h2 {
    color: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.contact-card {
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.contact-card h3 {
    margin: 0;
    font-size: 1rem;
    font-family: var(--font-body);
}

.social-links {
    margin-top: var(--space-md);
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: #1877f2;
    border-radius: 50px;
    color: var(--color-white);
    font-weight: 500;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: #166fe5;
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   Footer
   ============================================ */
.main-footer {
    padding: var(--space-md) 0;
    background: var(--color-secondary);
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    font-size: 0.875rem;
}

.footer-note {
    margin-top: var(--space-xs);
    font-style: italic;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .ticket-info {
        grid-template-columns: 1fr;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
    }
    
    .meal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--color-primary);
        padding: var(--space-md);
        gap: var(--space-sm);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .event-grid {
        grid-template-columns: 1fr;
    }
    
    .raffle-grid {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item::after {
        left: 14px;
    }
    
    .timeline-time {
        display: none;
    }
    
    .timeline-content::before {
        content: attr(data-time);
        display: block;
        font-family: var(--font-display);
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--color-gold);
        margin-bottom: var(--space-xs);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .committee-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    :root {
        --space-lg: 3rem;
        --space-xl: 4rem;
    }
    
    .meal-grid {
        grid-template-columns: 1fr;
    }
    
    .includes-list {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Intersection Observer Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Squarespace Specific Overrides
   ============================================ */
/* 
   When implementing in Squarespace, use these
   additional selectors to override default styles:

   .sqs-block { ... }
   .sqs-layout { ... }
   .collection-type-page { ... }
*/
