
/* 1. Base hidden state — applied to any element you want to animate */
.fadeIn {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

/* 2. Visible state — added by JS when element enters the viewport */
.fadeIn.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 3. Delay variants — stagger children in a group */
.fadeIn.delay-1 { transition-delay: 0.1s; }
.fadeIn.delay-2 { transition-delay: 0.2s; }
.fadeIn.delay-3 { transition-delay: 0.3s; }
.fadeIn.delay-4 { transition-delay: 0.4s; }
.fadeIn.delay-5 { transition-delay: 0.5s; }

/* 4. Direction variants */
.fadeIn.from-left  { transform: translateX(-32px); }
.fadeIn.from-right { transform: translateX(32px); }
.fadeIn.from-left.visible,
.fadeIn.from-right.visible { transform: translateX(0); }

/* 

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: #2a2520;
    color: #f9f6f1;
}

.hero-label {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #c9a96e;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    line-height: 1.15;
    max-width: 700px;
    margin-bottom: 1.25rem;
}

.hero p {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(249,246,241,0.6);
    max-width: 440px;
}

/*
.scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(249,246,241,0.35);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(6px); }
}*/

/* Sections --nope too prolly
section {
    max-width: 780px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.section-label {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #c9a96e;
    margin-bottom: 1rem;
}

h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

h2 em { font-style: italic; color: #c9a96e; }
*/

p.body-text {
    font-size: 1rem;
    font-weight: 300;
    color: #6b6158;
    max-width: 560px;
    margin-bottom: 1rem;
}

.divider {
    width: 48px;
    height: 1px;
    background: #c9a96e;
    margin: 3rem 0;
}

/* Card grid --meh no need
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.card {
    background: #fff;
    border-radius: 4px;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.card-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.card p {
    font-size: 0.85rem;
    font-weight: 300;
    color: #8a8078;
}

//meh neither below

.dark-section {
    background: #2a2520;
    color: #f9f6f1;
    padding: 6rem 2rem;
}

.dark-section .inner {
    max-width: 780px;
    margin: 0 auto;
}

.dark-section p.body-text { color: rgba(249,246,241,0.55); }
.dark-section .divider { background: rgba(201,169,110,0.4); }

footer {
    text-align: center;
    padding: 3rem 2rem;
    font-size: 0.75rem;
    color: #b0a89e;
    letter-spacing: 0.1em;
}
    */