/* ==========================================================================
   অল বিডি রেসিপি — allbdrecipe.com
   Design system: white canvas, sea-green primary, warm orange accent.
   ========================================================================== */

:root {
    --abr-green: #2E8B57;
    --abr-green-600: #26744A;
    --abr-green-700: #1D5C39;
    --abr-green-900: #123D26;
    --abr-orange: #F4A261;
    --abr-orange-600: #E1873F;
    --abr-ember: #E76F51;
    --abr-cream: #FFF7EE;
    --abr-sand: #FBF3E8;
    --abr-ink: #1B2620;
    --abr-body: #41514A;
    --abr-muted: #6E8078;
    --abr-line: #E6EDE8;
    --abr-white: #FFFFFF;

    --abr-radius-sm: 10px;
    --abr-radius: 18px;
    --abr-radius-lg: 28px;
    --abr-shadow-sm: 0 6px 18px rgba(18, 61, 38, .06);
    --abr-shadow: 0 18px 40px rgba(18, 61, 38, .10);
    --abr-shadow-lg: 0 30px 70px rgba(18, 61, 38, .16);

    --abr-display: 'Baloo Da 2', 'Noto Sans Bengali', system-ui, sans-serif;
    --abr-text: 'Hind Siliguri', 'Noto Sans Bengali', system-ui, sans-serif;

    --abr-shell: 1200px;
    --abr-header-h: 74px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--abr-white);
    color: var(--abr-body);
    font-family: var(--abr-text);
    font-size: 17px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: var(--abr-display);
    color: var(--abr-ink);
    line-height: 1.28;
    margin: 0 0 .5rem;
    font-weight: 700;
    letter-spacing: -.2px;
}

h1 { font-size: clamp(2rem, 4.4vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 2.9vw, 2.35rem); }
h3 { font-size: clamp(1.15rem, 1.7vw, 1.4rem); }

p { margin: 0 0 1rem; }

a { color: var(--abr-green-600); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--abr-orange-600); }

img { max-width: 100%; display: block; }

ul, ol { margin: 0 0 1rem; padding-left: 1.25rem; }

.abr-shell {
    width: min(100% - 2.5rem, var(--abr-shell));
    margin-inline: auto;
}

.abr-skip {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--abr-green);
    color: #fff;
    padding: .6rem 1rem;
    z-index: 999;
}
.abr-skip:focus { left: 1rem; top: 1rem; }

/* ---------------------------------------------------------------- header */

.abr-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: saturate(160%) blur(12px);
    border-bottom: 1px solid transparent;
    transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.abr-header.is-stuck {
    border-color: var(--abr-line);
    box-shadow: 0 10px 30px rgba(18, 61, 38, .07);
}

.abr-header__inner {
    min-height: var(--abr-header-h);
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.abr-brand { display: flex; align-items: center; gap: .7rem; flex: 0 0 auto; }
.abr-brand__mark {
    width: 42px; height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--abr-green) 0%, var(--abr-green-700) 100%);
    display: grid; place-items: center;
    color: #fff;
    font-family: var(--abr-display);
    font-size: 1.25rem;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(46, 139, 87, .35);
}
.abr-brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.abr-brand__name {
    font-family: var(--abr-display);
    font-size: 1.32rem;
    font-weight: 800;
    color: var(--abr-ink);
    letter-spacing: -.4px;
}
.abr-brand__name em { font-style: normal; color: var(--abr-green); }
.abr-brand__bn { font-size: .78rem; color: var(--abr-muted); letter-spacing: .2px; }

.abr-nav { margin-left: auto; display: flex; align-items: center; gap: .35rem; }
.abr-nav a {
    padding: .5rem .8rem;
    border-radius: 999px;
    color: var(--abr-ink);
    font-weight: 500;
    font-size: .98rem;
    transition: background .2s ease, color .2s ease;
}
.abr-nav a:hover, .abr-nav a.is-active { background: var(--abr-sand); color: var(--abr-green-700); }

.abr-header__actions { display: flex; align-items: center; gap: .55rem; }

.abr-searchbox { position: relative; }
.abr-searchbox input {
    width: 210px;
    border: 1px solid var(--abr-line);
    background: #fff;
    border-radius: 999px;
    padding: .55rem 2.4rem .55rem 1rem;
    font-family: inherit;
    font-size: .95rem;
    color: var(--abr-ink);
    transition: border-color .2s ease, box-shadow .2s ease, width .25s ease;
}
.abr-searchbox input:focus {
    outline: none;
    border-color: var(--abr-green);
    box-shadow: 0 0 0 4px rgba(46, 139, 87, .12);
}
.abr-searchbox button {
    position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
    border: 0; background: transparent; cursor: pointer;
    width: 32px; height: 32px; border-radius: 50%;
    color: var(--abr-green-700);
    display: grid; place-items: center;
}
.abr-searchbox button:hover { background: var(--abr-sand); }

.abr-burger {
    display: none;
    width: 42px; height: 42px;
    border-radius: 12px;
    border: 1px solid var(--abr-line);
    background: #fff;
    cursor: pointer;
    color: var(--abr-ink);
}

/* ------------------------------------------------------------------ hero */

.abr-hero {
    position: relative;
    isolation: isolate;
    min-height: min(88vh, 760px);
    display: flex;
    align-items: flex-end;
    padding: clamp(3rem, 9vw, 6.5rem) 0 clamp(2.5rem, 6vw, 4rem);
    overflow: hidden;
    background: var(--abr-green-900);
}
.abr-hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
}
.abr-hero__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.06);
    animation: abr-kenburns 26s ease-in-out infinite alternate;
}
@keyframes abr-kenburns {
    from { transform: scale(1.04) translate3d(0, 0, 0); }
    to   { transform: scale(1.16) translate3d(-1.5%, -2%, 0); }
}
.abr-hero::after {
    content: "";
    position: absolute; inset: 0; z-index: -1;
    background:
        radial-gradient(120% 90% at 15% 85%, rgba(18, 61, 38, .93) 0%, rgba(18, 61, 38, .62) 45%, rgba(18, 61, 38, .18) 100%),
        linear-gradient(180deg, rgba(9, 32, 20, .55) 0%, rgba(9, 32, 20, .25) 35%, rgba(9, 32, 20, .88) 100%);
}

.abr-hero__inner { max-width: 720px; color: #fff; }

.abr-hero__brand {
    display: inline-flex; align-items: baseline; gap: .6rem;
    font-family: var(--abr-display);
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.6px;
    margin-bottom: .35rem;
}
.abr-hero__brand span { color: var(--abr-orange); }
.abr-hero__brand small {
    font-family: var(--abr-text);
    font-size: .85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .78);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.abr-hero h1 {
    color: #fff;
    font-size: clamp(2.2rem, 5.4vw, 4rem);
    margin-bottom: 1rem;
    text-shadow: 0 10px 40px rgba(0, 0, 0, .35);
}
.abr-hero h1 em { font-style: normal; color: var(--abr-orange); }

.abr-hero__support {
    font-size: clamp(1.02rem, 1.5vw, 1.2rem);
    color: rgba(255, 255, 255, .88);
    max-width: 44ch;
    margin-bottom: 1.9rem;
}

.abr-hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }

.abr-hero__stats {
    display: flex; flex-wrap: wrap; gap: 2.2rem;
    margin-top: 2.6rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .22);
}
.abr-hero__stat strong {
    display: block;
    font-family: var(--abr-display);
    font-size: 1.75rem;
    color: #fff;
    line-height: 1.1;
}
.abr-hero__stat span { font-size: .9rem; color: rgba(255, 255, 255, .7); }

.abr-hero__scroll {
    position: absolute;
    right: max(1.25rem, calc((100vw - var(--abr-shell)) / 2));
    bottom: 2rem;
    color: rgba(255, 255, 255, .7);
    font-size: .82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    display: flex; align-items: center; gap: .8rem;
}
.abr-hero__scroll::after {
    content: "";
    width: 1px; height: 54px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .7), transparent);
    animation: abr-drop 2.4s ease-in-out infinite;
}
@keyframes abr-drop {
    0%, 100% { opacity: .25; transform: scaleY(.6); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* --------------------------------------------------------------- buttons */

.abr-btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .78rem 1.6rem;
    border-radius: 999px;
    font-family: var(--abr-text);
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.abr-btn--primary {
    background: var(--abr-orange);
    color: #22160B;
    box-shadow: 0 14px 30px rgba(244, 162, 97, .35);
}
.abr-btn--primary:hover { background: #FFB574; color: #22160B; transform: translateY(-2px); }
.abr-btn--ghost {
    background: rgba(255, 255, 255, .10);
    color: #fff;
    border-color: rgba(255, 255, 255, .45);
    backdrop-filter: blur(6px);
}
.abr-btn--ghost:hover { background: rgba(255, 255, 255, .2); color: #fff; transform: translateY(-2px); }
.abr-btn--green {
    background: var(--abr-green);
    color: #fff;
    box-shadow: 0 14px 30px rgba(46, 139, 87, .28);
}
.abr-btn--green:hover { background: var(--abr-green-600); color: #fff; transform: translateY(-2px); }
.abr-btn--outline {
    background: #fff;
    color: var(--abr-green-700);
    border-color: var(--abr-line);
}
.abr-btn--outline:hover { border-color: var(--abr-green); color: var(--abr-green-700); }

/* -------------------------------------------------------------- sections */

.abr-section { padding: clamp(3rem, 6.5vw, 5.25rem) 0; }
.abr-section--tint { background: var(--abr-cream); }
.abr-section--sand { background: var(--abr-sand); }

.abr-section__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2.2rem;
    flex-wrap: wrap;
}
.abr-kicker {
    display: inline-flex; align-items: center; gap: .5rem;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--abr-green);
    margin-bottom: .4rem;
}
.abr-kicker::before {
    content: "";
    width: 26px; height: 2px;
    background: var(--abr-orange);
    border-radius: 2px;
}
.abr-section__head p { color: var(--abr-muted); margin: .35rem 0 0; max-width: 56ch; }

.abr-link-more {
    font-weight: 600;
    color: var(--abr-green-700);
    display: inline-flex; align-items: center; gap: .4rem;
    white-space: nowrap;
}
.abr-link-more::after { content: "→"; transition: transform .2s ease; }
.abr-link-more:hover::after { transform: translateX(4px); }

/* ----------------------------------------------------------------- grids */

.abr-grid { display: grid; gap: 1.6rem; }
.abr-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.abr-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.abr-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.abr-grid--cats { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1.2rem; }

.abr-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 2.5rem;
    align-items: start;
}

/* ----------------------------------------------------------- recipe card */

.abr-card {
    background: #fff;
    border: 1px solid var(--abr-line);
    border-radius: var(--abr-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.abr-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--abr-shadow);
    border-color: transparent;
}
.abr-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--abr-sand);
}
.abr-card__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.abr-card:hover .abr-card__media img { transform: scale(1.07); }
.abr-card__badge {
    position: absolute;
    left: .8rem; top: .8rem;
    background: rgba(255, 255, 255, .94);
    color: var(--abr-green-700);
    font-size: .78rem;
    font-weight: 600;
    padding: .28rem .7rem;
    border-radius: 999px;
    box-shadow: var(--abr-shadow-sm);
}
.abr-card__body { padding: 1.1rem 1.15rem 1.25rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.abr-card__title {
    font-family: var(--abr-display);
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--abr-ink);
    line-height: 1.4;
    margin: 0;
}
.abr-card__title a { color: inherit; }
.abr-card__title a:hover { color: var(--abr-green); }
.abr-card__excerpt { font-size: .95rem; color: var(--abr-muted); margin: 0; }
.abr-card__meta {
    margin-top: auto;
    display: flex; flex-wrap: wrap; gap: .9rem;
    font-size: .85rem;
    color: var(--abr-muted);
    padding-top: .35rem;
}
.abr-card__meta span { display: inline-flex; align-items: center; gap: .35rem; }

.abr-card--row { flex-direction: row; align-items: stretch; }
.abr-card--row .abr-card__media { width: 122px; flex: 0 0 122px; aspect-ratio: auto; }
.abr-card--row .abr-card__body { padding: .85rem 1rem; }
.abr-card--row .abr-card__title { font-size: 1rem; }

/* ------------------------------------------------------------ category card */

.abr-cat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .75rem;
    padding: 1.4rem 1rem 1.2rem;
    border-radius: var(--abr-radius);
    background: #fff;
    border: 1px solid var(--abr-line);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.abr-cat:hover { transform: translateY(-5px); box-shadow: var(--abr-shadow); border-color: transparent; }
.abr-cat__img {
    width: 92px; height: 92px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--abr-white);
    box-shadow: 0 10px 24px rgba(18, 61, 38, .14);
}
.abr-cat__name { font-family: var(--abr-display); font-weight: 700; color: var(--abr-ink); font-size: 1.02rem; }
.abr-cat__count { font-size: .84rem; color: var(--abr-muted); }

/* --------------------------------------------------------------- topics */

.abr-topic {
    position: relative;
    border-radius: var(--abr-radius-lg);
    overflow: hidden;
    min-height: 260px;
    display: flex;
    align-items: flex-end;
    color: #fff;
    isolation: isolate;
    background: var(--abr-green-900);
}
.abr-topic img {
    position: absolute; inset: 0; z-index: -2;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.abr-topic::after {
    content: "";
    position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(180deg, rgba(18, 61, 38, .05) 0%, rgba(18, 61, 38, .55) 45%, rgba(11, 40, 25, .92) 100%);
}
.abr-topic:hover img { transform: scale(1.06); }
.abr-topic__body { padding: 1.5rem 1.4rem; }
.abr-topic__name { font-family: var(--abr-display); font-size: 1.35rem; font-weight: 700; color: #fff; margin: 0 0 .3rem; }
.abr-topic__desc { font-size: .92rem; color: rgba(255, 255, 255, .82); margin: 0 0 .6rem; }
.abr-topic__count {
    display: inline-flex; align-items: center; gap: .4rem;
    font-size: .82rem;
    font-weight: 600;
    color: #22160B;
    background: var(--abr-orange);
    padding: .25rem .75rem;
    border-radius: 999px;
}
.abr-topic--wide { grid-column: span 2; min-height: 300px; }

/* ----------------------------------------------------------------- tips */

.abr-tip {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--abr-line);
    border-radius: var(--abr-radius);
    transition: transform .25s ease, box-shadow .25s ease;
}
.abr-tip:hover { transform: translateY(-4px); box-shadow: var(--abr-shadow); }
.abr-tip__img {
    width: 96px; height: 96px;
    flex: 0 0 96px;
    border-radius: 14px;
    object-fit: cover;
    background: var(--abr-sand);
}
.abr-tip__label {
    font-size: .76rem;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--abr-orange-600);
    font-weight: 600;
}
.abr-tip__title { font-family: var(--abr-display); font-size: 1.05rem; color: var(--abr-ink); margin: .15rem 0 .3rem; }
.abr-tip__title a { color: inherit; }
.abr-tip__title a:hover { color: var(--abr-green); }
.abr-tip__excerpt { font-size: .9rem; color: var(--abr-muted); margin: 0; }

/* ------------------------------------------------------------ tag / chips */

.abr-chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.abr-chip {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .42rem .95rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--abr-line);
    color: var(--abr-body);
    font-size: .92rem;
    transition: all .2s ease;
}
.abr-chip:hover { background: var(--abr-green); border-color: var(--abr-green); color: #fff; }
.abr-chip.is-active { background: var(--abr-green); border-color: var(--abr-green); color: #fff; }
.abr-chip small { opacity: .7; }

/* ------------------------------------------------------------ newsletter */

.abr-newsletter {
    position: relative;
    border-radius: var(--abr-radius-lg);
    background: linear-gradient(135deg, var(--abr-green-700) 0%, var(--abr-green) 60%, #3FA36A 100%);
    color: #fff;
    padding: clamp(2rem, 4vw, 3.25rem);
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
    gap: 2rem;
    align-items: center;
}
.abr-newsletter::before {
    content: "";
    position: absolute;
    right: -60px; top: -60px;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: rgba(244, 162, 97, .28);
    filter: blur(8px);
}
.abr-newsletter h2 { color: #fff; margin-bottom: .35rem; }
.abr-newsletter p { color: rgba(255, 255, 255, .85); margin: 0; }
.abr-newsletter__form { display: flex; gap: .6rem; position: relative; z-index: 1; flex-wrap: wrap; }
.abr-newsletter__form input {
    flex: 1 1 220px;
    border: 0;
    border-radius: 999px;
    padding: .85rem 1.2rem;
    font-family: inherit;
    font-size: 1rem;
    color: var(--abr-ink);
}
.abr-newsletter__form input:focus { outline: 3px solid rgba(244, 162, 97, .6); }
.abr-newsletter__note { font-size: .82rem; color: rgba(255, 255, 255, .7); margin-top: .6rem; }

/* ------------------------------------------------------------- page head */

.abr-pagehead {
    background: linear-gradient(160deg, var(--abr-green-900) 0%, var(--abr-green-700) 55%, var(--abr-green) 130%);
    color: #fff;
    padding: clamp(2.5rem, 5vw, 3.75rem) 0 clamp(2.2rem, 4vw, 3rem);
    position: relative;
    overflow: hidden;
}
.abr-pagehead::after {
    content: "";
    position: absolute;
    right: -80px; bottom: -120px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: rgba(244, 162, 97, .18);
}
.abr-pagehead h1 { color: #fff; margin-bottom: .4rem; position: relative; }
.abr-pagehead p { color: rgba(255, 255, 255, .82); max-width: 62ch; margin: 0; position: relative; }
.abr-pagehead .abr-kicker { color: var(--abr-orange); }
.abr-pagehead .abr-kicker::before { background: rgba(255, 255, 255, .6); }

.abr-crumbs { font-size: .88rem; color: var(--abr-muted); margin-bottom: 1.25rem; }
.abr-crumbs a { color: var(--abr-green-700); }
.abr-crumbs span { margin: 0 .4rem; opacity: .6; }

/* --------------------------------------------------------------- article */

.abr-article { max-width: 100%; }
.abr-article__cover {
    width: 100%;
    border-radius: var(--abr-radius-lg);
    overflow: hidden;
    margin-bottom: 1.75rem;
    box-shadow: var(--abr-shadow);
}
.abr-article__cover img { width: 100%; max-height: 520px; object-fit: cover; }
.abr-article__caption { font-size: .85rem; color: var(--abr-muted); text-align: center; margin-top: .5rem; }
.abr-article__meta {
    display: flex; flex-wrap: wrap; gap: 1.2rem;
    padding: .9rem 0;
    border-block: 1px solid var(--abr-line);
    margin-bottom: 1.5rem;
    font-size: .92rem;
    color: var(--abr-muted);
}
.abr-article__meta strong { color: var(--abr-ink); font-weight: 600; }
.abr-article__lead { font-size: 1.1rem; color: var(--abr-body); }

.abr-block { margin-bottom: 2rem; }
.abr-block__title {
    font-family: var(--abr-display);
    font-size: 1.35rem;
    color: var(--abr-ink);
    margin-bottom: .6rem;
    display: flex; align-items: center; gap: .6rem;
}
.abr-block__title::before {
    content: "";
    width: 8px; height: 22px;
    border-radius: 4px;
    background: var(--abr-orange);
    flex: 0 0 auto;
}
.abr-block__text p:last-child { margin-bottom: 0; }
.abr-block__text img { border-radius: var(--abr-radius); margin: 1rem 0; }
.abr-block--highlight {
    background: var(--abr-cream);
    border-left: 4px solid var(--abr-green);
    border-radius: var(--abr-radius-sm);
    padding: 1.15rem 1.35rem;
}
.abr-block__image { border-radius: var(--abr-radius); overflow: hidden; margin-bottom: .6rem; }
.abr-block--horizontal { display: grid; grid-template-columns: minmax(0, 340px) minmax(0, 1fr); gap: 1.4rem; align-items: start; }
.abr-block--vertical .abr-block__image { max-width: 420px; margin-inline: auto; }
.abr-block__figcaption { font-size: .85rem; color: var(--abr-muted); }
.abr-block__source { font-size: .84rem; color: var(--abr-muted); font-style: italic; }
.abr-block__link { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; }

.abr-video { position: relative; padding-top: 56.25%; border-radius: var(--abr-radius); overflow: hidden; }
.abr-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* --------------------------------------------------------------- sidebar */

.abr-side { display: flex; flex-direction: column; gap: 1.5rem; position: sticky; top: calc(var(--abr-header-h) + 1rem); }
.abr-side__panel {
    background: #fff;
    border: 1px solid var(--abr-line);
    border-radius: var(--abr-radius);
    padding: 1.25rem;
}
.abr-side__title {
    font-family: var(--abr-display);
    font-size: 1.08rem;
    color: var(--abr-ink);
    margin: 0 0 .9rem;
    padding-bottom: .6rem;
    border-bottom: 1px dashed var(--abr-line);
}
.abr-side__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .8rem; }
.abr-side__item { display: flex; gap: .75rem; align-items: center; }
.abr-side__item img { width: 62px; height: 62px; border-radius: 12px; object-fit: cover; flex: 0 0 62px; background: var(--abr-sand); }
.abr-side__item a { color: var(--abr-ink); font-weight: 500; font-size: .95rem; line-height: 1.45; }
.abr-side__item a:hover { color: var(--abr-green); }
.abr-side__item small { display: block; color: var(--abr-muted); font-weight: 400; font-size: .82rem; }

/* ------------------------------------------------------------ pagination */

.abr-pager { display: flex; justify-content: center; align-items: center; gap: 1rem; margin-top: 2.5rem; }
.abr-pager__info { font-size: .92rem; color: var(--abr-muted); }
.abr-pager a.is-disabled { pointer-events: none; opacity: .4; }

/* ---------------------------------------------------------------- empty */

.abr-empty {
    text-align: center;
    padding: 3.5rem 1rem;
    background: var(--abr-cream);
    border-radius: var(--abr-radius);
    color: var(--abr-muted);
}
.abr-empty h3 { color: var(--abr-ink); }

/* ----------------------------------------------------------------- prose */

.abr-prose { max-width: 74ch; }
.abr-prose h2 { margin-top: 2.25rem; }
.abr-prose ul { padding-left: 1.2rem; }
.abr-prose li { margin-bottom: .45rem; }

.abr-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.25rem; }
.abr-info-card {
    background: #fff;
    border: 1px solid var(--abr-line);
    border-radius: var(--abr-radius);
    padding: 1.35rem;
}
.abr-info-card h3 { font-size: 1.08rem; margin-bottom: .35rem; }
.abr-info-card p { margin: 0; color: var(--abr-muted); font-size: .95rem; }

.abr-form { display: grid; gap: 1rem; max-width: 560px; }
.abr-form label { font-weight: 600; color: var(--abr-ink); font-size: .95rem; display: block; margin-bottom: .3rem; }
.abr-form input, .abr-form textarea {
    width: 100%;
    border: 1px solid var(--abr-line);
    border-radius: var(--abr-radius-sm);
    padding: .75rem 1rem;
    font-family: inherit;
    font-size: 1rem;
    color: var(--abr-ink);
    background: #fff;
}
.abr-form input:focus, .abr-form textarea:focus {
    outline: none;
    border-color: var(--abr-green);
    box-shadow: 0 0 0 4px rgba(46, 139, 87, .12);
}

/* ---------------------------------------------------------------- footer */

.abr-footer {
    background: linear-gradient(180deg, var(--abr-green-900) 0%, #0C2E1D 100%);
    color: rgba(255, 255, 255, .72);
    padding: clamp(3rem, 6vw, 4.5rem) 0 1.75rem;
    margin-top: clamp(3rem, 6vw, 5rem);
}
.abr-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
    gap: 2.25rem;
}
.abr-footer h4 {
    color: #fff;
    font-family: var(--abr-display);
    font-size: 1.02rem;
    margin: 0 0 .9rem;
}
.abr-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .55rem; }
.abr-footer a { color: rgba(255, 255, 255, .74); }
.abr-footer a:hover { color: var(--abr-orange); }
.abr-footer__brand {
    font-family: var(--abr-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.4px;
    margin-bottom: .3rem;
}
.abr-footer__brand span { color: var(--abr-orange); }
.abr-footer__about { font-size: .95rem; max-width: 38ch; }
.abr-footer__bottom {
    margin-top: 2.75rem;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: .88rem;
}

/* -------------------------------------------------------------- reveals */

.abr-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s cubic-bezier(.22, .61, .36, 1), transform .7s cubic-bezier(.22, .61, .36, 1);
    will-change: opacity, transform;
}
.abr-reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    .abr-reveal { opacity: 1; transform: none; transition: none; }
    .abr-hero__media img { animation: none; }
    .abr-hero__scroll::after { animation: none; }
    html { scroll-behavior: auto; }
}

/* ----------------------------------------------------------- responsive */

@media (max-width: 1080px) {
    .abr-split { grid-template-columns: minmax(0, 1fr); }
    .abr-side { position: static; }
    .abr-grid--4 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .abr-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .abr-newsletter { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 900px) {
    .abr-nav {
        position: fixed;
        inset: var(--abr-header-h) 0 auto 0;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: .75rem 1.25rem 1.25rem;
        border-bottom: 1px solid var(--abr-line);
        box-shadow: var(--abr-shadow);
        transform: translateY(-14px);
        opacity: 0;
        pointer-events: none;
        transition: opacity .22s ease, transform .22s ease;
    }
    .abr-nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
    .abr-nav a { padding: .75rem .5rem; border-radius: var(--abr-radius-sm); }
    .abr-burger { display: grid; place-items: center; margin-left: auto; }
    .abr-header__actions .abr-searchbox { display: none; }
    .abr-grid--3, .abr-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .abr-block--horizontal { grid-template-columns: minmax(0, 1fr); }
    .abr-topic--wide { grid-column: span 1; }
    .abr-hero__scroll { display: none; }
}

@media (max-width: 620px) {
    body { font-size: 16px; }
    .abr-grid--2, .abr-grid--3, .abr-grid--4 { grid-template-columns: minmax(0, 1fr); }
    .abr-grid--cats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .abr-hero { min-height: 76vh; }
    .abr-hero__stats { gap: 1.4rem; }
    .abr-hero__stat strong { font-size: 1.4rem; }
    .abr-footer__grid { grid-template-columns: minmax(0, 1fr); }
    .abr-card--row .abr-card__media { width: 96px; flex-basis: 96px; }
    .abr-section__head { align-items: flex-start; }
}
