:root {
    --green-1000: #073b2f;
    --green-950: #0b4738;
    --green-900: #0f513f;
    --green-800: #19664f;
    --green-700: #22755b;
    --cream: #f4f0e5;
    --paper: #fffdf7;
    --paper-2: #ece6d8;
    --ink: #161914;
    --muted: #696c63;
    --orange: #e86d36;
    --orange-dark: #bd4f24;
    --lime: #b8cc72;
    --line: #d7d0c1;
    --line-dark: rgba(255,255,255,.22);
    --shadow: 0 20px 60px rgba(19, 42, 32, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: "Manrope", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
::selection { background: var(--orange); color: #fff; }
.shell { width: min(1360px, calc(100% - 64px)); margin-inline: auto; }
.muted { color: var(--muted); }

/* Header: intentionally simple and close to the original site's navigation. */
.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: var(--paper);
    border-bottom: 1px solid #cfc8b9;
}
.header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 38px;
}
.brand { display: inline-flex; align-items: center; }
.brand-word,
.footer-brand,
.hero-wordmark {
    font-family: "Oswald", Impact, sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .075em;
}
.brand-word {
    position: relative;
    font-size: 25px;
    line-height: 1;
}
.brand-word::after {
    content: "";
    position: absolute;
    right: -18px;
    top: 50%;
    width: 7px;
    height: 7px;
    margin-top: -3px;
    border-radius: 50%;
    background: var(--orange);
}
.top-nav { display: flex; align-items: center; gap: 30px; }
.top-nav a {
    position: relative;
    padding: 24px 0 22px;
    font-size: 13px;
    font-weight: 600;
}
.top-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 17px;
    height: 2px;
    background: var(--orange);
    transition: right .2s ease;
}
.top-nav a:hover::after { right: 0; }

/* Hero */
.hero { background: var(--green-900); color: #fff; }
.hero-home {
    position: relative;
    overflow: hidden;
    border-bottom: 10px solid var(--orange);
}
.hero-home::before,
.hero-home::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.hero-home::before {
    width: 420px;
    height: 420px;
    right: -110px;
    top: -190px;
    border: 1px solid rgba(255,255,255,.12);
}
.hero-home::after {
    width: 260px;
    height: 260px;
    right: 44px;
    top: -108px;
    border: 1px solid rgba(255,255,255,.08);
}
.hero-home-inner { padding: 74px 0 82px; }
.hero-wordmark {
    margin-bottom: 58px;
    color: rgba(255,255,255,.22);
    font-size: clamp(54px, 9vw, 132px);
    line-height: .8;
    white-space: nowrap;
}
.hero-wordmark.small {
    margin-bottom: 34px;
    font-size: clamp(42px, 6vw, 82px);
}
.hero-copy { position: relative; z-index: 1; max-width: 980px; }
.hero h1,
.article-header h1 {
    margin: 0;
    font-family: "Oswald", Impact, sans-serif;
    font-weight: 500;
    line-height: .96;
    letter-spacing: -.015em;
    text-transform: uppercase;
}
.hero h1 { font-size: clamp(54px, 7.1vw, 104px); }
.hero p {
    max-width: 760px;
    margin: 24px 0 0;
    color: rgba(255,255,255,.76);
    font-size: 18px;
}
.hero-note {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    width: fit-content;
    background: var(--orange);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.hero-note a {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 4px;
    color: #fff;
    transition: background .18s ease, color .18s ease;
}
.hero-note a:hover,
.hero-note a:focus-visible {
    background: #fff;
    color: var(--orange-dark);
    outline: none;
}
.hero-note span {
    opacity: .9;
    user-select: none;
}
.hero-inner-page { padding: 64px 0 72px; border-bottom: 8px solid var(--orange); }
.hero-inner-page p { max-width: 680px; }

.eyebrow {
    margin-bottom: 10px;
    color: var(--green-700);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .17em;
    text-transform: uppercase;
}
.eyebrow-light { color: var(--lime); }

/* Main two-column layout */
.home-grid {
    display: grid;
    grid-template-columns: minmax(270px, .92fr) minmax(0, 2.08fr);
    gap: 56px;
    padding-block: 62px 92px;
    align-items: start;
}
.main-column { min-width: 0; display: grid; gap: 76px; }
.sidebar {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 26px;
}

/* Filters */
.filter-card,
.start-card,
.empty-card {
    background: var(--paper);
    border: 1px solid var(--line);
}
.filter-card { padding: 26px; border-top: 6px solid var(--green-900); }
.filter-title {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
    font-family: "Oswald", Impact, sans-serif;
    text-transform: uppercase;
}
.filter-title span { color: var(--orange); font-size: 17px; }
.filter-title strong { font-size: 20px; font-weight: 500; letter-spacing: .05em; }
.search-label {
    display: block;
    margin-bottom: 8px;
    color: #33382f;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.search-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 0;
    margin-bottom: 18px;
}
.search-row input {
    width: 100%;
    min-width: 0;
    height: 44px;
    padding: 0 12px;
    border: 1px solid #bdb6a6;
    border-right: 0;
    border-radius: 0;
    background: #fff;
    outline: 0;
    font-size: 13px;
}
.search-row input:focus { border-color: var(--green-700); box-shadow: inset 0 0 0 1px var(--green-700); }
.search-row button {
    border: 0;
    border-radius: 0;
    background: var(--orange);
    color: #fff;
    cursor: pointer;
    font-size: 19px;
    transition: background .2s ease;
}
.search-row button:hover { background: var(--orange-dark); }
fieldset { margin: 0; padding: 18px 0; border: 0; border-top: 1px solid var(--line); }
legend {
    width: 100%;
    margin-bottom: 10px;
    color: var(--green-950);
    font-family: "Oswald", Impact, sans-serif;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
}
.check-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    color: #33372f;
    cursor: pointer;
    font-size: 13px;
}
.check-row input {
    appearance: none;
    width: 17px;
    height: 17px;
    margin: 0;
    border: 1px solid #8f9188;
    background: #fff;
    cursor: pointer;
}
.check-row input:checked { border-color: var(--green-900); background: var(--green-900); box-shadow: inset 0 0 0 3px #fff; }
.filter-actions { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 10px; }
.filter-actions > a { color: var(--muted); font-size: 12px; border-bottom: 1px solid #aaa69d; }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 44px;
    padding: 0 20px;
    border: 0;
    border-radius: 0;
    background: var(--orange);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s ease;
}
.button:hover { background: var(--orange-dark); }
.button span { font-size: 18px; line-height: 1; }

.start-card { padding: 28px 26px; border-top: 6px solid var(--orange); }
.start-card h2,
.section-heading h2,
.author-section h2,
.social-section h2 {
    margin: 0;
    font-family: "Oswald", Impact, sans-serif;
    font-weight: 500;
    line-height: 1.03;
    text-transform: uppercase;
}
.start-card h2 { font-size: 35px; }
.start-lead { margin: 10px 0 18px; color: var(--muted); font-size: 13px; }
.start-card ol { list-style: none; margin: 0; padding: 0; }
.start-card li {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 10px;
    padding: 12px 0;
    border-top: 1px solid var(--line);
}
.start-number { color: var(--orange); font: 500 13px/1.5 "Oswald", sans-serif; }
.start-card a { font-size: 13px; font-weight: 600; line-height: 1.4; }
.start-card a:hover { color: var(--green-700); }

/* Section headings */
.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
    padding-bottom: 15px;
    border-bottom: 1px solid #bbb4a6;
}
.section-heading h2 { font-size: clamp(35px, 4vw, 54px); }
.text-link,
.card-link {
    color: var(--green-800);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.text-link:hover,
.card-link:hover { color: var(--orange-dark); }

/* Latest article: image-heavy, editorial block rather than app-like card. */
.latest-card {
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.latest-media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--green-950);
}
.latest-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4,25,18,.36), transparent 38%);
    pointer-events: none;
}
.latest-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.latest-card:hover .latest-media img { transform: scale(1.018); }
.latest-media-label {
    position: absolute;
    left: 22px;
    bottom: 20px;
    z-index: 2;
    padding: 7px 10px;
    background: var(--orange);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.latest-body { padding: 32px 34px 36px; }
.latest-body h2 {
    max-width: 860px;
    margin: 10px 0 14px;
    color: var(--green-950);
    font-family: "Oswald", Impact, sans-serif;
    font-size: clamp(40px, 5.1vw, 68px);
    font-weight: 500;
    line-height: 1.01;
    text-transform: uppercase;
}
.latest-body p { max-width: 780px; margin: 0; color: var(--muted); font-size: 15px; }

.photo-placeholder {
    width: 100%;
    height: 100%;
    min-height: 250px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 75% 24%, rgba(232,109,54,.38), transparent 25%),
        radial-gradient(circle at 18% 74%, rgba(184,204,114,.22), transparent 28%),
        var(--green-950);
}
.photo-placeholder span { color: rgba(255,255,255,.16); font: 500 clamp(72px, 10vw, 142px)/1 "Oswald", sans-serif; letter-spacing: .06em; }

.meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 18px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}
.meta-line span { position: relative; }
.meta-line span::before { content: "•"; position: absolute; left: -11px; color: var(--orange); }
.tag-row { display: flex; flex-wrap: wrap; gap: 7px; margin: 18px 0 24px; }
.tag-row a {
    display: inline-block;
    padding: 4px 8px;
    border: 1px solid #b8b4a9;
    color: var(--green-800);
    font-size: 11px;
    line-height: 1.25;
}
.tag-row a:hover { border-color: var(--orange); color: var(--orange-dark); }

/* Author block: green, close to the original author's portrait section. */
.author-section {
    display: grid;
    grid-template-columns: minmax(250px, .82fr) minmax(0, 1.55fr);
    min-height: 430px;
    background: var(--green-900);
    color: #fff;
    box-shadow: var(--shadow);
}
.author-photo { min-height: 430px; overflow: hidden; background: var(--green-800); }
.author-photo img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; object-position: center top; }
.author-placeholder { width: 100%; height: 100%; min-height: 430px; display: grid; place-items: center; color: rgba(255,255,255,.2); font: 500 72px/1 "Oswald", sans-serif; }
.author-content { padding: 48px 52px; align-self: center; }
.author-section h2 { font-size: clamp(42px, 5vw, 66px); }
.author-subtitle { margin: 12px 0 24px; color: var(--lime); font: 500 22px/1.2 "Oswald", sans-serif; text-transform: uppercase; }
.author-copy { color: rgba(255,255,255,.78); font-size: 14px; }
.author-copy p:first-child { margin-top: 0; }
.author-copy p:last-child { margin-bottom: 0; }

/* Social links */
.social-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.social-grid a,
.empty-social {
    min-height: 102px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 24px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    color: var(--green-950);
    font: 500 24px/1.1 "Oswald", sans-serif;
    text-transform: uppercase;
    transition: background .2s ease, color .2s ease;
}
.social-grid a b { color: var(--orange); font-weight: 400; }
.social-grid a:hover { background: var(--green-900); color: #fff; }
.empty-social { grid-column: 1 / -1; align-items: center; color: var(--muted); font-family: "Manrope", sans-serif; font-size: 13px; text-transform: none; }

/* Blog cards */
.post-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 22px; }
.post-card { background: var(--paper); border: 1px solid var(--line); box-shadow: 0 12px 36px rgba(19,42,32,.05); }
.post-image { display: block; aspect-ratio: 16 / 11; overflow: hidden; background: var(--green-950); }
.post-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.post-card:hover .post-image img { transform: scale(1.025); }
.post-body { padding: 22px 22px 24px; }
.post-body h3 { margin: 10px 0 11px; color: var(--green-950); font: 500 31px/1.04 "Oswald", sans-serif; text-transform: uppercase; }
.post-body p { margin: 0; color: var(--muted); font-size: 13px; }
.post-body .tag-row { margin-bottom: 16px; }
.result-count {
    min-width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    background: var(--orange);
    color: #fff;
    font: 500 20px/1 "Oswald", sans-serif;
}
.post-grid-empty { grid-column: 1 / -1; }
.empty-card { padding: 30px; }
.empty-card h3 { margin-top: 0; font-family: "Oswald", sans-serif; text-transform: uppercase; }
.pagination { margin-top: 34px; display: flex; align-items: center; justify-content: center; gap: 26px; }
.pagination a { color: var(--green-800); font-size: 12px; font-weight: 700; text-transform: uppercase; }
.pagination span { color: var(--muted); font-size: 12px; }

/* Article */
.article-page { padding-bottom: 96px; }
.article-header-wrap { padding: 62px 0 120px; background: var(--green-900); color: #fff; border-bottom: 8px solid var(--orange); }
.article-header { max-width: 1100px; }
.back-link { display: inline-block; margin-bottom: 42px; color: var(--lime); font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.article-header .meta-line { color: rgba(255,255,255,.58); }
.article-header h1 { max-width: 1060px; margin-top: 18px; font-size: clamp(54px, 7vw, 96px); }
.article-intro { max-width: 850px; margin: 24px 0 0; color: rgba(255,255,255,.72); font-size: 18px; }
.article-tags { margin-top: 24px; margin-bottom: 0; }
.article-tags a { color: var(--lime); border-color: rgba(184,204,114,.38); }
.article-content-shell { margin-top: -66px; position: relative; z-index: 2; }
.article-hero-image { max-width: 1240px; margin: 0 auto 54px; overflow: hidden; border: 10px solid var(--cream); background: var(--green-950); box-shadow: var(--shadow); }
.article-hero-image img { width: 100%; max-height: 760px; object-fit: cover; }
.article-body { max-width: 850px; margin-inline: auto; }
.content-block { margin: 34px 0; }
.article-body .rich-text { font-size: 17px; }
.article-body h2,
.article-body h3,
.article-body h4 {
    color: var(--green-950);
    font-family: "Oswald", Impact, sans-serif;
    font-weight: 500;
    line-height: 1.08;
    text-transform: uppercase;
}
.article-body h2 { margin: 1.55em 0 .55em; font-size: 45px; }
.article-body h3 { margin: 1.4em 0 .5em; font-size: 32px; }
.article-body h4 { font-size: 24px; }
.article-body p,
.article-body li { font-size: 17px; }
.article-body a { color: var(--green-700); text-decoration: underline; text-decoration-color: var(--orange); text-underline-offset: 4px; }
.article-figure { margin: 0; }
.article-figure img { width: 100%; }
.article-figure figcaption { margin-top: 9px; color: var(--muted); font-size: 12px; }
.content-block-video_embed { position: relative; overflow: hidden; background: #000; border: 8px solid var(--paper); box-shadow: var(--shadow); }
.content-block-video_embed iframe { display: block; width: 100%; aspect-ratio: 16 / 9; height: auto; border: 0; }
.content-block-quote { padding: 8px 0 8px 24px; border-left: 5px solid var(--orange); color: var(--green-950); font: 500 29px/1.35 "Oswald", sans-serif; }

/* Recipe visible data = source for Recipe JSON-LD. */
.recipe-card {
    max-width: 1040px;
    margin: 0 auto 56px;
    padding: 34px 38px 38px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-top: 7px solid var(--green-900);
    box-shadow: var(--shadow);
}
.recipe-card h2,
.recipe-card h3 { font-family: "Oswald", sans-serif; font-weight: 500; text-transform: uppercase; }
.recipe-card h2 { margin: .15rem 0 1rem; color: var(--green-950); font-size: 40px; line-height: 1.05; }
.recipe-card h3 { color: var(--green-950); font-size: 25px; }
.recipe-meta { display: flex; flex-wrap: wrap; gap: 0; margin: 18px 0 26px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.recipe-meta span { padding: 10px 14px 10px 0; margin-right: 14px; color: var(--muted); font-size: 12px; }
.recipe-columns { display: grid; grid-template-columns: .9fr 1.1fr; gap: 46px; }
.recipe-ingredients,
.recipe-steps { padding-left: 1.25rem; }
.recipe-ingredients li,
.recipe-steps li { margin: .45rem 0; font-size: 14px; }

/* Footer */
.site-footer { padding: 52px 0 24px; background: #082e25; color: #fff; border-top: 8px solid var(--orange); }
.footer-inner { display: flex; align-items: start; justify-content: space-between; gap: 38px; }
.footer-brand { font-size: 38px; line-height: 1; }
.footer-caption { margin-top: 9px; color: var(--lime); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 12px 28px; padding-top: 7px; }
.footer-nav a { color: rgba(255,255,255,.78); font-size: 12px; font-weight: 600; }
.footer-nav a:hover { color: #fff; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 38px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.14);
    color: rgba(255,255,255,.44);
    font-size: 11px;
}
.footer-bottom a { color: var(--lime); text-transform: uppercase; font-weight: 700; }

@media (max-width: 1040px) {
    .shell { width: min(100% - 44px, 1360px); }
    .home-grid { grid-template-columns: minmax(240px, .8fr) minmax(0, 1.6fr); gap: 34px; }
    .author-section { grid-template-columns: 260px 1fr; }
    .author-content { padding: 38px; }
}

@media (max-width: 900px) {
    .header-inner { min-height: 64px; }
    .top-nav { gap: 18px; }
    .top-nav a { padding-block: 20px; }
    .hero-home-inner { padding-block: 56px 64px; }
    .hero-wordmark { margin-bottom: 42px; }
    .home-grid { grid-template-columns: 1fr; padding-top: 40px; }
    .sidebar { position: static; }
    .filter-card { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 24px; }
    .filter-title, .search-label, .search-row, .filter-actions { grid-column: 1 / -1; }
    .start-card { display: none; }
    .author-section { grid-template-columns: 280px 1fr; }
    .post-grid { gap: 20px; }
}

@media (max-width: 680px) {
    .shell { width: min(100% - 28px, 1360px); }
    .site-header { position: static; }
    .header-inner { min-height: 60px; }
    .brand-word { font-size: 20px; }
    .brand-word::after { display: none; }
    .top-nav { gap: 14px; }
    .top-nav a { font-size: 11px; padding: 20px 0; }
    .top-nav a:nth-child(2), .top-nav a:nth-child(4) { display: none; }
    .hero-home-inner { padding: 42px 0 50px; }
    .hero-wordmark { margin-bottom: 28px; font-size: 52px; }
    .hero-wordmark.small { font-size: 44px; }
    .hero h1 { font-size: 48px; }
    .hero p { font-size: 15px; }
    .hero-inner-page { padding: 44px 0 50px; }
    .home-grid { gap: 34px; padding-bottom: 64px; }
    .main-column { gap: 54px; }
    .filter-card { display: block; padding: 22px; }
    .section-heading { align-items: start; }
    .section-heading h2 { font-size: 36px; }
    .text-link { margin-top: 8px; }
    .latest-media { aspect-ratio: 4 / 3; }
    .latest-body { padding: 24px 22px 26px; }
    .latest-body h2 { font-size: 38px; }
    .author-section { grid-template-columns: 1fr; }
    .author-photo, .author-photo img, .author-placeholder { min-height: 360px; }
    .author-content { padding: 30px 24px 34px; }
    .author-section h2 { font-size: 45px; }
    .social-grid, .post-grid, .recipe-columns { grid-template-columns: 1fr; }
    .social-grid a { min-height: 82px; font-size: 21px; }
    .article-header-wrap { padding: 44px 0 90px; }
    .article-header h1 { font-size: 46px; }
    .article-intro { font-size: 16px; }
    .article-content-shell { margin-top: -48px; }
    .article-hero-image { margin-bottom: 38px; border-width: 6px; }
    .recipe-card { padding: 25px 22px 28px; }
    .recipe-card h2 { font-size: 33px; }
    .article-body h2 { font-size: 35px; }
    .article-body h3 { font-size: 28px; }
    .article-body p, .article-body li, .article-body .rich-text { font-size: 16px; }
    .footer-inner, .footer-bottom { flex-direction: column; }
    .footer-brand { font-size: 31px; }
    .footer-nav { gap: 10px 20px; }
}
