:root {
  --font-family: "Raleway", sans-serif;
  --font-size-base: 15.4px;
  --line-height-base: 1.52;

  --max-w: 1040px;
  --space-x: 0.89rem;
  --space-y: 1.49rem;
  --gap: 0.87rem;

  --radius-xl: 1.02rem;
  --radius-lg: 0.75rem;
  --radius-md: 0.47rem;
  --radius-sm: 0.23rem;

  --shadow-sm: 0 1px 6px rgba(0,0,0,0.09);
  --shadow-md: 0 5px 12px rgba(0,0,0,0.12);
  --shadow-lg: 0 10px 28px rgba(0,0,0,0.14);

  --overlay: rgba(0, 0, 0, 0.4);
  --anim-duration: 280ms;
  --anim-ease: cubic-bezier(0.4,0,0.2,1);
  --random-number: 1;

  --brand: #1a5f7a;
  --brand-contrast: #ffffff;
  --accent: #e67e22;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f8f9fa;
  --neutral-300: #dee2e6;
  --neutral-600: #6c757d;
  --neutral-800: #343a40;
  --neutral-900: #212529;

  --bg-page: #f8f9fa;
  --fg-on-page: #212529;

  --bg-alt: #ffffff;
  --fg-on-alt: #343a40;

  --surface-1: #ffffff;
  --surface-2: #f8f9fa;
  --fg-on-surface: #212529;
  --border-on-surface: #dee2e6;

  --surface-light: #ffffff;
  --fg-on-surface-light: #343a40;
  --border-on-surface-light: #e9ecef;

  --bg-primary: #2e8b57;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #267349;
  --ring: rgba(46, 139, 87, 0.4);

  --bg-accent: #fef5e7;
  --fg-on-accent: #784212;
  --bg-accent-hover: #d35400;

  --link: #1a5f7a;
  --link-hover: #0d4d6b;

  --gradient-hero: linear-gradient(135deg, #1a5f7a 0%, #2e8b57 100%);
  --gradient-accent: linear-gradient(90deg, #fef5e7 0%, #e8f4f8 100%);

  --btn-ghost-bg: transparent;
  --btn-ghost-bg-hover: rgba(255,255,255,0.06);
  --chip-bg: rgba(255,255,255,0.68);
  --input-placeholder: rgba(255,255,255,0.55);
}
body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
*{box-sizing:border-box;}

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

.logo:hover {
    color: var(--accent);
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}

.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}

.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .main-nav {
        display: none;
        width: 100%;
        order: 3;
        margin-top: var(--space-y);
    }

    .main-nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        background-color: var(--surface-2);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
    }

    .nav-link {
        display: block;
        padding: var(--space-md) var(--space-lg);
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.bundalee-footer {
  background-color: #f8f9fa;
  border-top: 1px solid #eaeaea;
  color: #333;
  font-family: sans-serif;
  padding: 2.5rem 1rem 1.5rem;
  margin-top: 3rem;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
}
.footer-brand {
  flex: 1;
  min-width: 250px;
}
.footer-brand .logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #2a5934;
  margin-bottom: 0.5rem;
}
.footer-brand .tagline {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 300px;
}
.footer-right-stack {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-nav a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #2a5934;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
}
.footer-legal-links a {
  text-decoration: none;
  color: #666;
}
.footer-legal-links a:hover {
  text-decoration: underline;
  color: #333;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid #ddd;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}
.contact-block {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: #555;
}
.contact-block a {
  color: #2a5934;
  text-decoration: none;
}
.contact-block a:hover {
  text-decoration: underline;
}
.footer-disclaimer {
  color: #777;
  text-align: right;
  flex: 1;
  min-width: 300px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .footer-container, .footer-bottom {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 1rem;
  }
  .footer-legal-links {
    flex-direction: column;
    gap: 0.75rem;
  }
  .contact-block {
    flex-direction: column;
    gap: 0.75rem;
  }
  .footer-disclaimer {
    text-align: left;
  }
}

.nfcookie-v7 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v7__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

.nfintro-v10 {
        padding: calc(var(--space-y) * 2.6) var(--space-x) 0;
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .nfintro-v10__shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .nfintro-v10 h1 {
        margin: 0;
        font-size: clamp(2rem, 4.2vw, 3.4rem);
        line-height: 1.08;
        max-width: 18ch;
    }

    .nfintro-v10__subtitle {
        margin: 0;
        max-width: 58ch;
        color: var(--fg-on-surface-light);
    }

    .nfintro-v10__split {
        display: grid;
        grid-template-columns: 1.1fr .9fr;
        gap: calc(var(--gap) * 1.4);
        align-items: start;
    }

    .nfintro-v10__desc {margin: 0; max-width: 60ch;}

    .nfintro-v10__actions {
        display: grid;
        gap: .7rem;
        justify-items: start;
    }

    .nfintro-v10__actions a {
        display: inline-flex;
        padding: .66rem 1.1rem;
        border-radius: var(--radius-lg);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .nfintro-v10__media {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        padding: var(--gap);
        background: var(--surface-2);
        box-shadow: var(--shadow-sm);
    }

    .nfintro-v10__media img {
        width: 100%;
        display: block;
        border-radius: var(--radius-lg);
        aspect-ratio: 16/9;
        object-fit: cover;
    }

    .nfintro-v10__rail {
        margin-top: calc(var(--space-y) * 1.4);
        background: var(--surface-2);
        border-top: 1px solid var(--border-on-surface);
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1px;
    }

    .nfintro-v10__rail div {
        padding: 1rem var(--space-x);
        background: var(--surface-1);
        display: grid;
        gap: .3rem;
    }

    .nfintro-v10__rail em {
        font-style: normal;
        color: var(--fg-on-surface-light);
        font-size: .88rem;
    }

    .nfintro-v10__rail strong {font-size: 1.05rem;}

    @media (max-width: 900px) {
        .nfintro-v10__split {grid-template-columns: 1fr;}
        .nfintro-v10__rail {grid-template-columns: repeat(2, minmax(0, 1fr));}
    }

.about-struct-v5 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--gradient-accent);
        color: var(--accent-contrast)
    }

    .about-struct-v5 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap)
    }

    .about-struct-v5 h2, .about-struct-v5 h3, .about-struct-v5 p {
        margin: 0
    }

    .about-struct-v5 .split, .about-struct-v5 .duo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .about-struct-v5 .split img, .about-struct-v5 .gallery img {
        display: block;
        width: 100%;
        object-fit: cover;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md)
    }

    .about-struct-v5 .split img {
        aspect-ratio: 4/3
    }

    .about-struct-v5 .split div {
        display: grid;
        gap: .5rem
    }

    .about-struct-v5 .cards {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap)
    }

    .about-struct-v5 article, .about-struct-v5 .values div, .about-struct-v5 .facts div, .about-struct-v5 .quote, .about-struct-v5 .statement {
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

    .about-struct-v5 .timeline {
        display: grid;
        gap: .65rem
    }

    .about-struct-v5 .timeline article {
        position: relative;
        padding-left: 1.25rem
    }

    .about-struct-v5 .timeline article::before {
        content: "";
        position: absolute;
        left: 0;
        top: .55rem;
        width: .5rem;
        height: .5rem;
        background: var(--bg-accent);
        border-radius: 50%
    }

    .about-struct-v5 .values, .about-struct-v5 .facts {
        display: grid;
        gap: .6rem
    }

    .about-struct-v5 .gallery {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap)
    }

    .about-struct-v5 .gallery img {
        aspect-ratio: 1/1
    }

    .about-struct-v5 .statement {
        display: grid;
        gap: .5rem
    }

    .about-struct-v5 .actions {
        display: flex;
        flex-wrap: wrap;
        gap: .45rem
    }

    .about-struct-v5 .actions a {
        display: inline-flex;
        min-height: 2.4rem;
        padding: 0 .85rem;
        border-radius: var(--radius-sm);
        align-items: center;
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    @media (max-width: 900px) {
        .about-struct-v5 .split, .about-struct-v5 .duo, .about-struct-v5 .cards, .about-struct-v5 .gallery {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .about-struct-v5 .split, .about-struct-v5 .duo, .about-struct-v5 .cards, .about-struct-v5 .gallery {
            grid-template-columns:1fr
        }
    }

.next-pins-l4 {
        padding: clamp(3.2rem, 7vw, 5.7rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .next-pins-l4__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .next-pins-l4__head {
        margin-bottom: 1.1rem;
    }

    .next-pins-l4__head p {
        margin: 0;
        color: var(--brand);
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .1em;
    }

    .next-pins-l4__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .next-pins-l4__head span {
        display: block;
        margin-top: .8rem;
        color: var(--neutral-600);
        max-width: 38rem;
    }

    .next-pins-l4__pins {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
        gap: var(--gap);
    }

    .next-pins-l4__pins article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .next-pins-l4__pins div {
        display: inline-flex;
        width: 2.4rem;
        height: 2.4rem;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--surface-2);
    }

    .next-pins-l4__pins h3 {
        margin: .75rem 0 .35rem;
    }

    .next-pins-l4__pins a {
        color: var(--link);
        text-decoration: none;
    }

    .next-pins-l4__button {
        display: inline-flex;
        margin-top: 1rem;
        min-height: 2.8rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
    }

.visual-path-c3 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .visual-path-c3__wrap {
        max-width: 62rem;
        margin: 0 auto;
    }

    .visual-path-c3__head {
        margin-bottom: 1rem;
    }

    .visual-path-c3__head p {
        margin: 0;
        color: rgba(255, 255, 255, .76);
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .1em;
    }

    .visual-path-c3__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .visual-path-c3__list {
        display: grid;
        gap: .8rem;
    }

    .visual-path-c3__list article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .visual-path-c3__meta {
        display: flex;
        justify-content: space-between;
        gap: .75rem;
        align-items: center;
        margin-bottom: .8rem;
    }

    .visual-path-c3__meta span {
        color: rgba(255, 255, 255, .78);
    }

    .visual-path-c3__content {
        display: grid;
        grid-template-columns: 13rem 1fr;
        gap: 1rem;
        align-items: center;
    }

    .visual-path-c3__content img {
        display: block;
        width: 100%;
        height: 10rem;
        object-fit: cover;
        border-radius: var(--radius-md);
    }

    .visual-path-c3__content small {
        color: rgba(255, 255, 255, .76);
    }

    .visual-path-c3__content h3 {
        margin: .45rem 0 .35rem;
    }

    .visual-path-c3__content p {
        margin: 0;
        color: rgba(255, 255, 255, .84);
    }

    @media (max-width: 680px) {
        .visual-path-c3__content {
            grid-template-columns: 1fr;
        }
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

.logo:hover {
    color: var(--accent);
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}

.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}

.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .main-nav {
        display: none;
        width: 100%;
        order: 3;
        margin-top: var(--space-y);
    }

    .main-nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        background-color: var(--surface-2);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
    }

    .nav-link {
        display: block;
        padding: var(--space-md) var(--space-lg);
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.bundalee-footer {
  background-color: #f8f9fa;
  border-top: 1px solid #eaeaea;
  color: #333;
  font-family: sans-serif;
  padding: 2.5rem 1rem 1.5rem;
  margin-top: 3rem;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
}
.footer-brand {
  flex: 1;
  min-width: 250px;
}
.footer-brand .logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #2a5934;
  margin-bottom: 0.5rem;
}
.footer-brand .tagline {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 300px;
}
.footer-right-stack {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-nav a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #2a5934;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
}
.footer-legal-links a {
  text-decoration: none;
  color: #666;
}
.footer-legal-links a:hover {
  text-decoration: underline;
  color: #333;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid #ddd;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}
.contact-block {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: #555;
}
.contact-block a {
  color: #2a5934;
  text-decoration: none;
}
.contact-block a:hover {
  text-decoration: underline;
}
.footer-disclaimer {
  color: #777;
  text-align: right;
  flex: 1;
  min-width: 300px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .footer-container, .footer-bottom {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 1rem;
  }
  .footer-legal-links {
    flex-direction: column;
    gap: 0.75rem;
  }
  .contact-block {
    flex-direction: column;
    gap: 0.75rem;
  }
  .footer-disclaimer {
    text-align: left;
  }
}

.nfcookie-v7 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v7__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

.post-list--light-v6 {
    padding: 48px 20px;
    background: var(--surface-light);
    color: var(--fg-on-surface-light);
}

.post-list__inner {
    max-width: 720px;
    margin: 0 auto;
}

.post-list__inner h2 {
    margin: 0 0 10px;
    font-size: clamp(22px,3.5vw,28px);
}

.post-list__list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-radius: var(--radius-xl);
    background: var(--bg-page);
    border: 1px solid var(--border-on-surface-light);
    overflow: hidden;
}

.post-list__row {
    display: grid;
    grid-template-columns: minmax(0,1.8fr) auto;
    gap: 12px;
    padding: 8px 12px;
    border-top: 1px solid var(--border-on-surface-light);
}

.post-list__row:first-child {
    border-top: none;
}

.post-list__row-title {
    font-size: 0.9rem;
    color: var(--fg-on-page);
}

.post-list__row-meta {
    font-size: 0.85rem;
    color: var(--neutral-600);
}

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

.logo:hover {
    color: var(--accent);
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}

.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}

.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .main-nav {
        display: none;
        width: 100%;
        order: 3;
        margin-top: var(--space-y);
    }

    .main-nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        background-color: var(--surface-2);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
    }

    .nav-link {
        display: block;
        padding: var(--space-md) var(--space-lg);
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.bundalee-footer {
  background-color: #f8f9fa;
  border-top: 1px solid #eaeaea;
  color: #333;
  font-family: sans-serif;
  padding: 2.5rem 1rem 1.5rem;
  margin-top: 3rem;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
}
.footer-brand {
  flex: 1;
  min-width: 250px;
}
.footer-brand .logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #2a5934;
  margin-bottom: 0.5rem;
}
.footer-brand .tagline {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 300px;
}
.footer-right-stack {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-nav a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #2a5934;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
}
.footer-legal-links a {
  text-decoration: none;
  color: #666;
}
.footer-legal-links a:hover {
  text-decoration: underline;
  color: #333;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid #ddd;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}
.contact-block {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: #555;
}
.contact-block a {
  color: #2a5934;
  text-decoration: none;
}
.contact-block a:hover {
  text-decoration: underline;
}
.footer-disclaimer {
  color: #777;
  text-align: right;
  flex: 1;
  min-width: 300px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .footer-container, .footer-bottom {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 1rem;
  }
  .footer-legal-links {
    flex-direction: column;
    gap: 0.75rem;
  }
  .contact-block {
    flex-direction: column;
    gap: 0.75rem;
  }
  .footer-disclaimer {
    text-align: left;
  }
}

.nfcookie-v7 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v7__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

.post-item {

        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: clamp(16px, 3vw, 40px);
    }

    .post-item .post-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .post-item .post-item__header {
        margin-bottom: var(--space-y);
    }

    .post-item h1 {
        font-size: clamp(28px, 5vw, 42px);
        margin: 0 0 1rem;
        color: var(--fg-on-primary);
    }

    .post-item .post-item__meta {
        display: flex;
        gap: 1rem;

        font-size: 0.875rem;
    }

    .post-item .post-item__content {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        line-height: 1.8;
        color: var(--fg-on-primary);
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__comments {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
    }

    .post-item .post-item__comments h3 {
        margin: 0 0 1.5rem;
        color: var(--fg-on-primary);
    }

    .post-item .post-item__comments-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__comment {
        background: rgba(255, 255, 255, 0.1);
        padding: 1rem;
        border-radius: var(--radius-md);
    }

    .post-item .post-item__comment-author {
        font-weight: 600;
        color: var(--fg-on-primary);
        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-text {

        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-date {
        font-size: 0.875rem;

    }

    .post-item .post-item__reply-form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .post-item .post-item__reply-form textarea {
        padding: 1rem;
        border-radius: var(--radius-md);
        border: none;
        outline: none;
        min-height: 100px;

    }

    .post-item .post-item__reply-form button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-md);
        border: none;
        background: var(--gradient-hero);
        color: var(--bg-primary);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .post-item .post-item__reply-form button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

.articles {

        color: var(--fg-on-page);
        background: var(--bg-page);
        padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 40px);
    }

    .articles .articles__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .articles .articles__header {
        margin-bottom: clamp(32px, 5vw, 48px);
    }

    .articles .articles__header h2 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0;
        color: var(--fg-on-page);
    }

    .articles .articles__list {
        display: flex;
        flex-direction: column;
        gap: clamp(20px, 3vw, 28px);
    }

    .articles .articles__item {
        padding-bottom: clamp(20px, 3vw, 28px);
        border-bottom: 1px solid var(--border-on-surface);
    }

    .articles .articles__item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .articles .articles__link {
        display: block;
        text-decoration: none;
        color: inherit;
    }

    .articles .articles__link h3 {
        font-size: clamp(20px, 3vw, 24px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-page);
    }

    .articles .articles__link:hover h3 {
        color: var(--link-hover);
    }

    .articles .articles__link p {
        font-size: clamp(15px, 2.2vw, 17px);
        line-height: 1.6;
        color: var(--neutral-600);
        margin: 0 0 0.75rem;
    }

    .articles .articles__meta {
        font-size: clamp(13px, 2vw, 15px);
        color: var(--neutral-600);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

.logo:hover {
    color: var(--accent);
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}

.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}

.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .main-nav {
        display: none;
        width: 100%;
        order: 3;
        margin-top: var(--space-y);
    }

    .main-nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        background-color: var(--surface-2);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
    }

    .nav-link {
        display: block;
        padding: var(--space-md) var(--space-lg);
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.bundalee-footer {
  background-color: #f8f9fa;
  border-top: 1px solid #eaeaea;
  color: #333;
  font-family: sans-serif;
  padding: 2.5rem 1rem 1.5rem;
  margin-top: 3rem;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
}
.footer-brand {
  flex: 1;
  min-width: 250px;
}
.footer-brand .logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #2a5934;
  margin-bottom: 0.5rem;
}
.footer-brand .tagline {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 300px;
}
.footer-right-stack {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-nav a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #2a5934;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
}
.footer-legal-links a {
  text-decoration: none;
  color: #666;
}
.footer-legal-links a:hover {
  text-decoration: underline;
  color: #333;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid #ddd;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}
.contact-block {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: #555;
}
.contact-block a {
  color: #2a5934;
  text-decoration: none;
}
.contact-block a:hover {
  text-decoration: underline;
}
.footer-disclaimer {
  color: #777;
  text-align: right;
  flex: 1;
  min-width: 300px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .footer-container, .footer-bottom {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 1rem;
  }
  .footer-legal-links {
    flex-direction: column;
    gap: 0.75rem;
  }
  .contact-block {
    flex-direction: column;
    gap: 0.75rem;
  }
  .footer-disclaimer {
    text-align: left;
  }
}

.nfcookie-v7 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v7__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

.post-item {

        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: clamp(16px, 3vw, 40px);
    }

    .post-item .post-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .post-item .post-item__header {
        margin-bottom: var(--space-y);
    }

    .post-item h1 {
        font-size: clamp(28px, 5vw, 42px);
        margin: 0 0 1rem;
        color: var(--fg-on-primary);
    }

    .post-item .post-item__meta {
        display: flex;
        gap: 1rem;

        font-size: 0.875rem;
    }

    .post-item .post-item__content {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        line-height: 1.8;
        color: var(--fg-on-primary);
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__comments {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
    }

    .post-item .post-item__comments h3 {
        margin: 0 0 1.5rem;
        color: var(--fg-on-primary);
    }

    .post-item .post-item__comments-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__comment {
        background: rgba(255, 255, 255, 0.1);
        padding: 1rem;
        border-radius: var(--radius-md);
    }

    .post-item .post-item__comment-author {
        font-weight: 600;
        color: var(--fg-on-primary);
        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-text {

        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-date {
        font-size: 0.875rem;

    }

    .post-item .post-item__reply-form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .post-item .post-item__reply-form textarea {
        padding: 1rem;
        border-radius: var(--radius-md);
        border: none;
        outline: none;
        min-height: 100px;

    }

    .post-item .post-item__reply-form button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-md);
        border: none;
        background: var(--gradient-hero);
        color: var(--bg-primary);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .post-item .post-item__reply-form button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

.logo:hover {
    color: var(--accent);
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}

.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}

.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .main-nav {
        display: none;
        width: 100%;
        order: 3;
        margin-top: var(--space-y);
    }

    .main-nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        background-color: var(--surface-2);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
    }

    .nav-link {
        display: block;
        padding: var(--space-md) var(--space-lg);
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.bundalee-footer {
  background-color: #f8f9fa;
  border-top: 1px solid #eaeaea;
  color: #333;
  font-family: sans-serif;
  padding: 2.5rem 1rem 1.5rem;
  margin-top: 3rem;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
}
.footer-brand {
  flex: 1;
  min-width: 250px;
}
.footer-brand .logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #2a5934;
  margin-bottom: 0.5rem;
}
.footer-brand .tagline {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 300px;
}
.footer-right-stack {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-nav a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #2a5934;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
}
.footer-legal-links a {
  text-decoration: none;
  color: #666;
}
.footer-legal-links a:hover {
  text-decoration: underline;
  color: #333;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid #ddd;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}
.contact-block {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: #555;
}
.contact-block a {
  color: #2a5934;
  text-decoration: none;
}
.contact-block a:hover {
  text-decoration: underline;
}
.footer-disclaimer {
  color: #777;
  text-align: right;
  flex: 1;
  min-width: 300px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .footer-container, .footer-bottom {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 1rem;
  }
  .footer-legal-links {
    flex-direction: column;
    gap: 0.75rem;
  }
  .contact-block {
    flex-direction: column;
    gap: 0.75rem;
  }
  .footer-disclaimer {
    text-align: left;
  }
}

.nfcookie-v7 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v7__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

.article-list {

        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: clamp(16px, 3vw, 40px);
    }

    .article-list .article-list__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .article-list .article-list__h {
        text-align: center;
        margin-bottom: var(--space-y);
    }

    .article-list h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-primary);
    }

    .article-list .article-list__filters {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        margin-bottom: var(--space-y);
        justify-content: center;
    }

    .article-list .article-list__filter {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .article-list .article-list__filter:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    .article-list .article-list__grid {
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 768px) {
        .article-list .article-list__grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (min-width: 1024px) {
        .article-list .article-list__grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }

    .article-list .article-list__card {
        background: var(--surface-light);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        transition: transform var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }

    .article-list .article-list__card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

    .article-list .article-list__image img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .article-list .article-list__content {
        padding: clamp(16px, 2vw, 24px);
    }

    .article-list .article-list__date {
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

    .article-list h3 {
        margin: 0.5rem 0;
        font-size: clamp(18px, 2.2vw, 22px);
    }

    .article-list h3 a {
        text-decoration: none;
        color: var(--fg-on-surface-light);
    }

    .article-list h3 a:hover {
        color: var(--bg-primary);
    }

    .article-list p {
        color: var(--neutral-600);
        margin: 0.5rem 0 1rem;
    }

    .article-list .article-list__read-more {
        color: var(--bg-primary);
        text-decoration: none;
        font-weight: 600;
    }

    .article-list .article-list__read-more:hover {
        text-decoration: underline;
    }

.faq-layout-d {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: white;
        color: black;
    }

    .faq-layout-d .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .faq-layout-d .section-head {
        margin-bottom: 16px;
        text-align: center;
    }

    .faq-layout-d h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
    }

    .faq-layout-d .section-head p {
        margin: 10px auto 0;
        max-width: 68ch;
    }

    .faq-layout-d .cards {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    }

    .faq-layout-d .card {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .22);
        background: var(--accent);
        color: var(--accent-contrast);
        padding: var(--space-y) var(--space-x);
    }

    .faq-layout-d .card h3 {
        margin: 0;
        font-size: 1.05rem;
    }

    .faq-layout-d .card p {
        margin: 9px 0 0;
        color: var(--neutral-100);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

.logo:hover {
    color: var(--accent);
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}

.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}

.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .main-nav {
        display: none;
        width: 100%;
        order: 3;
        margin-top: var(--space-y);
    }

    .main-nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        background-color: var(--surface-2);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
    }

    .nav-link {
        display: block;
        padding: var(--space-md) var(--space-lg);
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.bundalee-footer {
  background-color: #f8f9fa;
  border-top: 1px solid #eaeaea;
  color: #333;
  font-family: sans-serif;
  padding: 2.5rem 1rem 1.5rem;
  margin-top: 3rem;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
}
.footer-brand {
  flex: 1;
  min-width: 250px;
}
.footer-brand .logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #2a5934;
  margin-bottom: 0.5rem;
}
.footer-brand .tagline {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 300px;
}
.footer-right-stack {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-nav a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #2a5934;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
}
.footer-legal-links a {
  text-decoration: none;
  color: #666;
}
.footer-legal-links a:hover {
  text-decoration: underline;
  color: #333;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid #ddd;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}
.contact-block {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: #555;
}
.contact-block a {
  color: #2a5934;
  text-decoration: none;
}
.contact-block a:hover {
  text-decoration: underline;
}
.footer-disclaimer {
  color: #777;
  text-align: right;
  flex: 1;
  min-width: 300px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .footer-container, .footer-bottom {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 1rem;
  }
  .footer-legal-links {
    flex-direction: column;
    gap: 0.75rem;
  }
  .contact-block {
    flex-direction: column;
    gap: 0.75rem;
  }
  .footer-disclaimer {
    text-align: left;
  }
}

.nfcookie-v7 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v7__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

.connect {
        color: var(--fg-on-page);
        background: var(--surface-light);
        padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 40px);
    }

    .connect .connect__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .connect .connect__header {
        text-align: center;
        margin-bottom: clamp(48px, 7vw, 72px);
    }

    .connect .connect__header h2 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface-light);
    }

    .connect .connect__header p {
        font-size: clamp(16px, 2vw, 18px);
        color: var(--neutral-600);
        margin: 0;
    }

    .connect .connect__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
        gap: clamp(24px, 4vw, 32px);
    }

    .connect .connect__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(14px, 2.2vw, 18px);
        padding: clamp(24px, 4vw, 32px);
        background: var(--bg-page);
        border-radius: var(--radius-lg);
        text-decoration: none;
        color: inherit;
        transition: transform 0.3s;
        box-shadow: var(--shadow-lg);
        position: relative;
    }

    .connect .connect__item:not(:last-of-type):before {
        position: absolute;
        content: '';
        top: 50%;
        right: -32px;
        transform: translatey(-50%);
        width: 32px;
        height: 1px;
        background: var(--accent);
    }

    .connect .connect__item:hover {
        transform: translateY(-4px);
    }

    .connect .connect__icon {
        font-size: clamp(44px, 7.5vw, 68px);
        width: clamp(90px, 13vw, 130px);
        height: clamp(90px, 13vw, 130px);
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        border-radius: 50%;
    }

    .connect .connect__icon {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        animation: section-pulse-border 3s var(--anim-ease) infinite;
    }

    @keyframes section-pulse-border {
        0%, 100% {
            border-color: var(--border-on-surface);
            box-shadow: none;
        }
        50% {
            border-color: var(--brand);
            box-shadow: 0 0 0 3px var(--accent);
        }
    }

    .connect .connect__item span {
        font-size: clamp(16px, 2.5vw, 18px);
        font-weight: 600;
        color: var(--fg-on-page);
    }

.nfcontacts-v9 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(145deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
    }

    .nfcontacts-v9__wrap {
        max-width: 900px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .nfcontacts-v9 h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 42px);
    }

    .nfcontacts-v9__subtitle {
        margin: 0;
        opacity: .92;
    }

    .nfcontacts-v9__list {
        display: grid;
        gap: 10px;
    }

    .nfcontacts-v9__list article {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        padding: 12px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, .28);
        background: rgba(255, 255, 255, .1);
    }

    .nfcontacts-v9__label {
        margin: 0;
        opacity: .86;
    }

    .nfcontacts-v9__value {
        margin: 4px 0 0;
        font-weight: 700;
    }

    .nfcontacts-v9__list a {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: var(--radius-sm);
        padding: 7px 10px;
        white-space: nowrap;
    }

    @media (max-width: 700px) {
        .nfcontacts-v9__list article {
            flex-direction: column;
            align-items: flex-start;
        }
    }

.nfform-v12 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--surface-2);
        color: var(--fg-on-page);
    }

    .nfform-v12__form {
        max-width: 760px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: 16px;
        display: grid;
        gap: 10px;
    }

    .nfform-v12 h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
        color: var(--neutral-900);
    }

    .nfform-v12 p {
        margin: 0;
        color: var(--neutral-600);
    }

    .nfform-v12 label {
        display: grid;
        gap: 6px;
    }

    .nfform-v12 input:not([type='checkbox']),
    .nfform-v12 textarea {
        width: 100%;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 9px;
        font: inherit;
    }

    .nfform-v12__agree {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .nfform-v12 button {
        justify-self: start;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

.support-cv5 {
        padding: clamp(54px, 7vw, 94px) clamp(16px, 4vw, 36px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

    .support-cv5__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .support-cv5__head {
        margin-bottom: 14px;
    }

    .support-cv5__head p {
        margin: 0;
        font-weight: 700;
        opacity: .9;
    }

    .support-cv5__head h2 {
        margin: 7px 0 0;
        font-size: clamp(30px, 5vw, 46px);
    }

    .support-cv5__grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }

    .support-cv5__grid article {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.32);
        color: var(--fg-on-page);
        padding: 13px;
        box-shadow: var(--shadow-sm);
    }

    .support-cv5__grid span {
        font-size: .82rem;
        color: var(--brand);
    }

    .support-cv5__grid h3 {
        margin: var(--space-x) 0;
    }

    .support-cv5__grid p {
        margin: 0;
        color: var(--neutral-700, var(--neutral-600));
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

.logo:hover {
    color: var(--accent);
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}

.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}

.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .main-nav {
        display: none;
        width: 100%;
        order: 3;
        margin-top: var(--space-y);
    }

    .main-nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        background-color: var(--surface-2);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
    }

    .nav-link {
        display: block;
        padding: var(--space-md) var(--space-lg);
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.bundalee-footer {
  background-color: #f8f9fa;
  border-top: 1px solid #eaeaea;
  color: #333;
  font-family: sans-serif;
  padding: 2.5rem 1rem 1.5rem;
  margin-top: 3rem;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
}
.footer-brand {
  flex: 1;
  min-width: 250px;
}
.footer-brand .logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #2a5934;
  margin-bottom: 0.5rem;
}
.footer-brand .tagline {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 300px;
}
.footer-right-stack {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-nav a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #2a5934;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
}
.footer-legal-links a {
  text-decoration: none;
  color: #666;
}
.footer-legal-links a:hover {
  text-decoration: underline;
  color: #333;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid #ddd;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}
.contact-block {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: #555;
}
.contact-block a {
  color: #2a5934;
  text-decoration: none;
}
.contact-block a:hover {
  text-decoration: underline;
}
.footer-disclaimer {
  color: #777;
  text-align: right;
  flex: 1;
  min-width: 300px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .footer-container, .footer-bottom {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 1rem;
  }
  .footer-legal-links {
    flex-direction: column;
    gap: 0.75rem;
  }
  .contact-block {
    flex-direction: column;
    gap: 0.75rem;
  }
  .footer-disclaimer {
    text-align: left;
  }
}

.nfcookie-v7 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v7__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

.policy-layout-f {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(180deg, var(--surface-2), var(--surface-1));
        color: var(--fg-on-page);
    }

    .policy-layout-f .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .policy-layout-f .section-head {
        margin-bottom: 16px;
    }

    .policy-layout-f h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
    }

    .policy-layout-f .section-head p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .policy-layout-f .rows {
        display: grid;
        gap: 10px;
    }

    .policy-layout-f article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        padding: 12px;
        background: var(--surface-1);
    }

    .policy-layout-f .head {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .policy-layout-f .head span {
        min-width: 30px;
        height: 30px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .policy-layout-f .head h3 {
        margin: 0;
    }

    .policy-layout-f article p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

.logo:hover {
    color: var(--accent);
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}

.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}

.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .main-nav {
        display: none;
        width: 100%;
        order: 3;
        margin-top: var(--space-y);
    }

    .main-nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        background-color: var(--surface-2);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
    }

    .nav-link {
        display: block;
        padding: var(--space-md) var(--space-lg);
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.bundalee-footer {
  background-color: #f8f9fa;
  border-top: 1px solid #eaeaea;
  color: #333;
  font-family: sans-serif;
  padding: 2.5rem 1rem 1.5rem;
  margin-top: 3rem;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
}
.footer-brand {
  flex: 1;
  min-width: 250px;
}
.footer-brand .logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #2a5934;
  margin-bottom: 0.5rem;
}
.footer-brand .tagline {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 300px;
}
.footer-right-stack {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-nav a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #2a5934;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
}
.footer-legal-links a {
  text-decoration: none;
  color: #666;
}
.footer-legal-links a:hover {
  text-decoration: underline;
  color: #333;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid #ddd;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}
.contact-block {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: #555;
}
.contact-block a {
  color: #2a5934;
  text-decoration: none;
}
.contact-block a:hover {
  text-decoration: underline;
}
.footer-disclaimer {
  color: #777;
  text-align: right;
  flex: 1;
  min-width: 300px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .footer-container, .footer-bottom {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 1rem;
  }
  .footer-legal-links {
    flex-direction: column;
    gap: 0.75rem;
  }
  .contact-block {
    flex-direction: column;
    gap: 0.75rem;
  }
  .footer-disclaimer {
    text-align: left;
  }
}

.nfcookie-v7 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v7__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

.policy-layout-d {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .policy-layout-d .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .policy-layout-d .section-head {
        margin-bottom: 14px;
    }

    .policy-layout-d h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
    }

    .policy-layout-d .section-head p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .policy-layout-d .timeline {
        border-left: 3px solid var(--brand);
        padding-left: 14px;
        display: grid;
        gap: 12px;
    }

    .policy-layout-d article {
        position: relative;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        padding: 12px;
    }

    .policy-layout-d .meta {
        margin: 0;
        color: var(--brand);
        font-size: .9rem;
        font-weight: 600;
    }

    .policy-layout-d h3 {
        margin: 7px 0;
    }

    .policy-layout-d article p {
        margin: 0;
        color: var(--neutral-600);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

.logo:hover {
    color: var(--accent);
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}

.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}

.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .main-nav {
        display: none;
        width: 100%;
        order: 3;
        margin-top: var(--space-y);
    }

    .main-nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        background-color: var(--surface-2);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
    }

    .nav-link {
        display: block;
        padding: var(--space-md) var(--space-lg);
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.bundalee-footer {
  background-color: #f8f9fa;
  border-top: 1px solid #eaeaea;
  color: #333;
  font-family: sans-serif;
  padding: 2.5rem 1rem 1.5rem;
  margin-top: 3rem;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
}
.footer-brand {
  flex: 1;
  min-width: 250px;
}
.footer-brand .logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #2a5934;
  margin-bottom: 0.5rem;
}
.footer-brand .tagline {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 300px;
}
.footer-right-stack {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-nav a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #2a5934;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
}
.footer-legal-links a {
  text-decoration: none;
  color: #666;
}
.footer-legal-links a:hover {
  text-decoration: underline;
  color: #333;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid #ddd;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}
.contact-block {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: #555;
}
.contact-block a {
  color: #2a5934;
  text-decoration: none;
}
.contact-block a:hover {
  text-decoration: underline;
}
.footer-disclaimer {
  color: #777;
  text-align: right;
  flex: 1;
  min-width: 300px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .footer-container, .footer-bottom {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 1rem;
  }
  .footer-legal-links {
    flex-direction: column;
    gap: 0.75rem;
  }
  .contact-block {
    flex-direction: column;
    gap: 0.75rem;
  }
  .footer-disclaimer {
    text-align: left;
  }
}

.nfcookie-v7 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v7__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

.thank-mode-b {
        padding: clamp(58px, 10vw, 114px) 18px;
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .thank-mode-b .card {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-radius: var(--radius-xl);
        padding: clamp(30px, 4vw, 46px);
        background: var(--surface-1);
        box-shadow: var(--shadow-lg);
    }

    .thank-mode-b h1 {
        margin: 0;
        font-size: clamp(32px, 5vw, 54px);
        color: var(--brand);
    }

    .thank-mode-b p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .thank-mode-b a {
        display: inline-block;
        margin-top: 18px;
        padding: 11px 18px;
        border-radius: var(--radius-sm);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
}

.logo:hover {
    color: var(--accent);
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}

.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    font-weight: 500;
}

.nav-link:hover,
.nav-link:focus {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }

    .main-nav {
        display: none;
        width: 100%;
        order: 3;
        margin-top: var(--space-y);
    }

    .main-nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        background-color: var(--surface-2);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
    }

    .nav-link {
        display: block;
        padding: var(--space-md) var(--space-lg);
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .burger-btn.active .burger-line:nth-child(1) {
        transform: translateY(0.65rem) rotate(45deg);
    }

    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-btn.active .burger-line:nth-child(3) {
        transform: translateY(-0.65rem) rotate(-45deg);
    }
}

.bundalee-footer {
  background-color: #f8f9fa;
  border-top: 1px solid #eaeaea;
  color: #333;
  font-family: sans-serif;
  padding: 2.5rem 1rem 1.5rem;
  margin-top: 3rem;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
}
.footer-brand {
  flex: 1;
  min-width: 250px;
}
.footer-brand .logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #2a5934;
  margin-bottom: 0.5rem;
}
.footer-brand .tagline {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 300px;
}
.footer-right-stack {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-nav a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #2a5934;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
}
.footer-legal-links a {
  text-decoration: none;
  color: #666;
}
.footer-legal-links a:hover {
  text-decoration: underline;
  color: #333;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid #ddd;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}
.contact-block {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: #555;
}
.contact-block a {
  color: #2a5934;
  text-decoration: none;
}
.contact-block a:hover {
  text-decoration: underline;
}
.footer-disclaimer {
  color: #777;
  text-align: right;
  flex: 1;
  min-width: 300px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .footer-container, .footer-bottom {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 1rem;
  }
  .footer-legal-links {
    flex-direction: column;
    gap: 0.75rem;
  }
  .contact-block {
    flex-direction: column;
    gap: 0.75rem;
  }
  .footer-disclaimer {
    text-align: left;
  }
}

.nfcookie-v7 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v7__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

.err-slab-e {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: repeating-linear-gradient(45deg, var(--bg-alt), var(--bg-alt) 14px, var(--neutral-0) 14px, var(--neutral-0) 28px);
        color: var(--fg-on-page);
    }

    .err-slab-e .inner {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(26px, 4vw, 42px);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md);
    }

    .err-slab-e h1 {
        margin: 0;
        font-size: clamp(32px, 6vw, 56px);
        color: var(--brand);
    }

    .err-slab-e p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .err-slab-e a {
        display: inline-block;
        margin-top: 16px;
        color: var(--link);
        text-decoration: none;
        border-bottom: 2px solid var(--link);
        padding-bottom: 2px;
    }