 /* ── Article / Blog Post Styles ─────────────────────── */
    .article-header {
      padding-bottom: 28px;
      margin-bottom: 32px;
      border-bottom: 2px solid var(--brand-border);
    }
    .article-header h1 {
      font-size: clamp(1.6rem, 3.5vw, 2.4rem);
      line-height: 1.25;
      margin-bottom: 16px;
    }
    .article-meta {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      font-size: .82rem;
      color: var(--brand-text-subtle);
    }
    .article-meta span {
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .article-meta .divider-dot {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--brand-border);
      display: inline-block;
    }

    /* Article body typography */
    .article-body {
      font-size: 1rem;
      line-height: 1.85;
      color: var(--brand-text);
    }
    .article-body p {
      margin-bottom: 1.3em;
    }
    .article-body h2 {
      font-size: clamp(1.15rem, 2.5vw, 1.45rem);
      margin-top: 2.4em;
      margin-bottom: .7em;
      padding-bottom: .4em;
      border-bottom: 1px solid var(--brand-border);
      line-height: 1.3;
    }
    .article-body h3 {
      font-size: 1.1rem;
      margin-top: 1.8em;
      margin-bottom: .5em;
    }

    /* Pull quotes / testimonials */
    .testimonial {
      background: var(--brand-page-bg);
      border-left: 4px solid var(--brand-primary);
      border-radius: 0 var(--radius-md) var(--radius-md) 0;
      padding: 20px 24px;
      margin-block: 1.8em;
      position: relative;
    }
    .testimonial::before {
      content: '\201C';
      font-family: var(--font-heading);
      font-size: 4rem;
      color: var(--brand-primary);
      opacity: .25;
      position: absolute;
      top: -8px;
      left: 16px;
      line-height: 1;
      pointer-events: none;
    }
    .testimonial p {
      font-size: .95rem;
      font-style: italic;
      color: var(--brand-text);
      line-height: 1.75;
      margin: 0;
      padding-left: 8px;
    }
    .testimonial__source {
      display: block;
      margin-top: 10px;
      font-size: .8rem;
      font-style: normal;
      font-weight: 600;
      color: var(--brand-primary);
      padding-left: 8px;
    }

    /* Share strip */
    .share-strip {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      padding: 20px 24px;
      background: var(--brand-page-bg);
      border-radius: var(--radius-md);
      border: 1px solid var(--brand-border);
      margin-top: 40px;
    }
    .share-strip__label {
      font-family: var(--font-heading);
      font-size: .85rem;
      font-weight: 700;
      color: var(--brand-text-subtle);
      text-transform: uppercase;
      letter-spacing: .08em;
      margin-right: 4px;
    }
    .share-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: .38em .9em;
      border-radius: var(--radius-pill);
      font-size: .82rem;
      font-weight: 600;
      font-family: var(--font-heading);
      text-decoration: none;
      transition: all var(--t-fast);
      border: 1.5px solid var(--brand-border);
      color: var(--brand-text-subtle);
      background: var(--brand-bg);
    }
    .share-btn:hover {
      border-color: var(--brand-primary);
      color: var(--brand-primary);
      background: var(--brand-primary-light);
    }

    /* Post navigation */
    .post-nav {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 40px;
    }
    .post-nav__item {
      background: var(--brand-bg);
      border: 1px solid var(--brand-border);
      border-radius: var(--radius-md);
      padding: 16px 20px;
      text-decoration: none;
      transition: all var(--t-mid);
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .post-nav__item:hover {
      border-color: var(--brand-primary);
      box-shadow: 0 4px 16px var(--brand-shadow);
    }
    .post-nav__item--next { text-align: right; }
    .post-nav__dir {
      font-size: .72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--brand-text-subtle);
    }
    .post-nav__title {
      font-family: var(--font-heading);
      font-size: .92rem;
      font-weight: 600;
      color: var(--brand-primary);
      line-height: 1.35;
    }

    @media (max-width: 520px) {
      .post-nav { grid-template-columns: 1fr; }
      .post-nav__item--next { text-align: left; }
    }


/* 404-specific styles */
    .error-page {
      min-height: calc(100vh - 70px);
      display: flex;
      align-items: center;
      justify-content: center;
      padding-block: clamp(60px, 10vw, 120px);
      background: var(--brand-page-bg);
    }
    .error-page__inner {
      text-align: center;
      max-width: 580px;
      padding-inline: var(--gutter);
    }
    .error-bee {
      font-size: clamp(4rem, 12vw, 8rem);
      line-height: 1;
      margin-bottom: 1rem;
      display: block;
      animation: beebob 3s ease-in-out infinite;
    }
    @keyframes beebob {
      0%,100% { transform: translateY(0) rotate(-5deg); }
      50%      { transform: translateY(-16px) rotate(5deg); }
    }
    .error-code {
      font-family: var(--font-heading);
      font-size: clamp(5rem, 16vw, 10rem);
      font-weight: 800;
      color: var(--brand-primary);
      line-height: 1;
      letter-spacing: -.04em;
      margin-bottom: .2rem;
      /* Subtle striped texture on the number */
      background: repeating-linear-gradient(
        -45deg,
        var(--brand-primary),
        var(--brand-primary) 6px,
        var(--brand-primary-dark) 6px,
        var(--brand-primary-dark) 12px
      );
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .error-page h1 {
      font-size: clamp(1.4rem, 3vw, 2rem);
      color: var(--brand-text);
      margin-bottom: .75rem;
    }
    .error-page p {
      color: var(--brand-text-subtle);
      font-size: 1rem;
      line-height: 1.75;
      margin-bottom: 2rem;
    }
    .error-actions {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 3rem;
    }
    .error-links {
      display: flex;
      flex-direction: column;
      gap: 0;
      background: var(--brand-bg);
      border: 1px solid var(--brand-border);
      border-radius: var(--radius-md);
      overflow: hidden;
      text-align: left;
    }
    .error-links h4 {
      font-size: .82rem;
      color: var(--brand-text-subtle);
      text-transform: uppercase;
      letter-spacing: .1em;
      padding: 14px 20px 10px;
      border-bottom: 1px solid var(--brand-border);
    }
    .error-links a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 13px 20px;
      font-size: .92rem;
      color: var(--brand-text);
      border-bottom: 1px solid var(--brand-border);
      transition: all var(--t-fast);
      text-decoration: none;
    }
    .error-links a:last-child { border-bottom: none; }
    .error-links a:hover {
      background: var(--brand-primary-light);
      color: var(--brand-primary);
      padding-left: 26px;
    }
    .error-links a span.arrow {
      color: var(--brand-primary);
      font-weight: 700;
      font-size: 1rem;
    }
    .error-links a span.icon { font-size: 1rem; }


/* ── Carousel ───────────────────────────────────────── */
    .carousel {
      position: relative;
      width: 100%;
      overflow: hidden;
      border-radius: var(--radius-lg);
      box-shadow: 0 16px 56px rgba(26,43,30,.18);
      background: var(--brand-text);
      /* Full bleed — break out of container */
      margin-inline: calc(-1 * var(--gutter));
      width: calc(100% + var(--gutter) * 2);
    }

    /* Track holds all slides side by side */
    .carousel__track {
      display: flex;
      transition: transform 700ms cubic-bezier(.4,0,.2,1);
      will-change: transform;
    }

    /* Each slide */
    .carousel__slide {
      flex: 0 0 100%;
      position: relative;
      overflow: hidden;
    }
    .carousel__slide img {
      width: 100%;
      height: clamp(380px, 55vw, 680px);
      object-fit: cover;
      display: block;
      transition: transform 8s ease;
    }
    /* Subtle Ken Burns on active slide */
    .carousel__slide.is-active img {
      transform: scale(1.04);
    }

    /* Gradient overlay — bottom to top */
    .carousel__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(26,43,30,.72) 0%,
        rgba(26,43,30,.18) 45%,
        transparent 100%
      );
      pointer-events: none;
    }

    /* Caption */
    .carousel__caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: clamp(20px, 4vw, 40px) clamp(24px, 5vw, 56px);
      transform: translateY(8px);
      opacity: 0;
      transition: opacity 500ms ease 200ms, transform 500ms ease 200ms;
    }
    .carousel__slide.is-active .carousel__caption {
      opacity: 1;
      transform: translateY(0);
    }
    .carousel__caption-tag {
      display: inline-block;
      padding: .25em .8em;
      background: var(--brand-primary);
      color: #fff;
      border-radius: var(--radius-pill);
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: .6rem;
    }
    .carousel__caption h3 {
      color: #fff;
      font-size: clamp(1rem, 2.5vw, 1.5rem);
      margin-bottom: .3rem;
      text-shadow: 0 2px 8px rgba(0,0,0,.4);
    }
    .carousel__caption p {
      color: rgba(255,255,255,.82);
      font-size: clamp(.78rem, 1.5vw, .92rem);
      line-height: 1.55;
      margin: 0;
      max-width: 560px;
      text-shadow: 0 1px 4px rgba(0,0,0,.3);
    }

    /* Prev / Next buttons */
    .carousel__btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: rgba(255,255,255,.15);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 1.5px solid rgba(255,255,255,.3);
      color: #fff;
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all var(--t-mid);
      z-index: 10;
      line-height: 1;
    }
    .carousel__btn:hover {
      background: var(--brand-primary);
      border-color: var(--brand-primary);
      transform: translateY(-50%) scale(1.08);
    }
    .carousel__btn--prev { left: clamp(12px, 3vw, 28px); }
    .carousel__btn--next { right: clamp(12px, 3vw, 28px); }

    /* Dots */
    .carousel__dots {
      position: absolute;
      bottom: clamp(14px, 2.5vw, 24px);
      right: clamp(24px, 5vw, 56px);
      display: flex;
      gap: 8px;
      align-items: center;
      z-index: 10;
    }
    .carousel__dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,.4);
      border: none;
      cursor: pointer;
      transition: all var(--t-mid);
      padding: 0;
    }
    .carousel__dot.is-active {
      background: var(--brand-primary);
      width: 24px;
      border-radius: var(--radius-pill);
    }
    .carousel__dot:hover:not(.is-active) {
      background: rgba(255,255,255,.75);
    }

    /* Pause indicator */
    .carousel__pause-badge {
      position: absolute;
      top: 16px;
      right: 16px;
      background: rgba(26,43,30,.6);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      border: 1px solid rgba(255,255,255,.2);
      border-radius: var(--radius-pill);
      padding: .3em .85em;
      font-size: .72rem;
      font-weight: 700;
      color: rgba(255,255,255,.85);
      letter-spacing: .06em;
      text-transform: uppercase;
      opacity: 0;
      transition: opacity var(--t-mid);
      pointer-events: none;
      z-index: 10;
    }
    .carousel.is-paused .carousel__pause-badge { opacity: 1; }

    /* Progress bar */
    .carousel__progress {
      position: absolute;
      bottom: 0;
      left: 0;
      height: 3px;
      background: var(--brand-primary);
      width: 0%;
      transition: width linear;
      z-index: 10;
      border-radius: 0 2px 0 0;
    }

/* Contact channel cards */
    .contact-channel {
      background: var(--brand-bg);
      border: 1px solid var(--brand-border);
      border-radius: var(--radius-md);
      padding: 32px 28px;
      text-align: center;
      transition: box-shadow var(--t-mid), transform var(--t-mid);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }
    .contact-channel:hover {
      box-shadow: 0 8px 32px var(--brand-shadow);
      transform: translateY(-3px);
    }
    .contact-channel__icon {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: var(--brand-primary-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      margin-bottom: 4px;
      flex-shrink: 0;
    }
    .contact-channel__icon--green { background: var(--brand-green-light); }
    .contact-channel h3 {
      font-size: 1.05rem;
      margin-bottom: .2rem;
    }
    .contact-channel p {
      font-size: .88rem;
      color: var(--brand-text-subtle);
      line-height: 1.65;
      margin: 0;
    }
    .contact-channel .btn { margin-top: 4px; }

    /* FAQ accordion */
    .faq-item {
      border-bottom: 1px solid var(--brand-border);
    }
    .faq-item:first-child { border-top: 1px solid var(--brand-border); }
    .faq-question {
      width: 100%;
      text-align: left;
      background: none;
      border: none;
      padding: 18px 4px;
      font-family: var(--font-heading);
      font-size: 1rem;
      font-weight: 600;
      color: var(--brand-text);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      transition: color var(--t-fast);
    }
    .faq-question:hover { color: var(--brand-primary); }
    .faq-question .faq-icon {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--brand-primary-light);
      color: var(--brand-primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      font-weight: 700;
      flex-shrink: 0;
      transition: transform var(--t-mid), background var(--t-mid);
      line-height: 1;
    }
    .faq-item.open .faq-question { color: var(--brand-primary); }
    .faq-item.open .faq-icon {
      transform: rotate(45deg);
      background: var(--brand-primary);
      color: #fff;
    }
    .faq-answer {
      display: none;
      padding: 0 4px 18px;
      font-size: .92rem;
      color: var(--brand-text-subtle);
      line-height: 1.75;
    }
    .faq-item.open .faq-answer { display: block; }


:root {
  --brand-primary:      #f29f1d;
  --brand-primary-dark: #d4860e;
  --brand-primary-light:#fdf0d6;
  --brand-green:        #34966d;
  --brand-green-dark:   #286f51;
  --brand-green-light:  #e6f5ef;
  --brand-text:         #1a2b1e;
  --brand-text-subtle:  #5a6b5e;
  --brand-bg:           #ffffff;
  --brand-page-bg:      #f8f7f3;
  --brand-border:       #e8e4d9;
  --brand-shadow:       rgba(26,43,30,.08);
  --font-heading:       'Outfit', Inter, sans-serif;
  --font-body:          'Inter', sans-serif;

  
  --max-width: 1200px;
  --gutter:    clamp(16px, 4vw, 32px);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  
  --t-fast:   180ms ease;
  --t-mid:    300ms ease;
  --t-slow:   500ms cubic-bezier(.4,0,.2,1);
}


*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.72;
  color: var(--brand-text);
  background: var(--brand-page-bg);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--brand-primary); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--brand-primary-dark); }
ul, ol { list-style: none; }
button, input, textarea, select {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}
::selection { background: var(--brand-primary); color: #fff; }


h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--brand-primary);
  line-height: 1.22;
  letter-spacing: -.02em;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
h5 { font-size: .95rem; color: var(--brand-green); font-weight: 600; }
h6 { font-size: .85rem; color: var(--brand-text-subtle); font-weight: 600; }

p { margin-bottom: 1.1em; color: var(--brand-text); }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--brand-text-subtle);
  line-height: 1.8;
  font-weight: 400;
}

.text-primary   { color: var(--brand-primary) !important; }
.text-green     { color: var(--brand-green) !important; }
.text-subtle    { color: var(--brand-text-subtle) !important; }
.text-white     { color: #fff !important; }
.text-center    { text-align: center; }
.text-right     { text-align: right; }
.text-left      { text-align: left; }
.text-uppercase { text-transform: uppercase; letter-spacing: .1em; font-size: .8em; }
.text-bold      { font-weight: 700; }


.overline {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-green);
  margin-bottom: .5rem;
}


.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 820px; }
.container--wide   { max-width: 1440px; }

.section {
  padding-block: clamp(48px, 7vw, 96px);
}
.section--sm  { padding-block: clamp(32px, 4vw, 56px); }
.section--lg  { padding-block: clamp(64px, 10vw, 130px); }
.section--bg  { background: var(--brand-bg); }
.section--alt { background: var(--brand-page-bg); }
.section--primary { background: var(--brand-primary); }
.section--green   { background: var(--brand-green); }
.section--dark    { background: var(--brand-text); }

.section-header {
  margin-bottom: clamp(32px, 5vw, 56px);
}
.section-header--center { text-align: center; }
.section-header h2 { margin-bottom: .4rem; }
.section-header .lead { max-width: 640px; }
.section-header--center .lead { margin-inline: auto; }


.divider {
  width: 48px;
  height: 3px;
  background: var(--brand-primary);
  border-radius: var(--radius-pill);
  margin-block: .75rem;
}
.divider--green { background: var(--brand-green); }
.divider--center { margin-inline: auto; }
.divider--lg { width: 72px; height: 4px; }


.grid {
  display: grid;
  gap: clamp(16px, 3vw, 28px);
}
.grid-2  { grid-template-columns: repeat(2, 1fr); }
.grid-3  { grid-template-columns: repeat(3, 1fr); }
.grid-4  { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }


.layout-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}
.layout-sidebar-left {
  grid-template-columns: 300px 1fr;
}


.flex          { display: flex; }
.flex-center   { display: flex; align-items: center; }
.flex-between  { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap     { flex-wrap: wrap; }
.flex-col      { flex-direction: column; }
.gap-sm        { gap: 8px; }
.gap-md        { gap: 16px; }
.gap-lg        { gap: 28px; }


.mt-xs  { margin-top: 8px; }
.mt-sm  { margin-top: 16px; }
.mt-md  { margin-top: 28px; }
.mt-lg  { margin-top: 48px; }
.mb-xs  { margin-bottom: 8px; }
.mb-sm  { margin-bottom: 16px; }
.mb-md  { margin-bottom: 28px; }
.mb-lg  { margin-bottom: 48px; }


.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: .65em 1.4em;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: all var(--t-mid);
  white-space: nowrap;
  text-decoration: none;
}
.btn--primary {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(242,159,29,.35);
}
.btn--primary:hover {
  background: var(--brand-primary-dark);
  color: #fff;
  box-shadow: 0 6px 22px rgba(242,159,29,.5);
  transform: translateY(-1px);
}
.btn--green {
  background: var(--brand-green);
  color: #fff;
  box-shadow: 0 4px 16px rgba(52,150,109,.28);
}
.btn--green:hover {
  background: var(--brand-green-dark);
  color: #fff;
  transform: translateY(-1px);
}
.btn--outline {
  border: 2px solid var(--brand-primary);
  color: var(--brand-primary);
  background: transparent;
}
.btn--outline:hover {
  background: var(--brand-primary);
  color: #fff;
}
.btn--outline-green {
  border: 2px solid var(--brand-green);
  color: var(--brand-green);
  background: transparent;
}
.btn--outline-green:hover {
  background: var(--brand-green);
  color: #fff;
}
.btn--ghost {
  color: var(--brand-primary);
  background: var(--brand-primary-light);
}
.btn--ghost:hover {
  background: var(--brand-primary);
  color: #fff;
}
.btn--sm  { padding: .45em 1em; font-size: .82rem; }
.btn--lg  { padding: .85em 2em; font-size: 1.05rem; }


.card {
  background: var(--brand-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--brand-border);
  overflow: hidden;
  transition: box-shadow var(--t-mid), transform var(--t-mid);
}
.card:hover {
  box-shadow: 0 8px 32px var(--brand-shadow);
  transform: translateY(-3px);
}
.card__image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.card__image--square { aspect-ratio: 1; }
.card__body   { padding: 20px 24px; }
.card__footer { padding: 14px 24px; border-top: 1px solid var(--brand-border); background: var(--brand-page-bg); }
.card__tag {
  display: inline-block;
  padding: .2em .75em;
  background: var(--brand-primary-light);
  color: var(--brand-primary-dark);
  border-radius: var(--radius-pill);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.card__tag--green {
  background: var(--brand-green-light);
  color: var(--brand-green-dark);
}
.card__meta {
  font-size: .8rem;
  color: var(--brand-text-subtle);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.card h3 { margin-bottom: .4rem; }
.card p   { font-size: .92rem; color: var(--brand-text-subtle); }


.widget {
  background: var(--brand-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--brand-border);
  overflow: hidden;
}
.widget__header {
  padding: 14px 20px;
  background: var(--brand-primary);
  color: #fff;
}
.widget__header h3,
.widget__header h4 {
  color: #fff;
  font-size: 1rem;
  letter-spacing: .02em;
  margin: 0;
}
.widget__header--green { background: var(--brand-green); }
.widget__body { padding: 18px 20px; }
.widget__footer {
  padding: 12px 20px;
  border-top: 1px solid var(--brand-border);
  background: var(--brand-page-bg);
}


.post-list { display: flex; flex-direction: column; gap: 0; }
.post-list__item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid var(--brand-border);
  text-decoration: none;
  transition: opacity var(--t-fast);
}
.post-list__item:last-child { border-bottom: none; padding-bottom: 0; }
.post-list__item:hover { opacity: .8; }
.post-list__thumb {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: var(--brand-page-bg);
  flex-shrink: 0;
}
.post-list__info h5 {
  font-size: .88rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--brand-text);
  line-height: 1.35;
  margin-bottom: 3px;
  transition: color var(--t-fast);
}
.post-list__item:hover .post-list__info h5 { color: var(--brand-primary); }
.post-list__date {
  font-size: .72rem;
  color: var(--brand-text-subtle);
}


.site-header {
  background: var(--brand-bg);
  border-bottom: 1px solid var(--brand-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px var(--brand-shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.site-logo img {
  object-fit: cover;
  max-height: 69px;
  width: 425px;
}
.site-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.site-logo__name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand-primary);
  letter-spacing: -.02em;
}
.site-logo__tagline {
  font-size: .65rem;
  color: var(--brand-green);
  font-weight: 500;
  letter-spacing: .04em;
  margin-top: 2px;
}
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  padding: .45em .9em;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 600;
  color: var(--brand-text);
  transition: all var(--t-fast);
  text-decoration: none;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--brand-primary);
  background: var(--brand-primary-light);
}
.site-nav .btn { margin-left: 8px; }


.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--brand-text);
  border-radius: 2px;
  transition: all var(--t-mid);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.hero {
  background: var(--brand-bg);
  padding-block: clamp(52px, 8vw, 100px);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(242,159,29,.07) 0%, transparent 70%),
              radial-gradient(ellipse 50% 60% at 10% 80%, rgba(52,150,109,.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero__content { position: relative; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: .3em .9em;
  background: var(--brand-green-light);
  color: var(--brand-green);
  border-radius: var(--radius-pill);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.hero h1 { margin-bottom: .6rem; }
.hero__subtitle {
  font-size: clamp(.95rem, 1.8vw, 1.15rem);
  color: var(--brand-text-subtle);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 500px;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26,43,30,.14);
  position: relative;
}
.hero__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.hero__badge {
  position: absolute;
  bottom: 20px;
  left: -16px;
  background: var(--brand-bg);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: 0 6px 24px rgba(26,43,30,.15);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
}
.hero__badge-icon { font-size: 1.5rem; }
.hero__badge-label { font-size: .72rem; color: var(--brand-text-subtle); }
.hero__badge-value { font-size: 1rem; font-weight: 800; color: var(--brand-primary); }


.page-banner {
  background: linear-gradient(135deg, var(--brand-text) 0%, #2a4a2f 100%);
  padding-block: clamp(40px, 6vw, 72px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(242,159,29,.12) 0%, transparent 70%);
}
.page-banner .container { position: relative; }
.page-banner h1 { color: #fff; margin-bottom: .4rem; }
.page-banner p   { color: rgba(255,255,255,.75); font-size: 1.05rem; margin: 0; }


.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: .82rem;
  padding-block: 12px;
  border-bottom: 1px solid var(--brand-border);
  margin-bottom: 32px;
}
.breadcrumbs a { color: var(--brand-text-subtle); }
.breadcrumbs a:hover { color: var(--brand-primary); }
.breadcrumbs__sep { color: var(--brand-border); }
.breadcrumbs__current { color: var(--brand-primary); font-weight: 600; }


.feature-box {
  background: var(--brand-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--brand-border);
  padding: 28px 24px;
  transition: box-shadow var(--t-mid), transform var(--t-mid);
}
.feature-box:hover {
  box-shadow: 0 8px 32px var(--brand-shadow);
  transform: translateY(-3px);
}
.feature-box__icon {
  width: 52px;
  height: 52px;
  background: var(--brand-primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.feature-box__icon--green { background: var(--brand-green-light); }
.feature-box h3 { margin-bottom: .4rem; font-size: 1.05rem; }
.feature-box p  { font-size: .9rem; color: var(--brand-text-subtle); margin: 0; }


.stat-box {
  text-align: center;
  padding: 28px 16px;
}
.stat-box__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-box__label {
  font-size: .88rem;
  color: var(--brand-text-subtle);
  font-weight: 500;
}


.callout {
  border-radius: var(--radius-md);
  padding: 20px 24px;
  border-left: 4px solid var(--brand-primary);
  background: var(--brand-primary-light);
  margin-block: 1.5rem;
}
.callout--green {
  border-color: var(--brand-green);
  background: var(--brand-green-light);
}
.callout--info {
  border-color: #5b9bd5;
  background: #eef4fb;
}
.callout p { font-size: .92rem; margin: 0; }


.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--brand-text);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: .65em 1em;
  border: 1.5px solid var(--brand-border);
  border-radius: var(--radius-sm);
  background: var(--brand-bg);
  color: var(--brand-text);
  font-size: .95rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-control:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(242,159,29,.18);
}
.form-control::placeholder { color: var(--brand-text-subtle); opacity: .7; }
textarea.form-control { resize: vertical; min-height: 120px; }


.table-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--brand-border); }
table { width: 100%; border-collapse: collapse; background: var(--brand-bg); }
thead { background: var(--brand-page-bg); }
th {
  padding: 13px 16px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 700;
  color: var(--brand-text-subtle);
  text-transform: uppercase;
  letter-spacing: .07em;
  border-bottom: 2px solid var(--brand-primary);
}
td {
  padding: 12px 16px;
  font-size: .9rem;
  border-bottom: 1px solid var(--brand-border);
  color: var(--brand-text);
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: var(--brand-primary-light); }


.badge {
  display: inline-block;
  padding: .2em .7em;
  border-radius: var(--radius-pill);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.badge--primary { background: var(--brand-primary); color: #fff; }
.badge--green   { background: var(--brand-green); color: #fff; }
.badge--light   { background: var(--brand-primary-light); color: var(--brand-primary-dark); }
.badge--light-green { background: var(--brand-green-light); color: var(--brand-green-dark); }
.badge--gray    { background: var(--brand-page-bg); color: var(--brand-text-subtle); border: 1px solid var(--brand-border); }


.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-cloud a {
  padding: .3em .85em;
  border-radius: var(--radius-pill);
  background: var(--brand-page-bg);
  border: 1px solid var(--brand-border);
  font-size: .82rem;
  color: var(--brand-text-subtle);
  transition: all var(--t-fast);
}
.tag-cloud a:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,43,30,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-mid);
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__overlay span { color: #fff; font-size: 1.5rem; }


.cta-strip {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px) clamp(24px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
}
.cta-strip h2, .cta-strip h3 { color: #fff; margin-bottom: .4rem; }
.cta-strip p { color: rgba(255,255,255,.85); margin: 0; }
.cta-strip--green {
  background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-dark) 100%);
}
.newsletter-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.newsletter-form .form-control {
  flex: 1;
  min-width: 200px;
  background: rgba(255,255,255,.95);
}
.newsletter-form .btn { flex-shrink: 0; }


.site-footer {
  background: var(--brand-text);
  color: rgba(255,255,255,.75);
  padding-top: clamp(40px, 7vw, 80px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  padding-bottom: clamp(32px, 5vw, 56px);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .site-logo__name { color: var(--brand-primary); font-size: 1.3rem; }
.footer-brand .site-logo__tagline { color: rgba(255,255,255,.5); }
.footer-brand p {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-block: 16px;
}
.footer-col h4 {
  color: #fff;
  font-size: .9rem;
  margin-bottom: 14px;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: .02em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color var(--t-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul a::before {
  content: '›';
  color: var(--brand-primary);
  font-weight: 700;
  font-size: 1rem;
}
.footer-col ul a:hover { color: var(--brand-primary); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 20px;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  margin: 0;
}
.footer-bottom a {
  color: rgba(255,255,255,.45);
  font-size: .8rem;
  gap: 4px;
}
.footer-bottom a:hover { color: var(--brand-primary); }
.footer-legal { display: flex; gap: 16px; }


.social-links { display: flex; gap: 8px; margin-top: 4px; }
.social-links a {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  transition: all var(--t-fast);
  text-decoration: none;
}
.social-links a:hover {
  background: var(--brand-primary);
  color: #fff;
  transform: translateY(-2px);
}


.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.pagination a, .pagination span {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .88rem;
  font-weight: 600;
  font-family: var(--font-heading);
  border: 1.5px solid var(--brand-border);
  color: var(--brand-text-subtle);
  transition: all var(--t-fast);
}
.pagination a:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  background: var(--brand-primary-light);
}
.pagination .active {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
}


.news-list { display: flex; flex-direction: column; gap: 24px; }
.news-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  align-items: start;
  background: var(--brand-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--brand-border);
  overflow: hidden;
  transition: box-shadow var(--t-mid);
}
.news-item:hover { box-shadow: 0 8px 28px var(--brand-shadow); }
.news-item__image { height: 100%; min-height: 130px; object-fit: cover; width: 100%; }
.news-item__body  { padding: 20px 20px 20px 0; }
.news-item h3 a   { color: var(--brand-text); }
.news-item h3 a:hover { color: var(--brand-primary); }
.news-item p      { font-size: .9rem; color: var(--brand-text-subtle); margin-block: .5rem; }


.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.hidden  { display: none !important; }
.block   { display: block; }
.rounded { border-radius: var(--radius-md); }
.shadow  { box-shadow: 0 4px 20px var(--brand-shadow); }
.shadow-lg { box-shadow: 0 12px 40px var(--brand-shadow); }
.border  { border: 1px solid var(--brand-border); }
.bg-white { background: var(--brand-bg); }
.bg-page  { background: var(--brand-page-bg); }
.bg-primary { background: var(--brand-primary); }
.bg-green   { background: var(--brand-green); }
.overflow-hidden { overflow: hidden; }
.w-full  { width: 100%; }


.sticky-sidebar { position: sticky; top: 90px; }


@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up          { animation: fadeUp .6s ease forwards; }
.fade-up--delay-1 { animation-delay: .1s; opacity: 0; }
.fade-up--delay-2 { animation-delay: .2s; opacity: 0; }
.fade-up--delay-3 { animation-delay: .3s; opacity: 0; }
.fade-up--delay-4 { animation-delay: .4s; opacity: 0; }


@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .layout-with-sidebar { grid-template-columns: 1fr 280px; }
}

@media (max-width: 768px) {
  .hero__inner       { grid-template-columns: 1fr; }
  .hero__image       { display: none; }
  .grid-3, .grid-2   { grid-template-columns: 1fr; }
  .layout-with-sidebar,
  .layout-sidebar-left { grid-template-columns: 1fr; }
  .cta-strip         { grid-template-columns: 1fr; }
  .news-item         { grid-template-columns: 1fr; }
  .news-item__image  { width: 100%; height: 180px; }
  .news-item__body   { padding: 16px; }
  .footer-grid       { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom     { flex-direction: column; text-align: center; }
  .site-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0; right: 0;
    background: var(--brand-bg);
    border-bottom: 1px solid var(--brand-border);
    flex-direction: column;
    padding: 16px var(--gutter);
    gap: 4px;
    box-shadow: 0 8px 24px var(--brand-shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { width: 100%; border-radius: var(--radius-sm); padding: .7em 1em; }
  .site-nav .btn { width: 100%; justify-content: center; margin-left: 0; margin-top: 8px; }
  .nav-toggle { display: flex; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form .form-control,
  .newsletter-form .btn { width: 100%; }
  .pagination a, .pagination span { width: 32px; height: 32px; font-size: .8rem; }
}

.bimg{
--w:100%;
--h:240px;
--bg1:#f2f2f2;
--bg2:#e1e1e1;
--bg3:#ededed;
--line:rgba(0,0,0,.06);
--text-color:rgba(0,0,0,.55);
--text-size:22px;
position:relative;
width:var(--w);
height:var(--h);
overflow:hidden;
border-radius:10px;
background:linear-gradient(130deg,var(--bg1),var(--bg2),var(--bg3),var(--bg1));
background-size:300% 300%;
animation:bimg-bg 7s ease-in-out infinite
}
.bimg img{display:none}
.bimg::before{
content:'';
position:absolute;
inset:-50%;
background:repeating-linear-gradient(135deg,transparent 0,transparent 22px,var(--line) 23px,transparent 26px);
animation:bimg-lines 17s linear infinite
}
.bimg::after{
content:attr(data-text);
position:absolute;
inset:0;
display:flex;
align-items:center;
justify-content:center;
font-family:"Spectral SC",serif;
font-style:italic;
font-weight:400;
font-size:var(--text-size);
background:linear-gradient(180deg,rgba(255,255,255,.85),var(--text-color));
-webkit-background-clip:text;
background-clip:text;
color:transparent;
text-shadow:0 1px 2px rgba(0,0,0,.25),0 0 12px rgba(255,255,255,.15);
animation:bimg-text 7s ease-in-out infinite
}
.bimg:hover,
.bimg:hover::before,
.bimg:hover::after{animation-play-state:paused}
@keyframes bimg-bg{
0%{background-position:0% 50%}
50%{background-position:100% 50%}
100%{background-position:0% 50%}
}
@keyframes bimg-lines{
from{transform:translate(0,0)}
to{transform:translate(80px,80px)}
}
@keyframes bimg-text{
0%,100%{transform:translateY(0);opacity:.75}
50%{transform:translateY(-6px);opacity:1}
}

/* <div class="bimg" data-text="Text" style="--w:100%; --h:280px; --bg1:#151515; --bg2:#1f1f1f; --bg3:#2a2a2a; --line:rgba(255,255,255,.06); --text-color:rgba(255,255,255,.45); --text-size:32px;">
  <img />
</div> */