:root {
    --ttf-navy: #0F1F2E;
    --ttf-navy-light: #1A3048;
    --ttf-cream: #F7F4EF;
    --ttf-gold: #B8956A;
    --ttf-gold-light: #D4B896;
    --ttf-charcoal: #2A2A2A;
    /* Darker muted for ~WCAG AA on cream (~#F7F4EF) */
    --ttf-muted: #4B5563;
    --ttf-white: #FFFFFF;

    --ttf-font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --ttf-font-sans: 'Inter', system-ui, -apple-system, sans-serif;

    --ttf-section-padding: clamp(4rem, 8vw, 7rem);
    --ttf-container-max: 1200px;
    --ttf-header-height: 5rem;
}

@keyframes ttf-fade-in {
    from {
        opacity: 0;
        transform: translateY(1.5rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ttf-fade-in-slow {
    from {
        opacity: 0;
        transform: translateY(2rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ttf-animate-in {
    animation: ttf-fade-in 0.8s ease-out both;
}

.ttf-animate-in-delay {
    animation: ttf-fade-in-slow 1s ease-out 0.2s both;
}

.ttf-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.ttf-skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 10000;
    padding: 0.75rem 1.25rem;
    background: var(--ttf-navy);
    color: var(--ttf-cream);
    font-family: var(--ttf-font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 0.5rem 0.5rem;
}

.ttf-skip-link:focus {
    top: 0;
    outline: 3px solid var(--ttf-gold);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .ttf-animate-in,
    .ttf-animate-in-delay {
        animation: none;
    }
}

.ttf-container {
    width: 100%;
    max-width: var(--ttf-container-max);
    margin-inline: auto;
    padding-inline: clamp(1.5rem, 4vw, 3rem);
}

.ttf-section {
    padding-block: var(--ttf-section-padding);
}
