:root {
    --font-heading: 'Fraunces', serif;
    --font-body: 'Inter', sans-serif;
    --color-bg: #FAF8F5;
    --color-text: #1A1A1A;
    --color-accent: #3F5B45;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    margin: 0;
    line-height: 1.6;
}

h1, h2, h3, .heading-serif {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin: 0 0 0.5em;
}

/* Shared button system, used on every page */
.ajt-btn-cta {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-bg);
    background: var(--color-accent);
    padding: 0.6rem 1.4rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s ease;
}

.ajt-btn-cta:hover,
.ajt-btn-cta:focus-visible {
    background: #98422a;
}

.ajt-btn-hero,
.ajt-btn-footer {
    height: 3rem;
    line-height: 3rem;
    padding: 0 1.8rem;
    overflow: hidden;
}

.ajt-btn-text-wrap {
    position: relative;
    display: block;
    height: 100%;
    overflow: hidden;
}

.ajt-btn-text-top,
.ajt-btn-text-bottom {
    display: block;
    height: 100%;
    transition: transform 0.35s ease;
}

.ajt-btn-text-bottom {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
}

.ajt-btn-hero:hover .ajt-btn-text-top,
.ajt-btn-hero:focus-visible .ajt-btn-text-top,
.ajt-btn-hero:hover .ajt-btn-text-bottom,
.ajt-btn-hero:focus-visible .ajt-btn-text-bottom,
.ajt-btn-footer:hover .ajt-btn-text-top,
.ajt-btn-footer:focus-visible .ajt-btn-text-top,
.ajt-btn-footer:hover .ajt-btn-text-bottom,
.ajt-btn-footer:focus-visible .ajt-btn-text-bottom {
    transform: translateY(-100%);
}

/* Shared section typography, used on every page */
.ajt-section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin: 0 0 0.75rem;
}

.ajt-section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.2;
    margin: 0 0 1rem;
}

.ajt-section-lead {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #555049;
    line-height: 1.6;
    margin: 0;
}

/* Shared word-reveal animation, used on every page */
.ajt-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(14px);
}

.ajt-highlight {
    color: var(--color-accent);
}

@keyframes ajtWordIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ajt-btn-text-top,
    .ajt-btn-text-bottom,
    .ajt-word {
        transition: none;
        animation: none;
        opacity: 1;
        transform: none;
    }
}