/* ============================================
   THE VINTAGE VAULT — Custom Styles
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --color-green-dark: #1A3A2A;
    --color-green: #2D5A3D;
    --color-green-light: #3D7A52;
    --color-green-pale: #E8F0EC;
    --color-cream: #F5F0E8;
    --color-cream-dark: #EDE6D8;
    --color-warm: #C8A882;
    --color-warm-light: #D4B896;
    --color-text: #1A1A1A;
    --color-text-muted: #5A5A5A;
    --color-text-light: #8A8A8A;
    --color-white: #FFFFFF;
    --color-border: #E5DFD4;

    --font-serif: 'Lora', Georgia, 'Times New Roman', serif;
    --font-sans: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;

    --shadow-sm: 0 2px 8px rgba(26, 58, 42, 0.06);
    --shadow-md: 0 4px 20px rgba(26, 58, 42, 0.10);
    --shadow-lg: 0 8px 40px rgba(26, 58, 42, 0.14);
    --shadow-xl: 0 16px 60px rgba(26, 58, 42, 0.18);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

address {
    font-style: normal;
}

/* --- Skip Link --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--color-green-dark);
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 9999;
    font-weight: 600;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 12px;
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 48px;
    }
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-green-dark);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-green);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-green);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 520px;
    line-height: 1.7;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-green);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(45, 90, 61, 0.3);
}

.btn-primary:hover {
    background: var(--color-green-dark);
    box-shadow: 0 6px 20px rgba(45, 90, 61, 0.4);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-ghost {
    background: transparent;
    color: var(--color-green);
    border: 2px solid var(--color-green);
}

.btn-ghost:hover {
    background: var(--color-green);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(245, 240, 232, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}

.site-header.scrolled {
    border-bottom-color: var(--color-border);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-green-dark);
}

.logo-icon {
    color: var(--color-green);
}

/* --- Navigation --- */
.nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    transition: background var(--transition);
    @media (min-width: 768px) { display: none; }
}

.nav-toggle:hover {
    background: var(--color-green-pale);
}

.hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-green-dark);
    position: relative;
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--color-green-dark);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links li a {
    padding: 8px 16px;
    font-size: 0.925rem;
    font-weight: 500;
    color: var(--color-text-muted);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.nav-links li a:hover {
    color: var(--color-green);
    background: var(--color-green-pale);
}

.nav-links li:last-child a {
    margin-left: 8px;
}

/* Mobile nav */
@media (max-width: 767px) {
    .nav-links {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: rgba(245, 240, 232, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links li a {
        display: block;
        padding: 14px 16px;
        font-size: 1rem;
        width: 100%;
    }

    .nav-links li:last-child a {
        margin-left: 0;
        margin-top: 8px;
    }
}

/* --- Hero --- */
.hero {
    position: relative;
    padding: 120px 0 0;
    overflow: hidden;
    background: var(--color-cream);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    padding-bottom: 80px;
}

@media (min-width: 900px) {
    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 64px;
        padding-bottom: 120px;
    }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-green);
    letter-spacing: 0.04em;
    margin-bottom: 24px;
}

.eyebrow-dot {
    display: block;
    width: 8px;
    height: 8px;
    background: var(--color-green);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--color-green-dark);
}

.hero-title .accent {
    color: var(--color-green);
    position: relative;
}

.hero-title .accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--color-warm-light);
    border-radius: 3px;
    z-index: -1;
    opacity: 0.6;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-green);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
}

/* Hero Image Stack */
.hero-visual {
    position: relative;
}

.hero-img-stack {
    position: relative;
    padding-right: 0;
}

@media (min-width: 900px) {
    .hero-img-stack {
        padding-right: 40px;
    }
}

.hero-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-img-main {
    position: relative;
    z-index: 2;
}

.hero-img-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

@media (min-width: 900px) {
    .hero-img-main img {
        height: 560px;
    }
}

.hero-img-accent {
    position: absolute;
    bottom: -32px;
    left: -20px;
    z-index: 3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--color-cream);
}

.hero-img-accent img {
    width: 200px;
    height: 250px;
    object-fit: cover;
    display: block;
}

@media (min-width: 900px) {
    .hero-img-accent {
        left: -40px;
        bottom: -48px;
    }

    .hero-img-accent img {
        width: 240px;
        height: 300px;
    }
}

.hero-badge {
    position: absolute;
    top: 24px;
    right: -8px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-white);
    color: var(--color-green-dark);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.hero-badge svg {
    color: var(--color-warm);
}

/* Hero Wave */
.hero-wave {
    position: relative;
    margin-top: -1px;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

@media (min-width: 768px) {
    .hero-wave svg {
        height: 120px;
    }
}

/* --- About --- */
.about {
    padding: 80px 0 100px;
    background: var(--color-cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 900px) {
    .about-grid {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 72px;
    }
}

.about-visual {
    position: relative;
}

.about-img-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

@media (min-width: 900px) {
    .about-img-wrap img {
        height: 440px;
    }
}

.about-quote-card {
    position: absolute;
    bottom: -28px;
    right: -16px;
    background: var(--color-green);
    color: var(--color-white);
    padding: 24px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 300px;
    z-index: 2;
}

.about-quote-card svg {
    opacity: 0.4;
    margin-bottom: 8px;
}

.about-quote-card blockquote {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 10px;
}

.about-quote-card cite {
    font-size: 0.8rem;
    font-style: normal;
    opacity: 0.7;
}

.about-content p {
    color: var(--color-text-muted);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-content p:last-child {
    margin-bottom: 32px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--color-green-pale);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-green);
}

.feature-item strong {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-green-dark);
    margin-bottom: 2px;
}

.feature-item span {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* --- Categories --- */
.categories {
    padding: 80px 0 100px;
    background: var(--color-white);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header .section-label {
    justify-content: center;
}

.section-header .section-label::before {
    display: none;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (min-width: 900px) {
    .cat-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

.cat-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-cream);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.cat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.cat-img {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.cat-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.cat-card:hover .cat-img img {
    transform: scale(1.06);
}

.cat-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
}

.cat-tag {
    display: inline-block;
    background: var(--color-green);
    color: var(--color-white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
}

.cat-info {
    padding: 20px;
}

.cat-name {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.cat-info p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* --- Why Vintage --- */
.why-vintage {
    padding: 80px 0 100px;
    background: var(--color-green-dark);
    color: var(--color-white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 900px) {
    .why-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 72px;
    }
}

.why-content .section-label {
    color: var(--color-warm-light);
}

.why-content .section-label::before {
    background: var(--color-warm-light);
}

.why-content .section-title {
    color: var(--color-white);
}

.why-content p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 32px;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
}

.why-check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-warm-light);
    margin-top: 2px;
}

.why-visual {
    position: relative;
}

.why-img-group {
    position: relative;
}

.why-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.why-img-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.why-img-small {
    position: absolute;
    bottom: -24px;
    left: -24px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--color-green-dark);
}

.why-img-small img {
    width: 200px;
    height: 240px;
    object-fit: cover;
    display: block;
}

@media (min-width: 900px) {
    .why-img-small img {
        width: 220px;
        height: 270px;
    }
}

/* --- Visit / Contact --- */
.visit {
    padding: 80px 0 100px;
    background: var(--color-cream);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 900px) {
    .visit-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 64px;
    }
}

.visit-intro {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.detail-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--color-green-pale);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-green);
}

.detail-item strong {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-green-dark);
    margin-bottom: 4px;
}

.detail-item span,
.detail-item a {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.detail-item a:hover {
    color: var(--color-green);
}

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.map-placeholder {
    background: var(--color-green-pale);
    border: 2px dashed var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.map-placeholder svg {
    color: var(--color-green);
    opacity: 0.5;
}

.map-placeholder p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Contact Card */
.contact-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-md);
}

.contact-title {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.contact-subtitle {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 28px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-green-dark);
    margin-bottom: 6px;
}

.form-group .optional {
    font-weight: 400;
    color: var(--color-text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-cream);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-green);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(45, 90, 61, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-success {
    text-align: center;
    padding: 32px 20px;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: var(--color-green-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--color-green);
}

.form-success h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.form-success p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* --- Footer --- */
.site-footer {
    background: var(--color-green-dark);
    color: var(--color-white);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
        gap: 32px;
    }
}

.footer-brand .logo {
    color: var(--color-white);
    margin-bottom: 16px;
}

.footer-brand .logo-icon {
    color: var(--color-warm-light);
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 280px;
}

.footer-links strong,
.footer-hours strong,
.footer-contact strong {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-warm-light);
    margin-bottom: 16px;
}

.footer-links ul,
.footer-hours ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--transition);
}

.footer-links li a:hover {
    color: var(--color-white);
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--transition);
}

.footer-contact a:hover {
    color: var(--color-white);
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 3px;
    opacity: 0.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Focus Styles --- */
:focus-visible {
    outline: 3px solid var(--color-green);
    outline-offset: 2px;
    border-radius: 4px;
}
