* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: white;
    color: black;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.image-container {
    text-align: center;
    margin-bottom: 40px;
}

.responsive-image {
    width: 100%;
    height: auto;
    max-width: 900px;
}

.content {
    max-width: 800px;
    margin: 0 auto;
}

.content p a {
    color: #a92419;
    text-decoration: underline;
}

.content p a:hover {
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

footer {
    max-width: 800px;
    margin: 3rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid #ddd;
    text-align: center;
}

footer p {
    margin-bottom: 0;
    font-size: 0.85rem;
    color: #666;
}

.site-nav {
    border-bottom: 1px solid #000;
    margin-bottom: 2.5rem;
}

.site-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.6rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem 0 1.25rem;
}

.site-nav a {
    text-decoration: none;
    color: #000;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.site-nav a:hover {
    border-bottom-color: #000;
}

.site-nav a.active {
    color: #a92419;
    border-bottom-color: #a92419;
}

.recipe-card {
    border: 1px solid #ddd;
    background: #faf7f0;
    border-radius: 4px;
    padding: 1.75rem 2rem;
    margin-bottom: 2rem;
}

.recipe-kicker {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #a92419;
    margin-bottom: 0.4rem;
}

.recipe-card h3 {
    margin-bottom: 0.25rem;
}

.recipe-source {
    font-style: italic;
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 1.1rem;
}

.recipe-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.02rem;
    line-height: 1.7;
    color: #2a1a12;
    border-left: 3px solid #a92419;
    padding-left: 1.1rem;
    margin: 0 0 1rem;
}

.recipe-note {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 0;
}

.fellowship-list {
    list-style: none;
    counter-reset: fellowship;
    margin: 1.5rem 0 0;
    padding: 0;
}

.fellowship-list li {
    counter-increment: fellowship;
    position: relative;
    padding-left: 2.4rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.fellowship-list li::before {
    content: counter(fellowship) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: #a92419;
}

.fellowship-area {
    margin-top: 2.75rem;
    padding-top: 2.25rem;
    border-top: 1px solid #ddd;
}

.fellowship-area:first-of-type {
    margin-top: 2.5rem;
}

.fellowship-kicker {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #a92419;
    margin-bottom: 0.5rem;
}

.fellowship-area h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.apply-line {
    margin-top: 2.75rem;
    padding-top: 1.75rem;
    border-top: 1px solid #ddd;
}

.apply-line a {
    color: #a92419;
    font-weight: 700;
}

.activity-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1.5rem 0 1.75rem;
    padding: 0;
    list-style: none;
}

.activity-chips li {
    border: 1px solid #a92419;
    color: #a92419;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
}

.callout-note {
    margin-top: 2.5rem;
    border: 1px solid #ddd;
    border-left: 4px solid #a92419;
    background: #faf7f0;
    padding: 1.75rem 2rem;
    border-radius: 4px;
}

.callout-kicker {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #a92419;
    margin-bottom: 0.9rem;
}

.callout-note blockquote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.02rem;
    line-height: 1.7;
    color: #2a1a12;
    margin: 0 0 1rem;
}

.callout-note blockquote p {
    margin-bottom: 0.9rem;
}

.callout-source {
    font-size: 0.82rem;
    color: #666;
    margin-bottom: 0;
}

.callout-source a {
    color: #a92419;
}

.fellowship-list a {
    color: #a92419;
    text-decoration: underline;
    text-decoration-color: rgba(169, 36, 25, 0.35);
    text-underline-offset: 2px;
}

.fellowship-list a:hover {
    text-decoration-color: #a92419;
}

.fellowship-list .cite {
    display: block;
    margin-top: 0.3rem;
}

.fellowship-list .cite em {
    font-style: italic;
}

.watch-cta {
    display: inline-block;
    margin-top: 0.5rem;
    background: transparent;
    color: #a92419;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.8rem 1.7rem;
    border: 2px solid #a92419;
    border-radius: 3px;
    transition: background 0.2s ease, color 0.2s ease;
}

.watch-cta:hover {
    background: #a92419;
    color: #fff;
}

.content p a.watch-cta,
.content p a.watch-cta:hover {
    text-decoration: none;
}

.sheridan-quote {
    font-family: 'Playfair Display', serif;
    font-style: normal;
}

.thanks-line {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #666;
}

.thanks-line a {
    color: #a92419;
    text-decoration: underline;
    text-decoration-color: rgba(169, 36, 25, 0.35);
    text-underline-offset: 2px;
}

.thanks-line a:hover {
    text-decoration-color: #a92419;
}
