:root {
    --bg: #fffdf7;
    --surface: #ffffff;
    --surface-soft: #fff6e6;
    --surface-alt: #f3f8ef;
    --text: #16301f;
    --muted: #5e7264;
    --line: rgba(22, 48, 31, 0.1);
    --brand: #f07d22;
    --brand-dark: #c75f0c;
    --accent: #2e8b57;
    --accent-dark: #1f6b41;
    --shadow: 0 20px 50px rgba(35, 54, 35, 0.12);
    --radius: 24px;
    --radius-sm: 16px;
    --container: min(1180px, calc(100vw - 2rem));
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-color: var(--brand) rgba(46, 139, 87, 0.14);
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    background: radial-gradient(circle at top left, rgba(240, 125, 34, 0.12), transparent 30%), linear-gradient(180deg, #fffefb 0%, #fffdf7 38%, #f7fbf4 100%);
    line-height: 1.6;
    padding-top: 122px;
}

* {
    scrollbar-width: thin;
}

*::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

*::-webkit-scrollbar-track {
    background: linear-gradient(180deg, rgba(46, 139, 87, 0.12), rgba(240, 125, 34, 0.08));
    border-radius: 999px;
}

*::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--brand), var(--accent));
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

*::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff9c45, #37a467);
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

iframe {
    width: 100%;
    border: 0;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.button,
button,
input[type='submit'] {
    font: inherit;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    border-radius: 999px;
    padding: 0.95rem 1.4rem;
    background: linear-gradient(135deg, var(--brand), #ff9c45);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(240, 125, 34, 0.24);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(240, 125, 34, 0.28);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: none;
}

.button-ghost {
    background: transparent;
    color: var(--accent);
    border: 1px solid rgba(46, 139, 87, 0.2);
    box-shadow: none;
}

.button-small {
    padding: 0.75rem 1.15rem;
}

.eyebrow {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(46, 139, 87, 0.12);
    color: var(--accent-dark);
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.76rem;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(255, 253, 247, 0.86);
    border-bottom: 1px solid rgba(22, 48, 31, 0.06);
    transition: top 0.28s ease;
}

.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 21;
    background: linear-gradient(90deg, #1f6b41, #2e8b57 55%, #f07d22);
    color: rgba(255, 255, 255, 0.94);
    transition: transform 0.28s ease, opacity 0.28s ease;
}

.top-bar__inner {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.86rem;
    font-weight: 700;
}

.top-bar__left,
.top-bar__right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.top-bar__left a,
.top-bar__left span,
.top-bar__right span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.top-bar__icon {
    width: 1.35rem;
    height: 1.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    flex-shrink: 0;
}

.top-bar__icon svg {
    width: 0.82rem;
    height: 0.82rem;
    display: block;
}

body.top-bar-hidden {
    padding-top: 78px;
}

body.top-bar-hidden .top-bar {
    transform: translateY(-100%);
    opacity: 0;
}

body.top-bar-hidden .site-header {
    top: 0;
}

body:not(.top-bar-hidden) .site-header {
    top: 44px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 800;
}

.brand img {
    width: 48px;
    height: 48px;
}

.brand span {
    display: grid;
    line-height: 1.1;
}

.brand small {
    color: var(--muted);
    font-size: 0.78rem;
}

.site-nav {
    position: fixed;
    inset: 78px 1rem auto 1rem;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 1rem;
    display: none;
    flex-direction: column;
    gap: 0.9rem;
}

.site-nav.open {
    display: flex;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 700;
    color: var(--muted);
}

.site-nav a.active,
.site-nav a:hover {
    color: var(--accent-dark);
}

.site-nav .auth-link {
    padding: 0.7rem 1rem;
    border-radius: 999px;
    font-weight: 800;
}

.site-nav .nav-dashboard {
    padding: 0.72rem 1.1rem;
    border-radius: 999px;
    font-weight: 800;
    background: rgba(46, 139, 87, 0.12);
    color: var(--accent-dark);
    border: 1px solid rgba(46, 139, 87, 0.18);
}

.site-nav .nav-dashboard.active,
.site-nav .nav-dashboard:hover {
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.2), rgba(240, 125, 34, 0.18));
    color: var(--accent-dark);
    box-shadow: 0 10px 24px rgba(46, 139, 87, 0.12);
}

.site-nav .auth-link--login {
    background: rgba(46, 139, 87, 0.12);
    color: var(--accent-dark);
    border: 1px solid rgba(46, 139, 87, 0.18);
}

.site-nav .auth-link--register {
    background: rgba(240, 125, 34, 0.12);
    color: var(--brand-dark);
    border: 1px solid rgba(240, 125, 34, 0.2);
}

.site-nav .auth-link--login.active,
.site-nav .auth-link--login:hover {
    background: rgba(46, 139, 87, 0.2);
    color: var(--accent-dark);
}

.site-nav .auth-link--register.active,
.site-nav .auth-link--register:hover {
    background: rgba(240, 125, 34, 0.2);
    color: var(--brand-dark);
}

.menu-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 0.25rem;
    background: transparent;
    border: 0;
    padding: 0.3rem;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 999px;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 4.2rem 0 2.4rem;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 252, 244, 0.9) 10%, rgba(255, 252, 244, 0.74) 36%, rgba(255, 251, 239, 0.2) 68%, rgba(255, 251, 239, 0.02) 100%),
        url('../../img/banner.webp') center/cover no-repeat;
    border-bottom-left-radius: 42px;
    border-bottom-right-radius: 42px;
}

.hero-layout {
    position: relative;
    display: grid;
    gap: 1.5rem;
    color: var(--text);
    align-items: center;
}

.hero-copy h1,
.page-hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.5rem, 7vw, 5rem);
    line-height: 0.98;
    margin: 1rem 0;
}

.hero-copy h1 {
    max-width: 12ch;
    color: #0d6a31;
    text-wrap: balance;
}

.hero-copy h1 span,
.hero-copy h1 em {
    display: block;
    font-style: normal;
}

.hero-copy h1 em {
    color: var(--brand);
}

.hero-copy p,
.page-hero p {
    max-width: 620px;
    font-size: 1.05rem;
}

.hero-copy p {
    color: #46584a;
    max-width: 28rem;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.9);
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.hero .eyebrow {
    background: rgba(46, 139, 87, 0.1);
    color: var(--accent-dark);
}

.hero-divider {
    width: 170px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #0f6a34 0 72%, rgba(15, 106, 52, 0.18) 72% 100%);
    margin: 1.25rem 0 1rem;
    position: relative;
}

.hero-divider::after {
    content: '';
    position: absolute;
    right: -30px;
    top: -8px;
    width: 24px;
    height: 20px;
    background: radial-gradient(circle at 30% 50%, rgba(46, 139, 87, 0.8) 0 18%, transparent 20%),
        radial-gradient(circle at 70% 50%, rgba(240, 125, 34, 0.78) 0 18%, transparent 20%);
    opacity: 0.9;
}

.hero-button-alt {
    background: rgba(255, 255, 255, 0.92);
    color: var(--accent-dark);
    border: 2px solid rgba(46, 139, 87, 0.28);
    box-shadow: 0 16px 34px rgba(36, 68, 39, 0.08);
}

.hero-button-alt:hover,
.hero-button-alt:focus-visible {
    color: var(--accent-dark);
    background: #fff;
}

.hero-stage {
    display: none;
}

.hero-stage__glow {
    position: absolute;
    inset: 14% 12% 18%;
    background: radial-gradient(circle, rgba(222, 239, 187, 0.78) 0%, rgba(222, 239, 187, 0.3) 48%, rgba(222, 239, 187, 0) 75%);
    filter: blur(6px);
}

.hero-stage__tree {
    position: absolute;
    left: 50%;
    top: 26%;
    transform: translateX(-50%);
    width: 120px;
    height: 160px;
}

.hero-stage__tree::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 12px;
    height: 78px;
    background: linear-gradient(180deg, #9aac66, #768a4f);
    border-radius: 999px;
}

.hero-stage__tree::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 18%, rgba(170, 200, 107, 0.85) 0 34%, transparent 36%),
        radial-gradient(circle at 24% 36%, rgba(196, 222, 139, 0.8) 0 24%, transparent 26%),
        radial-gradient(circle at 76% 34%, rgba(196, 222, 139, 0.8) 0 24%, transparent 26%),
        radial-gradient(circle at 34% 58%, rgba(160, 193, 99, 0.78) 0 28%, transparent 30%),
        radial-gradient(circle at 70% 58%, rgba(160, 193, 99, 0.78) 0 28%, transparent 30%);
    opacity: 0.82;
}

.hero-stage__path {
    position: absolute;
    left: 50%;
    bottom: 5%;
    transform: translateX(-50%);
    width: 220px;
    height: 110px;
    background: radial-gradient(ellipse at center, rgba(211, 231, 165, 0.9) 0 55%, transparent 58%);
}

.hero-stage__path::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    width: 78px;
    height: 92px;
    background: #fff7d5;
    border-radius: 50% 50% 35% 35% / 20% 20% 80% 80%;
    clip-path: polygon(42% 0, 61% 0, 72% 18%, 62% 36%, 48% 54%, 60% 76%, 52% 100%, 36% 100%, 44% 77%, 34% 58%, 24% 35%, 33% 18%);
    opacity: 0.88;
}

.hero-stage__group {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    align-items: end;
}

.hero-stage__group span {
    position: relative;
    display: block;
    width: 22px;
    background: linear-gradient(180deg, rgba(112, 150, 79, 0.92), rgba(79, 121, 55, 0.92));
    border-radius: 16px 16px 7px 7px;
}

.hero-stage__group span::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -13px;
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(140, 177, 89, 0.96);
}

.hero-stage__group span:nth-child(1) {
    height: 56px;
}

.hero-stage__group span:nth-child(2) {
    height: 42px;
}

.hero-stage__group span:nth-child(3) {
    height: 54px;
}

.hero-stage__group span:nth-child(4) {
    height: 46px;
}

.hero-stage__icons {
    position: absolute;
    inset: 0;
}

.hero-stage__icon {
    position: absolute;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.72);
    display: grid;
    place-items: center;
    border: 2px solid currentColor;
    box-shadow: 0 14px 24px rgba(74, 91, 61, 0.1);
}

.hero-stage__icon svg {
    width: 34px;
    height: 34px;
}

.hero-stage__icon--education {
    color: #6da64d;
    left: 18%;
    top: 58%;
}

.hero-stage__icon--health {
    color: #3d8fdd;
    left: 42%;
    top: 50%;
}

.hero-stage__icon--nutrition {
    color: #f08a22;
    right: 18%;
    top: 56%;
}

.hero-stage__icon--women {
    color: #b264db;
    right: 8%;
    top: 76%;
}

.hero-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(14px);
    border-radius: 34px;
    padding: 1.75rem;
    display: grid;
    gap: 1.15rem;
    color: var(--text);
    box-shadow: 0 30px 70px rgba(85, 86, 40, 0.14);
}

.hero-card .label {
    display: inline-flex;
    flex-direction: column;
    gap: 0.7rem;
    color: #114d27;
    font-size: 0.96rem;
    font-weight: 800;
}

.hero-card strong {
    display: block;
    font-size: clamp(2.3rem, 5vw, 3.4rem);
    color: #0d6a31;
}

.hero-card strong + span {
    color: #304338;
    font-size: 0.98rem;
}

.hero-card .label::after {
    content: '';
    width: 74px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #0f6a34, #6cab45);
}

.hero-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: #334636;
    font-weight: 700;
}

.hero-card__meta span:first-child {
    color: var(--brand);
}

.hero-card__trust {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: center;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(22, 48, 31, 0.1);
}

.hero-card__trust p {
    margin: 0;
    color: #2e4133;
    font-size: 0.98rem;
}

.hero-card__trust-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(46, 139, 87, 0.12), rgba(46, 139, 87, 0.04));
    display: grid;
    place-items: center;
    color: var(--accent-dark);
}

.hero-card__trust-icon svg {
    width: 34px;
    height: 34px;
}

.hero-pillars {
    display: grid;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 36px;
    padding: 1rem 1.15rem;
    box-shadow: 0 24px 54px rgba(77, 84, 42, 0.12);
}

.hero-pillars__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.95rem;
    align-items: center;
    padding: 0.5rem 0;
}

.hero-pillars__item + .hero-pillars__item {
    border-top: 1px solid rgba(22, 48, 31, 0.1);
}

.hero-pillars__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    border: 2px solid currentColor;
    box-shadow: 0 12px 26px rgba(39, 56, 30, 0.08);
}

.hero-pillars__icon svg {
    width: 34px;
    height: 34px;
}

.hero-pillars__icon--education {
    color: #4fa24c;
}

.hero-pillars__icon--health {
    color: #2d87da;
}

.hero-pillars__icon--nutrition {
    color: #f47e1a;
}

.hero-pillars__icon--women {
    color: #9045d2;
}

.hero-pillars__item strong {
    display: block;
    color: #1a3525;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: 0.96rem;
}

.hero-pillars__item p {
    margin: 0.2rem 0 0;
    color: #4b5f50;
    font-size: 0.95rem;
}

.section {
    padding: 4.6rem 0;
}

.section-heading {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.section-heading h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.05;
    margin: 0;
}

.section-heading p {
    max-width: 720px;
    color: var(--muted);
    margin: 0;
}

.stats-grid,
.card-grid,
.video-grid,
.blog-grid,
.gallery-grid,
.footer-grid,
.contact-grid,
.form-grid,
.admin-stats {
    display: grid;
    gap: 1.2rem;
}

.stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-card,
.card,
.feature-panel,
.testimonial,
.admin-card,
.table-wrap,
.sidebar-card,
.form-panel,
.gallery-item,
.video-card {
    background: rgba(255, 255, 255, 0.94);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.stat-card {
    padding: 1.4rem;
}

.stat-card strong {
    display: block;
    font-size: clamp(1.6rem, 6vw, 2.6rem);
    color: var(--accent-dark);
}

.stat-card span {
    color: var(--muted);
    font-weight: 600;
}

.card-grid {
    grid-template-columns: 1fr;
}

.card,
.feature-panel,
.testimonial,
.form-panel,
.gallery-item,
.video-card {
    overflow: hidden;
}

.card img,
.gallery-item img,
.video-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.card-body,
.video-card__body,
.testimonial,
.feature-panel,
.form-panel,
.sidebar-card,
.gallery-item__body {
    padding: 1.4rem;
}

.card h3,
.video-card h3,
.sidebar-card h3,
.contact-card h3,
.admin-card h3 {
    margin: 0 0 0.6rem;
    font-size: 1.2rem;
}

.card p,
.video-card p,
.sidebar-card p,
.testimonial p,
.feature-panel p,
.contact-card p,
.admin-card p {
    color: var(--muted);
    margin: 0 0 1rem;
}

.split {
    display: grid;
    gap: 1.4rem;
}

.feature-panel {
    background: linear-gradient(180deg, rgba(255, 246, 230, 0.88), rgba(243, 248, 239, 0.96));
}

.timeline {
    display: grid;
    gap: 1rem;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: linear-gradient(var(--brand), var(--accent));
}

.timeline-item {
    position: relative;
    padding-left: 2.3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--surface);
    border: 5px solid var(--brand);
}

.testimonial-grid {
    display: grid;
    gap: 1rem;
}

.testimonial strong {
    display: block;
}

.cta-band {
    background:
        linear-gradient(135deg, rgba(20, 89, 50, 0.9), rgba(46, 139, 87, 0.82) 58%, rgba(79, 168, 111, 0.78)),
        url('../../img/bg.webp') center/cover no-repeat;
    color: #fff;
    padding: 2rem;
    border-radius: 32px;
    box-shadow: var(--shadow);
}

.cta-band p {
    color: rgba(255, 255, 255, 0.88);
}

.page-hero {
    padding: 4rem 0 2rem;
}

.page-hero .container {
    background: linear-gradient(135deg, rgba(240, 125, 34, 0.72), rgba(46, 139, 87, 0.76)), url('../../img/banner.webp') center/cover no-repeat;
    border-radius: 36px;
    padding: 2.5rem;
    color: #fff;
}

.grid-2 {
    display: grid;
    gap: 1.4rem;
}

.post-layout {
    display: grid;
    gap: 1.4rem;
}

.post-content,
.sidebar-card,
.contact-card,
.admin-card,
.table-wrap {
    padding: 1.5rem;
}

.post-content img {
    border-radius: 24px;
    margin-bottom: 1.2rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    color: var(--muted);
    font-weight: 600;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 1.2rem;
}

.filter-chip {
    padding: 0.7rem 1rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    cursor: pointer;
}

.filter-chip.active {
    background: rgba(46, 139, 87, 0.12);
    border-color: rgba(46, 139, 87, 0.2);
    color: var(--accent-dark);
}

.gallery-item,
.video-card {
    position: relative;
}

.gallery-item button,
.video-play {
    position: absolute;
    inset: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.gallery-item__badge,
.video-date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(14, 41, 25, 0.78);
    color: #fff;
    border-radius: 999px;
    padding: 0.4rem 0.75rem;
    font-size: 0.78rem;
}

.video-card::after {
    content: '▶';
    position: absolute;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.9);
    color: var(--brand);
    font-size: 1.5rem;
}

.video-card__body {
    padding-top: 1rem;
}

form {
    display: grid;
    gap: 1rem;
}

.form-row {
    display: grid;
    gap: 1rem;
}

label {
    display: grid;
    gap: 0.5rem;
    font-weight: 700;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid rgba(22, 48, 31, 0.14);
    border-radius: 18px;
    padding: 0.95rem 1rem;
    font: inherit;
    background: #fff;
}

.captcha-field {
    gap: 0.65rem;
}

.captcha-box {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 148px;
    min-height: 48px;
    padding: 0.55rem 1.15rem;
    border: 1px solid rgba(22, 48, 31, 0.28);
    border-radius: 12px;
    background:
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.26) 0 2px, transparent 2px 10px),
        linear-gradient(135deg, #fff1b8 0%, #ffd36b 45%, #9be3b2 100%);
    color: #16301f;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-decoration: line-through;
    text-decoration-color: rgba(154, 36, 36, 0.42);
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.95), 0 2px 2px rgba(22, 48, 31, 0.18);
    user-select: none;
}

.captcha-box::before,
.captcha-box::after {
    content: '';
    position: absolute;
    left: 12px;
    right: 12px;
    height: 1px;
    background: rgba(22, 48, 31, 0.18);
    transform: rotate(-5deg);
}

.captcha-box::before {
    top: 17px;
}

.captcha-box::after {
    bottom: 15px;
    transform: rotate(6deg);
}

textarea {
    min-height: 140px;
    resize: vertical;
}

.amount-chips {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.amount-chips button {
    border: 1px solid rgba(240, 125, 34, 0.22);
    background: rgba(240, 125, 34, 0.08);
    color: var(--brand-dark);
    padding: 0.85rem 1rem;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
}

.progress {
    background: rgba(22, 48, 31, 0.08);
    height: 14px;
    border-radius: 999px;
    overflow: hidden;
}

.progress span {
    display: block;
    height: 100%;
    background: linear-gradient(135deg, var(--brand), var(--accent));
}

.flash {
    padding: 1rem 1.15rem;
    border-radius: 18px;
    background: rgba(46, 139, 87, 0.12);
    color: var(--accent-dark);
    font-weight: 700;
}

.flash-error {
    background: rgba(196, 52, 52, 0.12);
    color: #9a2424;
}

.contact-grid iframe {
    min-height: 350px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.faq-section {
    padding-top: 2rem;
}

.faq-list {
    display: grid;
    gap: 0.9rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(22, 48, 31, 0.08);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.faq-item summary {
    cursor: pointer;
    padding: 1rem 1.15rem;
    color: var(--accent-dark);
    font-weight: 800;
}

.faq-item p {
    margin: 0;
    padding: 0 1.15rem 1.15rem;
    color: var(--muted);
}

.legal-content {
    max-width: 900px;
}

.legal-content h2 {
    color: var(--accent-dark);
    margin-top: 0;
}

.site-footer {
    padding: 4rem 0 2rem;
    background: #16301f;
    color: rgba(255, 255, 255, 0.88);
    margin-top: 3rem;
}

.footer-grid {
    grid-template-columns: 1fr;
    margin-bottom: 2rem;
}

.site-footer h3 {
    color: #fff;
    margin-top: 0;
}

.site-footer a,
.site-footer p {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.2rem;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.floating-contact {
    position: fixed;
    right: 18px;
    bottom: 92px;
    z-index: 80;
    display: grid;
    gap: 0.75rem;
    width: 54px;
}

.floating-contact__button {
    width: 54px;
    height: 54px;
    max-width: 54px;
    max-height: 54px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    box-shadow: 0 16px 30px rgba(22, 48, 31, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-contact__button:hover,
.floating-contact__button:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 20px 38px rgba(22, 48, 31, 0.3);
}

.floating-contact__button svg {
    width: 27px;
    height: 27px;
    max-width: 27px;
    max-height: 27px;
    fill: currentColor;
    display: block;
    overflow: hidden;
}

.floating-contact__button--whatsapp {
    background: #25d366;
}

.floating-contact__button--call {
    background: var(--brand);
}

.video-modal[hidden] {
    display: none;
}

.image-modal[hidden] {
    display: none;
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 50;
}

.image-modal {
    position: fixed;
    inset: 0;
    z-index: 55;
}

.video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 20, 10, 0.74);
}

.image-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 20, 10, 0.82);
}

.video-modal__dialog {
    position: relative;
    width: min(900px, calc(100vw - 1rem));
    margin: 10vh auto;
    background: #08150d;
    border-radius: 24px;
    overflow: hidden;
}

.image-modal__dialog {
    position: relative;
    width: min(980px, calc(100vw - 1rem));
    margin: 5vh auto;
    background: #08150d;
    border-radius: 24px;
    overflow: hidden;
    padding: 1rem 1rem 1.4rem;
}

.image-modal__dialog img {
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 18px;
}

.image-modal__dialog p {
    color: rgba(255, 255, 255, 0.88);
    margin: 0.9rem 0 0;
    padding: 0 0.35rem;
}

.video-modal__frame iframe {
    aspect-ratio: 16 / 9;
    min-height: 240px;
}

.video-modal__close {
    position: absolute;
    top: 0.6rem;
    right: 0.9rem;
    z-index: 2;
    color: #fff;
    background: transparent;
    border: 0;
    font-size: 2rem;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.admin-body {
    background: #f5f8f2;
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
}

.admin-shell {
    display: grid;
    min-height: 100vh;
    align-items: start;
}

.admin-sidebar {
    background: #16301f;
    color: #fff;
    padding: 1.5rem 1rem;
    position: sticky;
    top: 0;
    align-self: start;
    height: 100vh;
    overflow-y: auto;
}

.brand-admin {
    margin-bottom: 2rem;
    color: #fff;
}

.admin-sidebar nav {
    display: grid;
    gap: 0.5rem;
}

.admin-sidebar nav a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.82);
}

.admin-sidebar nav a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.admin-nav-icon {
    min-width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.admin-main {
    padding: 1.2rem;
    min-width: 0;
    align-self: start;
}

.admin-topbar {
    margin-bottom: 1.2rem;
}

.admin-topbar h1 {
    margin-bottom: 0.3rem;
}

.admin-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 1.2rem;
}

.admin-card strong {
    display: block;
    font-size: 2rem;
    color: var(--accent-dark);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    text-align: left;
    padding: 0.95rem 0.7rem;
    border-bottom: 1px solid rgba(22, 48, 31, 0.08);
    vertical-align: top;
}

th {
    color: var(--muted);
    font-size: 0.92rem;
}

.inline-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.inline-actions .button {
    padding: 0.6rem 0.95rem;
}

.admin-login {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.admin-login .form-panel {
    width: min(440px, 100%);
}

@media (max-width: 640px) {
    .floating-contact {
        right: 12px;
        bottom: 76px;
    }

    .floating-contact__button {
        width: 48px;
        height: 48px;
    }

    .floating-contact__button svg {
        width: 24px;
        height: 24px;
    }
}

@media (min-width: 720px) {
    .hero .container,
    .split,
    .grid-2,
    .post-layout,
    .contact-grid,
    .form-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: start;
    }

    .stats-grid,
    .admin-stats {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .card-grid,
    .video-grid,
    .blog-grid,
    .gallery-grid,
    .testimonial-grid,
    .footer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1.2fr 0.8fr 0.8fr 0.9fr 1fr;
    }

    .site-nav {
        position: static;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 1.15rem;
        background: transparent;
        box-shadow: none;
        padding: 0;
        inset: auto;
    }

    .menu-toggle {
        display: none;
    }

    .admin-shell {
        grid-template-columns: 280px 1fr;
        align-items: start;
    }

      .admin-main {
          padding: 1.8rem;
          min-width: 0;
      }

      .hero-layout {
          grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.85fr);
      }

      .hero-copy,
      .hero-card {
          align-self: center;
      }

      .hero-pillars {
          grid-column: 1 / -1;
          grid-template-columns: repeat(4, minmax(0, 1fr));
          gap: 0;
          padding: 1.1rem 1.5rem;
      }

      .hero-pillars__item {
          padding: 0.3rem 1rem;
      }

      .hero-pillars__item + .hero-pillars__item {
          border-top: 0;
          border-left: 1px solid rgba(22, 48, 31, 0.12);
      }
  }

@media (max-width: 719px) {
      body {
          padding-top: 78px;
      }

    .top-bar {
        display: none;
    }

      .site-header {
          top: 0 !important;
      }

      .hero {
          padding-top: 2.2rem;
      }

      .hero-copy h1 {
          max-width: none;
          font-size: clamp(2.8rem, 16vw, 4.8rem);
      }

      .hero-card {
          padding: 1.35rem;
      }
  }

@media (min-width: 980px) {
    .card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .video-grid,
    .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
