/* :root {
      --sage: #7a9e7e;
      --forest: #2d4a35;
      --lime: #b5d135;
      --cream: #f5f0e8;
      --charcoal: #1a1a1a;
      --warm-white: #fdfaf4;
      --sand: #d4c5a9;
      --muted: #6b7c6e;
    } */

    :root {
      --forest: #173829;
      --forest-deep: #102319;
      --leaf: #3e6b4f;
      --sand: #ECE8DC;
      --sand-deep: #F0EDE8;
      --mist: #FAFAFA;
      --cream: #faf8f2;
      --ink: #1c2620;
      --gold: #8ea23c;
      --forest-c: #2d4a35;
      --cream: #f5f0e8;
      --lime: #b5d135;
      --warm-white: #fdfaf4;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--warm-white);
      color: var(--charcoal);
      overflow-x: hidden;
    }

    /* ── NAVBAR ── */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 1.2rem 0;
      background: rgba(253, 250, 244, .95);
      backdrop-filter: blur(18px);
      box-shadow: 0 1px 0 rgba(0, 0, 0, .07);
    }

    .navbar-brand {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.7rem;
      color: var(--forest) !important;
      letter-spacing: .12em;
      display: flex;
      align-items: center;
      gap: .5rem;
    }

    .navbar-brand svg {
      width: 32px;
      height: 32px;
    }

    .nav-link {
      font-family: 'DM Sans', sans-serif;
      font-size: .82rem;
      font-weight: 500;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--charcoal) !important;
      padding: .4rem 1rem !important;
      position: relative;
      transition: color .3s;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 1rem;
      right: 1rem;
      height: 1.5px;
      background: var(--lime);
      transform: scaleX(0);
      transition: transform .3s;
      transform-origin: left;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
      transform: scaleX(1);
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--forest) !important;
    }

    .btn-nav-cta {
      background: var(--lime);
      color: var(--forest) !important;
      border-radius: 2px;
      font-weight: 700;
      font-size: .78rem;
      letter-spacing: .1em;
      padding: .5rem 1.2rem !important;
      transition: background .3s, transform .2s;
    }

    .btn-nav-cta:hover {
      background: #c8e83c;
      transform: translateY(-1px);
    }

    /* ── PAGE HERO ── */
    .page-hero {
      padding-top: 100px;
      min-height: 340px;
      background: var(--forest);
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .page-hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('https://images.unsplash.com/photo-1545389336-cf090694435e?w=1600&q=80');
      background-size: cover;
      background-position: center 40%;
      filter: brightness(.28) saturate(1.1);
    }

    .page-hero-noise {
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
      pointer-events: none;
    }

    .page-hero-content {
      position: relative;
      z-index: 2;
      padding: 3rem 0 3.5rem;
    }

    .page-breadcrumb {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      font-size: .7rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .45);
      margin-bottom: 1rem;
    }

    .page-breadcrumb a {
      color: rgba(255, 255, 255, .45);
      text-decoration: none;
      transition: color .3s;
    }

    .page-breadcrumb a:hover {
      color: var(--lime);
    }

    .page-breadcrumb i {
      font-size: .6rem;
    }

    .page-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3.5rem, 8vw, 6.5rem);
      line-height: .92;
      color: var(--warm-white);
      letter-spacing: .04em;
    }

    .page-title span {
      color: var(--lime);
    }

    .page-subtitle {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 1.2rem;
      color: rgba(255, 255, 255, .6);
      margin-top: 1rem;
      max-width: 480px;
      line-height: 1.65;
    }

    /* Lime wave bottom */
    .page-hero-wave {
      position: absolute;
      bottom: -1px;
      left: 0;
      right: 0;
      line-height: 0;
    }

    /* ── SECTION COMMONS ── */
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: .6rem;
      font-size: .7rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      font-weight: 600;
      color: var(--sage);
      margin-bottom: .8rem;
    }

    .section-label::before {
      content: '';
      display: block;
      width: 24px;
      height: 1.5px;
      background: var(--lime);
    }

    /* ── CONTACT LAYOUT ── */
    .contact-section {
      padding: 6rem 0 7rem;
      background: var(--warm-white);
    }

    /* ── INFO CARDS ── */
    .info-card {
      background: var(--cream);
      border-radius: 12px;
      padding: 2rem 1.8rem;
      height: 100%;
      position: relative;
      overflow: hidden;
      transition: transform .35s, box-shadow .35s;
      border: 1.5px solid transparent;
    }

    .info-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(0, 0, 0, .09);
      border-color: rgba(181, 209, 53, .4);
    }

    .info-card::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--lime), var(--sage));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .4s;
    }

    .info-card:hover::before {
      transform: scaleX(1);
    }

    .info-icon {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      background: rgba(181, 209, 53, .15);
      border: 1.5px solid rgba(181, 209, 53, .3);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--forest);
      font-size: 1.3rem;
      margin-bottom: 1.2rem;
      transition: background .3s, border-color .3s;
    }

    .info-card:hover .info-icon {
      background: var(--lime);
      border-color: var(--lime);
      color: var(--forest);
    }

    .info-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.2rem;
      letter-spacing: .08em;
      color: var(--forest);
      margin-bottom: .5rem;
    }

    .info-text {
      font-size: .88rem;
      color: var(--muted);
      line-height: 1.7;
    }

    .info-text a {
      color: var(--forest);
      text-decoration: none;
      font-weight: 500;
      transition: color .3s;
    }

    .info-text a:hover {
      color: var(--sage);
    }

    .info-number {
      position: absolute;
      top: 1.2rem;
      right: 1.4rem;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3.5rem;
      color: rgba(45, 74, 53, .05);
      line-height: 1;
      letter-spacing: .05em;
      transition: color .3s;
    }

    .info-card:hover .info-number {
      color: rgba(181, 209, 53, .12);
    }

    /* ── FORM PANEL ── */
    .form-panel {
      background: #fff;
      border-radius: 16px;
      padding: 3rem 2.8rem;
      box-shadow: 0 8px 40px rgba(0, 0, 0, .07);
      border: 1px solid rgba(0, 0, 0, .05);
    }

    .form-panel-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.2rem;
      letter-spacing: .06em;
      color: var(--forest);
      line-height: 1;
      margin-bottom: .5rem;
    }

    .form-panel-sub {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 1rem;
      color: var(--muted);
      margin-bottom: 2rem;
    }

    /* Form fields */
    .field-group {
      margin-bottom: 1.4rem;
    }

    .field-label {
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--forest);
      display: block;
      margin-bottom: .5rem;
    }

    .field-input,
    .field-select,
    .field-textarea {
      width: 100%;
      background: var(--warm-white);
      border: 1.5px solid rgba(0, 0, 0, .1);
      border-radius: 8px;
      padding: .85rem 1.1rem;
      font-family: 'DM Sans', sans-serif;
      font-size: .92rem;
      color: var(--charcoal);
      transition: border-color .3s, box-shadow .3s, background .3s;
      outline: none;
      appearance: none;
      -webkit-appearance: none;
    }

    .field-input:focus,
    .field-select:focus,
    .field-textarea:focus {
      border-color: var(--lime);
      background: #fff;
      box-shadow: 0 0 0 4px rgba(181, 209, 53, .12);
    }

    .field-input::placeholder,
    .field-textarea::placeholder {
      color: rgba(107, 124, 110, .5);
    }

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

    .field-select-wrap {
      position: relative;
    }

    .field-select-wrap::after {
      content: '\F282';
      font-family: 'bootstrap-icons';
      position: absolute;
      right: 1.1rem;
      top: 50%;
      transform: translateY(-50%);
      color: var(--muted);
      pointer-events: none;
      font-size: .85rem;
    }

    /* Topic chips */
    .topic-chips {
      display: flex;
      flex-wrap: wrap;
      gap: .5rem;
      margin-bottom: 1.4rem;
    }

    .topic-chip {
      padding: .4rem 1rem;
      border-radius: 20px;
      border: 1.5px solid rgba(0, 0, 0, .1);
      background: transparent;
      font-size: .75rem;
      font-weight: 500;
      letter-spacing: .05em;
      color: var(--muted);
      cursor: pointer;
      transition: border-color .25s, background .25s, color .25s;
    }

    .topic-chip:hover {
      border-color: var(--sage);
      color: var(--forest);
    }

    .topic-chip.active {
      border-color: var(--lime);
      background: rgba(181, 209, 53, .12);
      color: var(--forest);
      font-weight: 600;
    }

    /* Submit button */
    .btn-submit {
      background: var(--forest);
      color: var(--lime);
      font-weight: 700;
      font-size: .85rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: 1rem 2.5rem;
      border: none;
      border-radius: 8px;
      width: 100%;
      transition: background .3s, transform .25s, box-shadow .3s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .6rem;
      cursor: pointer;
    }

    .btn-submit:hover {
      background: #1a2e1f;
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(45, 74, 53, .3);
    }

    .btn-submit i {
      font-size: 1rem;
      transition: transform .3s;
    }

    .btn-submit:hover i {
      transform: translateX(4px);
    }

    /* Success state */
    .form-success {
      display: none;
      text-align: center;
      padding: 3rem 1rem;
    }

    .success-icon {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: rgba(181, 209, 53, .15);
      border: 2px solid var(--lime);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: var(--forest);
      margin: 0 auto 1.5rem;
      animation: popIn .5s both;
    }

    .success-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2rem;
      color: var(--forest);
      letter-spacing: .08em;
    }

    .success-body {
      color: var(--muted);
      font-size: .92rem;
      margin-top: .5rem;
    }

    /* ── MAP STRIP ── */
    .map-strip {
      background: var(--forest);
      padding: 0;
      overflow: hidden;
    }

    .map-inner {
      display: grid;
      grid-template-columns: 1fr 380px;
      min-height: 380px;
    }

    .map-embed {
      position: relative;
      overflow: hidden;
    }

    .map-embed iframe {
      width: 100%;
      height: 100%;
      min-height: 380px;
      border: 0;
      display: block;
      filter: grayscale(.3) contrast(1.05);
    }

    .map-info {
      background: var(--forest);
      padding: 3rem 2.5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 1.6rem;
    }

    .map-info-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.7rem;
      color: var(--warm-white);
      letter-spacing: .06em;
      line-height: 1.05;
    }

    .map-info-title span {
      color: var(--lime);
    }

    .map-detail {
      display: flex;
      align-items: flex-start;
      gap: .9rem;
    }

    .map-detail-icon {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: rgba(181, 209, 53, .12);
      border: 1px solid rgba(181, 209, 53, .25);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--lime);
      font-size: .9rem;
      flex-shrink: 0;
      margin-top: .1rem;
    }

    .map-detail-label {
      font-size: .65rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .35);
      margin-bottom: .2rem;
    }

    .map-detail-value {
      font-size: .9rem;
      color: rgba(255, 255, 255, .8);
      line-height: 1.55;
    }

    .map-detail-value a {
      color: var(--lime);
      text-decoration: none;
    }

    .map-social {
      display: flex;
      gap: .6rem;
      margin-top: .5rem;
    }

    .map-social a {
      width: 38px;
      height: 38px;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, .12);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, .5);
      font-size: 1rem;
      text-decoration: none;
      transition: border-color .3s, color .3s, background .3s;
    }

    .map-social a:hover {
      border-color: var(--lime);
      color: var(--lime);
      background: rgba(181, 209, 53, .08);
    }

    /* ── FAQ STRIP ── */
    .faq-section {
      padding: 6rem 0;
      background: var(--cream);
    }

    .faq-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.2rem, 4vw, 3.5rem);
      color: var(--forest);
      letter-spacing: .04em;
      line-height: .95;
    }

    .accordion-item {
      background: var(--warm-white);
      border: 1.5px solid rgba(0, 0, 0, .07) !important;
      border-radius: 10px !important;
      margin-bottom: .75rem;
      overflow: hidden;
    }

    .accordion-button {
      background: var(--warm-white) !important;
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      font-size: .95rem;
      color: var(--forest) !important;
      padding: 1.2rem 1.5rem;
      border: none !important;
      box-shadow: none !important;
    }

    .accordion-button::after {
      filter: invert(.4) sepia(1) saturate(3) hue-rotate(65deg);
    }

    .accordion-button:not(.collapsed) {
      color: var(--forest) !important;
      background: rgba(181, 209, 53, .08) !important;
    }

    .accordion-body {
      font-size: .88rem;
      color: var(--muted);
      line-height: 1.75;
      padding: .5rem 1.5rem 1.4rem;
    }

    

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(28px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes popIn {
      from {
        opacity: 0;
        transform: scale(.5);
      }

      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .7s, transform .7s;
    }

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

    .reveal-d1 {
      transition-delay: .1s;
    }

    .reveal-d2 {
      transition-delay: .2s;
    }

    .reveal-d3 {
      transition-delay: .3s;
    }

    ::-webkit-scrollbar {
      width: 6px;
    }

    ::-webkit-scrollbar-track {
      background: var(--cream);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--sage);
      border-radius: 3px;
    }

    @media (max-width: 991px) {
      .map-inner {
        grid-template-columns: 1fr;
      }

      .map-embed iframe {
        min-height: 280px;
      }

      .form-panel {
        padding: 2rem 1.5rem;
      }
    }

    @media (max-width: 767px) {
      .page-title {
        font-size: 3.2rem;
      }
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: .6rem;
      background: rgba(181, 209, 53, .12);
      border: 1px solid rgba(181, 209, 53, .35);
      color: var(--lime);
      font-size: .7rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      font-weight: 600;
      padding: .4rem 1rem;
      border-radius: 2px;
      margin-bottom: 1.5rem;
      animation: fadeUp .8s .1s both;
    }

    .page-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(4rem, 10vw, 9rem);
      line-height: .88;
      color: var(--warm-white);
      letter-spacing: .03em;
      animation: fadeUp .9s .25s both;
    }

    .page-title em {
      font-style: normal;
      color: var(--lime);
      display: block;
    }

    .page-subtitle {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: clamp(1.1rem, 2vw, 1.45rem);
      color: rgba(255, 255, 255, .65);
      margin-top: 1.4rem;
      max-width: 520px;
      line-height: 1.7;
      animation: fadeUp .9s .4s both;
    }

    /* Right-side floating stat box */
    .hero-stat-box {
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(255, 255, 255, .1);
      backdrop-filter: blur(12px);
      border-radius: 12px;
      padding: 2.5rem 2rem;
      animation: slideLeft 1s .3s both;
    }

    .hero-stat-item {
      margin-bottom: 2rem;
    }

    .hero-stat-item:last-child {
      margin-bottom: 0;
    }

    .hero-stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3.2rem;
      color: var(--lime);
      line-height: 1;
      letter-spacing: .04em;
    }

    .hero-stat-label {
      font-size: .72rem;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .5);
      margin-top: .3rem;
    }

    .hero-stat-divider {
      height: 1px;
      background: rgba(255, 255, 255, .08);
      margin: 1.5rem 0;
    }

    .hero-scroll {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: .5rem;
      color: rgba(255, 255, 255, .4);
      font-size: .65rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      animation: fadeUp 1s 1s both;
    }

    .hero-scroll-line {
      width: 1px;
      height: 44px;
      background: linear-gradient(to bottom, rgba(255, 255, 255, .4), transparent);
      animation: scrollPulse 2s infinite;
    }

    /* ── SHARED ── */
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: .6rem;
      font-size: .7rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      font-weight: 600;
      color: var(--sage);
      margin-bottom: .8rem;
    }

    .section-label::before {
      content: '';
      display: block;
      width: 24px;
      height: 1.5px;
      background: var(--lime);
    }

    .section-label.light {
      color: rgba(181, 209, 53, .8);
    }

    .section-label.light::before {
      background: var(--lime);
    }

    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.4rem, 5vw, 4rem);
      letter-spacing: .04em;
      line-height: .95;
      color: var(--forest);
    }

    .section-title.light {
      color: var(--warm-white);
    }

    .section-body {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.12rem;
      line-height: 1.8;
      color: var(--muted);
    }

    /* ── ORIGIN STORY ── */
    .origin-section {
      padding: 7rem 0;
      background: var(--warm-white);
    }

    .origin-img-wrap {
      position: relative;
      height: 560px;
    }

    .origin-img-main {
      position: absolute;
      top: 0;
      left: 0;
      width: 80%;
      height: 430px;
      object-fit: cover;
      border-radius: 8px;
      box-shadow: 0 30px 70px rgba(0, 0, 0, .15);
    }

    .origin-img-accent {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 52%;
      height: 260px;
      object-fit: cover;
      border-radius: 8px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
      border: 4px solid var(--warm-white);
    }

    .origin-year-badge {
      position: absolute;
      top: 50%;
      left: 60%;
      transform: translate(-50%, -50%);
      background: var(--lime);
      color: var(--forest);
      padding: 1.2rem 1.6rem;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 16px 40px rgba(181, 209, 53, .4);
      z-index: 3;
    }

    .origin-year-badge .yr {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.8rem;
      line-height: 1;
      display: block;
    }

    .origin-year-badge small {
      font-size: .62rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
    }

    .origin-pull {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.4rem, 2.5vw, 2rem);
      font-style: italic;
      color: var(--forest);
      line-height: 1.5;
      border-left: 3px solid var(--lime);
      padding-left: 1.5rem;
      margin: 2rem 0;
    }

    /* ── MISSION BAND ── */
    .mission-band {
      background: var(--forest);
      padding: 6rem 0;
      position: relative;
      overflow: hidden;
    }

    .mission-band::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(181, 209, 53, .07) 0%, transparent 70%);
      pointer-events: none;
    }

    .mission-word {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3rem, 6vw, 5.5rem);
      letter-spacing: .04em;
      line-height: .92;
      color: var(--warm-white);
    }

    .mission-word span {
      color: var(--lime);
    }

    .mission-body {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem;
      line-height: 1.82;
      color: rgba(255, 255, 255, .65);
    }

    .mission-pill {
      display: inline-flex;
      align-items: center;
      gap: .6rem;
      border: 1px solid rgba(181, 209, 53, .3);
      border-radius: 4px;
      padding: .6rem 1.2rem;
      font-size: .78rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--lime);
      margin: .3rem .3rem 0 0;
    }

    .mission-pill i {
      font-size: .9rem;
    }

    /* ── TIMELINE ── */
    .timeline-section {
      padding: 7rem 0;
      background: var(--cream);
      overflow: hidden;
    }

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

    .timeline::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      width: 2px;
      background: linear-gradient(to bottom, var(--lime), var(--sage), transparent);
    }

    .timeline-item {
      position: relative;
      padding: 0 0 3.5rem 2.5rem;
    }

    .timeline-item:last-child {
      padding-bottom: 0;
    }

    .timeline-dot {
      position: absolute;
      left: -2rem;
      top: .3rem;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: var(--lime);
      border: 3px solid var(--cream);
      transform: translateX(-50%);
      box-shadow: 0 0 0 4px rgba(181, 209, 53, .2);
    }

    .timeline-year {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1rem;
      letter-spacing: .15em;
      color: var(--lime);
      margin-bottom: .3rem;
    }

    .timeline-event {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.5rem;
      letter-spacing: .05em;
      color: var(--forest);
      line-height: 1.1;
      margin-bottom: .6rem;
    }

    .timeline-desc {
      font-size: .88rem;
      color: var(--muted);
      line-height: 1.7;
      max-width: 400px;
    }

    /* ── TEAM ── */
    .team-section {
      padding: 7rem 0;
      background: var(--warm-white);
    }

    .team-card {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      cursor: pointer;
    }

    .team-img {
      width: 100%;
      height: 380px;
      object-fit: cover;
      display: block;
      transition: transform .6s;
      filter: saturate(.85);
    }

    .team-card:hover .team-img {
      transform: scale(1.05);
      filter: saturate(1.1);
    }

    .team-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10, 25, 15, .88) 0%, transparent 55%);
    }

    .team-info {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 1.8rem 1.6rem;
      transform: translateY(3.5rem);
      transition: transform .4s ease;
    }

    .team-card:hover .team-info {
      transform: translateY(0);
    }

    .team-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.5rem;
      letter-spacing: .06em;
      color: var(--warm-white);
    }

    .team-role {
      font-size: .72rem;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--lime);
      font-weight: 600;
      margin-top: .2rem;
    }

    .team-bio {
      font-size: .82rem;
      color: rgba(255, 255, 255, .7);
      line-height: 1.65;
      margin-top: .8rem;
    }

    .team-social {
      display: flex;
      gap: .5rem;
      margin-top: 1rem;
    }

    .team-social a {
      width: 32px;
      height: 32px;
      border-radius: 6px;
      background: rgba(255, 255, 255, .12);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, .7);
      font-size: .85rem;
      text-decoration: none;
      transition: background .3s, color .3s;
    }

    .team-social a:hover {
      background: var(--lime);
      color: var(--forest);
    }

    /* ── VALUES ── */
    .values-section {
      padding: 7rem 0;
      background: var(--forest);
      position: relative;
      overflow: hidden;
    }

    .values-section::before {
      content: '';
      position: absolute;
      top: -80px;
      left: -80px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(181, 209, 53, .06) 0%, transparent 70%);
    }

    .value-card {
      padding: 2.2rem 1.8rem;
      border: 1.5px solid rgba(255, 255, 255, .07);
      border-radius: 10px;
      height: 100%;
      position: relative;
      overflow: hidden;
      transition: border-color .4s, background .4s, transform .4s;
    }

    .value-card:hover {
      border-color: rgba(181, 209, 53, .35);
      background: rgba(181, 209, 53, .04);
      transform: translateY(-5px);
    }

    .value-icon {
      font-size: 2rem;
      color: var(--lime);
      margin-bottom: 1.2rem;
      display: block;
    }

    .value-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.4rem;
      letter-spacing: .08em;
      color: var(--warm-white);
      margin-bottom: .6rem;
    }

    .value-desc {
      font-size: .85rem;
      color: rgba(255, 255, 255, .55);
      line-height: 1.72;
    }

    .value-num {
      position: absolute;
      bottom: 1rem;
      right: 1.4rem;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 4rem;
      color: rgba(255, 255, 255, .04);
      line-height: 1;
      transition: color .4s;
    }

    .value-card:hover .value-num {
      color: rgba(181, 209, 53, .08);
    }

    /* ── IMPACT NUMBERS ── */
    .impact-section {
      padding: 5rem 0;
      background: var(--lime);
      position: relative;
      overflow: hidden;
    }

    .impact-section::before {
      content: 'IMPACT';
      position: absolute;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 16rem;
      color: rgba(45, 74, 53, .06);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      white-space: nowrap;
      letter-spacing: .1em;
      pointer-events: none;
    }

    .impact-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3rem, 6vw, 5rem);
      color: var(--forest);
      letter-spacing: .04em;
      line-height: 1;
    }

    .impact-label {
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(45, 74, 53, .65);
      margin-top: .5rem;
    }

    .impact-divider {
      width: 1px;
      height: 64px;
      background: rgba(45, 74, 53, .15);
      align-self: center;
    }

    /* ── CTA ── */
    .about-cta {
      padding: 6rem 0;
      background: var(--cream);
    }

    .about-cta-inner {
      background: var(--forest);
      border-radius: 16px;
      padding: 4rem 3.5rem;
      position: relative;
      overflow: hidden;
    }

    .about-cta-inner::after {
      content: '';
      position: absolute;
      top: -60px;
      right: -60px;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: rgba(181, 209, 53, .06);
      pointer-events: none;
    }

    .about-cta-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.2rem, 5vw, 4rem);
      letter-spacing: .05em;
      line-height: .95;
      color: var(--warm-white);
    }

    .about-cta-title span {
      color: var(--lime);
    }

    .btn-lime-cta {
      background: var(--lime);
      color: var(--forest);
      font-weight: 700;
      font-size: .85rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: 1rem 2.4rem;
      border: none;
      border-radius: 6px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      transition: background .3s, transform .3s, box-shadow .3s;
    }

    .btn-lime-cta:hover {
      background: #c8e83c;
      color: var(--forest);
      transform: translateY(-3px);
      box-shadow: 0 14px 35px rgba(181, 209, 53, .35);
    }

    .btn-outline-light-cta {
      border: 1.5px solid rgba(255, 255, 255, .3);
      color: var(--warm-white);
      font-weight: 500;
      font-size: .85rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 1rem 2rem;
      border-radius: 6px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      transition: border-color .3s, color .3s;
    }

    .btn-outline-light-cta:hover {
      border-color: var(--lime);
      color: var(--lime);
    }

    /* blog page */

    /* ── FILTER BAR ── */
    .filter-bar {
      background: var(--warm-white);
      padding: 2rem 0;
      border-bottom: 1px solid rgba(0,0,0,.06);
      position: sticky; top: 72px; z-index: 100;
      backdrop-filter: blur(12px);
    }
    .filter-btn {
      padding: .45rem 1.2rem;
      border-radius: 20px;
      border: 1.5px solid rgba(0,0,0,.1);
      background: transparent;
      font-size: .75rem; font-weight: 600; letter-spacing: .08em;
      text-transform: uppercase; color: var(--muted); cursor: pointer;
      transition: all .25s; white-space: nowrap;
    }
    .filter-btn:hover { border-color: var(--sage); color: var(--forest); }
    .filter-btn.active {
      background: var(--forest); border-color: var(--forest);
      color: var(--lime);
    }
    .search-wrap { position: relative; }
    .search-input {
      background: var(--cream); border: 1.5px solid transparent;
      border-radius: 20px; padding: .45rem 1rem .45rem 2.4rem;
      font-family: 'DM Sans', sans-serif; font-size: .82rem;
      color: var(--charcoal); outline: none; width: 220px;
      transition: border-color .3s, width .4s;
    }
    .search-input:focus { border-color: var(--lime); width: 260px; }
    .search-icon {
      position: absolute; left: .85rem; top: 50%;
      transform: translateY(-50%); color: var(--muted); font-size: .85rem;
      pointer-events: none;
    }

    /* ── SECTION LABEL ── */
    .section-label {
      display: inline-flex; align-items: center; gap: .6rem;
      font-size: .7rem; letter-spacing: .22em; text-transform: uppercase;
      font-weight: 600; color: var(--sage); margin-bottom: .8rem;
    }
    .section-label::before {
      content: ''; display: block; width: 24px; height: 1.5px; background: var(--lime);
    }

    /* ── FEATURED POST ── */
    .blog-section { padding: 5rem 0 3rem; }
    .featured-card {
      position: relative; border-radius: 14px; overflow: hidden;
      cursor: pointer; min-height: 520px; display: flex; align-items: flex-end;
    }
    .featured-bg {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      transition: transform .7s ease; filter: brightness(.75);
    }
    .featured-card:hover .featured-bg { transform: scale(1.04); filter: brightness(.65); }
    .featured-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(10,25,15,.92) 0%, rgba(10,25,15,.2) 50%, transparent 100%);
    }
    .featured-body {
      position: relative; z-index: 2; padding: 3rem;
      width: 100%;
    }
    .post-category {
      display: inline-block;
      background: var(--lime); color: var(--forest);
      font-size: .65rem; font-weight: 700; letter-spacing: .15em;
      text-transform: uppercase; padding: .3rem .8rem;
      border-radius: 2px; margin-bottom: 1rem;
    }
    .post-category.eco    { background: var(--sage); color: #fff; }
    .post-category.guide  { background: #5e7a8b; color: #fff; }
    .post-category.life   { background: #8b6f5e; color: #fff; }
    .post-category.news   { background: #7e5e8b; color: #fff; }
    .featured-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(1.8rem, 4vw, 3rem);
      letter-spacing: .04em; color: var(--warm-white); line-height: 1;
      margin-bottom: 1rem;
    }
    .featured-excerpt {
      font-family: 'Cormorant Garamond', serif; font-style: italic;
      font-size: 1.05rem; color: rgba(255,255,255,.7); line-height: 1.7;
      max-width: 520px; margin-bottom: 1.5rem;
    }
    .post-meta {
      display: flex; align-items: center; gap: 1.2rem;
      flex-wrap: wrap;
    }
    .post-author {
      display: flex; align-items: center; gap: .6rem;
    }
    .post-avatar {
      width: 34px; height: 34px; border-radius: 50%;
      object-fit: cover; border: 2px solid rgba(181,209,53,.5);
    }
    .post-author-name { font-size: .8rem; font-weight: 600; color: var(--warm-white); }
    .post-date { font-size: .75rem; color: rgba(255,255,255,.5); }
    .post-read-time {
      display: flex; align-items: center; gap: .35rem;
      font-size: .75rem; color: rgba(255,255,255,.5);
    }
    .btn-read {
      display: inline-flex; align-items: center; gap: .5rem;
      background: var(--lime); color: var(--forest);
      font-size: .78rem; font-weight: 700; letter-spacing: .1em;
      text-transform: uppercase; padding: .65rem 1.4rem;
      border-radius: 4px; text-decoration: none;
      transition: background .3s, transform .25s; margin-left: auto;
    }
    .btn-read:hover { background: #c8e83c; color: var(--forest); transform: translateY(-2px); }

    /* ── STANDARD CARD ── */
    .blog-card {
      background: var(--cream); border-radius: 10px;
      overflow: hidden; height: 100%;
      transition: transform .35s, box-shadow .35s;
      cursor: pointer;
    }
    .blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.1); }
    .blog-card-img-wrap { overflow: hidden; height: 220px; position: relative; }
    .blog-card-img {
      width: 100%; height: 100%; object-fit: cover;
      display: block; transition: transform .6s;
    }
    .blog-card:hover .blog-card-img { transform: scale(1.06); }
    .blog-card-body { padding: 1.6rem; }
    .blog-card-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.35rem; letter-spacing: .05em;
      color: var(--forest); line-height: 1.1; margin: .6rem 0 .7rem;
    }
    .blog-card-title a {
      text-decoration: none; color: inherit;
      transition: color .3s;
    }
    .blog-card-title a:hover { color: var(--sage); }
    .blog-card-excerpt {
      font-size: .84rem; color: var(--muted); line-height: 1.68;
      margin-bottom: 1.2rem;
    }
    .blog-card-footer {
      display: flex; align-items: center;
      justify-content: space-between; flex-wrap: wrap; gap: .5rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(0,0,0,.06);
    }
    .card-author-name { font-size: .78rem; font-weight: 600; color: var(--forest); }
    .card-date { font-size: .72rem; color: var(--muted); margin-top: .1rem; }
    .card-read-time {
      font-size: .72rem; color: var(--muted);
      display: flex; align-items: center; gap: .3rem;
    }

    /* ── SIDEBAR ── */
    .sidebar-card {
      background: #fff; border-radius: 10px;
      padding: 1.8rem; margin-bottom: 1.5rem;
      border: 1px solid rgba(0,0,0,.06);
    }
    .sidebar-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.15rem; letter-spacing: .08em;
      color: var(--forest); margin-bottom: 1.2rem;
      padding-bottom: .7rem;
      border-bottom: 2px solid var(--lime);
    }
    /* Newsletter sidebar */
    .sidebar-newsletter-img {
      width: 100%; height: 140px; object-fit: cover;
      border-radius: 6px; margin-bottom: 1rem;
      filter: saturate(.9) brightness(.85);
    }
    .sidebar-input {
      width: 100%; background: var(--warm-white);
      border: 1.5px solid rgba(0,0,0,.1); border-radius: 6px;
      padding: .7rem 1rem; font-family: 'DM Sans', sans-serif;
      font-size: .85rem; outline: none; margin-bottom: .7rem;
      transition: border-color .3s;
    }
    .sidebar-input:focus { border-color: var(--lime); }
    .sidebar-btn {
      width: 100%; background: var(--forest); color: var(--lime);
      font-size: .78rem; font-weight: 700; letter-spacing: .1em;
      text-transform: uppercase; padding: .75rem; border: none;
      border-radius: 6px; cursor: pointer;
      transition: background .3s, transform .2s;
    }
    .sidebar-btn:hover { background: #1a2e1f; transform: translateY(-1px); }
    /* Categories */
    .category-item {
      display: flex; justify-content: space-between; align-items: center;
      padding: .6rem 0; border-bottom: 1px solid rgba(0,0,0,.05);
      cursor: pointer; transition: color .25s;
      font-size: .85rem; color: var(--charcoal);
    }
    .category-item:last-child { border-bottom: none; }
    .category-item:hover { color: var(--sage); }
    .category-count {
      background: var(--cream); color: var(--muted);
      font-size: .68rem; font-weight: 700; letter-spacing: .08em;
      padding: .15rem .55rem; border-radius: 10px;
    }
    /* Popular posts */
    .popular-post {
      display: flex; gap: .9rem; margin-bottom: 1.1rem;
      align-items: flex-start; cursor: pointer;
    }
    .popular-post:last-child { margin-bottom: 0; }
    .popular-post-img {
      width: 68px; height: 68px; border-radius: 6px;
      object-fit: cover; flex-shrink: 0;
      transition: transform .3s;
    }
    .popular-post:hover .popular-post-img { transform: scale(1.05); }
    .popular-post-title {
      font-size: .84rem; font-weight: 600; color: var(--forest);
      line-height: 1.35; margin-bottom: .3rem;
      transition: color .3s;
    }
    .popular-post:hover .popular-post-title { color: var(--sage); }
    .popular-post-date { font-size: .72rem; color: var(--muted); }
    /* Tags */
    .tag-cloud { display: flex; flex-wrap: wrap; gap: .4rem; }
    .tag {
      padding: .3rem .85rem; border-radius: 14px;
      border: 1.5px solid rgba(0,0,0,.1);
      font-size: .72rem; font-weight: 500; color: var(--muted);
      cursor: pointer; transition: all .25s;
    }
    .tag:hover { border-color: var(--lime); color: var(--forest); background: rgba(181,209,53,.08); }

    /* ── HORIZONTAL MINI CARD ── */
    .mini-card {
      display: flex; gap: 1.2rem; background: var(--cream);
      border-radius: 10px; overflow: hidden; height: 100%;
      transition: transform .3s, box-shadow .3s; cursor: pointer;
    }
    .mini-card:hover { transform: translateY(-4px); box-shadow: 0 14px 35px rgba(0,0,0,.09); }
    .mini-card-img {
      width: 110px; flex-shrink: 0; object-fit: cover;
      transition: transform .5s;
    }
    .mini-card:hover .mini-card-img { transform: scale(1.06); }
    .mini-card-body { padding: 1.1rem 1.1rem 1.1rem 0; display: flex; flex-direction: column; justify-content: center; }
    .mini-card-title {
      font-family: 'Bebas Neue', sans-serif; font-size: 1.05rem;
      letter-spacing: .05em; color: var(--forest); line-height: 1.15;
      margin: .4rem 0 .5rem;
    }
    .mini-card-excerpt { font-size: .78rem; color: var(--muted); line-height: 1.55; }

    /* ── QUOTE BANNER ── */
    .quote-banner {
      background: var(--forest); padding: 4.5rem 0;
      position: relative; overflow: hidden;
    }
    .quote-banner::before {
      content: '"';
      position: absolute; top: -2rem; left: 3rem;
      font-family: 'Cormorant Garamond', serif; font-size: 20rem;
      color: rgba(181,209,53,.05); line-height: 1; pointer-events: none;
    }
    .quote-text {
      font-family: 'Cormorant Garamond', serif; font-style: italic;
      font-size: clamp(1.4rem, 3vw, 2.2rem); color: var(--warm-white);
      line-height: 1.55; position: relative; z-index: 2;
    }
    .quote-text span { color: var(--lime); }
    .quote-attr {
      font-size: .75rem; letter-spacing: .18em; text-transform: uppercase;
      color: rgba(255,255,255,.4); margin-top: 1.2rem;
      display: flex; align-items: center; gap: .7rem;
    }
    .quote-attr::before {
      content: ''; display: block; width: 28px; height: 1px; background: var(--lime);
    }

    /* ── PAGINATION ── */
    .pagination-wrap { padding: 3rem 0; }
    .page-btn {
      width: 44px; height: 44px; border-radius: 8px;
      border: 1.5px solid rgba(0,0,0,.1); background: transparent;
      font-size: .85rem; font-weight: 600; color: var(--muted);
      cursor: pointer; transition: all .25s;
      display: flex; align-items: center; justify-content: center;
    }
    .page-btn:hover { border-color: var(--forest); color: var(--forest); }
    .page-btn.active { background: var(--forest); border-color: var(--forest); color: var(--lime); }
    .page-btn.arrow { font-size: 1rem; }

    /* end blog page */



    /* mayura reborn page */

    /* ── SHARED SECTION PATTERNS ── */
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: .6rem;
      font-size: .7rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      font-weight: 600;
      color: var(--sage);
      margin-bottom: .8rem;
    }

    .section-label::before {
      content: '';
      display: block;
      width: 24px;
      height: 1.5px;
      background: var(--lime);
    }

    .section-label.light {
      color: rgba(181, 209, 53, .8);
    }

    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.4rem, 5vw, 4rem);
      letter-spacing: .04em;
      line-height: .95;
      color: var(--forest);
    }

    .section-title.light {
      color: var(--warm-white);
    }

    .section-body {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.12rem;
      line-height: 1.8;
      color: var(--muted);
    }

    /* ── STATS STRIP (reusing features-strip pattern) ── */
    .stats-strip {
      background: var(--forest);
      padding: 2.2rem 0;
    }

    .stat-item {
      text-align: center;
    }

    .stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.4rem;
      color: var(--lime);
      line-height: 1;
      letter-spacing: .04em;
    }

    .stat-label {
      font-size: .68rem;
      font-weight: 600;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .5);
      margin-top: .3rem;
    }

    .stat-divider {
      width: 1px;
      height: 52px;
      background: rgba(255, 255, 255, .1);
      align-self: center;
    }

    /* ── INFO CARDS (same as contact page) ── */
    .info-card {
      background: var(--cream);
      border-radius: 6px;
      padding: 2rem 1.8rem;
      height: 100%;
      position: relative;
      overflow: hidden;
      transition: transform .35s, box-shadow .35s;
      border: 1.5px solid transparent;
    }

    .info-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(0, 0, 0, .09);
      border-color: rgba(181, 209, 53, .4);
    }

    .info-card::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--lime), var(--sage));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .4s;
    }

    .info-card:hover::before {
      transform: scaleX(1);
    }

    .info-icon {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      background: rgba(181, 209, 53, .15);
      border: 1.5px solid rgba(181, 209, 53, .3);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--forest);
      font-size: 1.3rem;
      margin-bottom: 1.2rem;
      transition: background .3s, border-color .3s;
    }

    .info-card:hover .info-icon {
      background: var(--lime);
      border-color: var(--lime);
    }

    .info-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.2rem;
      letter-spacing: .08em;
      color: var(--forest);
      margin-bottom: .5rem;
    }

    .info-text {
      font-size: .88rem;
      color: var(--muted);
      line-height: 1.7;
    }

    .info-number {
      position: absolute;
      top: 1.2rem;
      right: 1.4rem;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3.5rem;
      color: rgba(45, 74, 53, .05);
      line-height: 1;
      transition: color .3s;
    }

    .info-card:hover .info-number {
      color: rgba(181, 209, 53, .12);
    }

    /* ── WHY SECTION ── */
    .why-section {
      padding: 7rem 0;
      background: var(--warm-white);
    }

    .pull-quote {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: clamp(1.2rem, 2vw, 1.5rem);
      color: var(--forest);
      line-height: 1.6;
      border-left: 3px solid var(--lime);
      padding-left: 1.5rem;
      margin: 2rem 0;
    }

    .pull-quote footer {
      font-family: 'DM Sans', sans-serif;
      font-size: .72rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--sage);
      margin-top: .6rem;
    }

    .fact-row {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1.3rem 1.5rem;
      background: var(--cream);
      border-radius: 6px;
      margin-bottom: .75rem;
      border: 1.5px solid transparent;
      transition: border-color .3s, transform .3s;
    }

    .fact-row:hover {
      border-color: rgba(181, 209, 53, .4);
      transform: translateX(5px);
    }

    .fact-icon-sm {
      width: 42px;
      height: 42px;
      border-radius: 8px;
      flex-shrink: 0;
      background: rgba(181, 209, 53, .15);
      border: 1.5px solid rgba(181, 209, 53, .3);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--forest);
      font-size: 1.1rem;
      transition: background .3s;
    }

    .fact-row:hover .fact-icon-sm {
      background: var(--lime);
    }

    .fact-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.4rem;
      color: var(--forest);
      letter-spacing: .04em;
      line-height: 1;
    }

    .fact-desc {
      font-size: .82rem;
      color: var(--muted);
      line-height: 1.55;
      margin-top: .15rem;
    }

    /* ── PROCESS SECTION (dark, like eco section) ── */
    .process-section {
      padding: 7rem 0;
      background: var(--forest);
      position: relative;
      overflow: hidden;
    }

    .process-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(181, 209, 53, .07) 0%, transparent 70%);
      pointer-events: none;
    }

    .step-card {
      padding: 2rem 1.8rem;
      border: 1.5px solid rgba(255, 255, 255, .08);
      border-radius: 8px;
      height: 100%;
      position: relative;
      overflow: hidden;
      transition: border-color .4s, background .4s, transform .4s;
    }

    .step-card:hover {
      border-color: rgba(181, 209, 53, .35);
      background: rgba(181, 209, 53, .04);
      transform: translateY(-5px);
    }

    .step-num {
      position: absolute;
      top: .8rem;
      right: 1.2rem;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 4.5rem;
      color: rgba(255, 255, 255, .04);
      line-height: 1;
      transition: color .4s;
    }

    .step-card:hover .step-num {
      color: rgba(181, 209, 53, .1);
    }

    .step-icon {
      width: 50px;
      height: 50px;
      border-radius: 10px;
      background: rgba(181, 209, 53, .12);
      border: 1.5px solid rgba(181, 209, 53, .25);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--lime);
      font-size: 1.3rem;
      margin-bottom: 1.1rem;
      transition: background .3s, color .3s;
    }

    .step-card:hover .step-icon {
      background: var(--lime);
      color: var(--forest);
      border-color: var(--lime);
    }

    .step-label {
      font-size: .62rem;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--lime);
      margin-bottom: .3rem;
      opacity: .7;
    }

    .step-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.55rem;
      letter-spacing: .06em;
      color: var(--warm-white);
      line-height: 1;
      margin-bottom: .7rem;
    }

    .step-desc {
      font-size: .84rem;
      color: rgba(255, 255, 255, .5);
      line-height: 1.72;
    }

    /* ── MAT CARDS (same as product cards) ── */
    .mats-section {
      padding: 7rem 0;
      background: var(--cream);
    }

    .product-card {
      background: var(--warm-white);
      border-radius: 6px;
      overflow: hidden;
      position: relative;
      transition: transform .4s, box-shadow .4s;
      cursor: pointer;
    }

    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 60px rgba(0, 0, 0, .12);
    }

    .product-card-img-wrap {
      overflow: hidden;
    }

    .product-card-img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      display: block;
      transition: transform .6s;
    }

    .product-card:hover .product-card-img {
      transform: scale(1.04);
    }

    .product-tag {
      position: absolute;
      top: 1.2rem;
      left: 1.2rem;
      background: var(--lime);
      color: var(--forest);
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .15em;
      text-transform: uppercase;
      padding: .3rem .75rem;
      border-radius: 2px;
    }

    .product-tag.sage {
      background: var(--sage);
      color: #fff;
    }

    .product-card-body {
      padding: 1.6rem;
    }

    .product-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.5rem;
      letter-spacing: .06em;
      color: var(--forest);
    }

    .product-desc {
      font-size: .85rem;
      color: var(--muted);
      margin: .4rem 0 1rem;
      line-height: 1.6;
    }

    .product-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-weight: 600;
      color: var(--forest);
    }

    .product-price span {
      font-size: .85rem;
      font-family: 'DM Sans', sans-serif;
      color: var(--muted);
    }

    .btn-product {
      background: transparent;
      border: 1.5px solid var(--forest);
      color: var(--forest);
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: .55rem 1.4rem;
      border-radius: 2px;
      transition: background .3s, color .3s;
      text-decoration: none;
    }

    .btn-product:hover {
      background: var(--forest);
      color: var(--warm-white);
    }

    .recycled-badge {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      background: rgba(181, 209, 53, .12);
      color: var(--forest);
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: .3rem .75rem;
      border-radius: 2px;
      border: 1px solid rgba(181, 209, 53, .3);
      margin-bottom: .8rem;
    }

    /* ── FORM PANEL (same as contact page) ── */
    .collect-section {
      padding: 7rem 0;
      background: var(--warm-white);
    }

    .form-panel {
      background: #fff;
      border-radius: 8px;
      padding: 3rem 2.8rem;
      box-shadow: 0 8px 40px rgba(0, 0, 0, .07);
      border: 1px solid rgba(0, 0, 0, .05);
    }

    .form-panel-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.2rem;
      letter-spacing: .06em;
      color: var(--forest);
      line-height: 1;
      margin-bottom: .4rem;
    }

    .form-panel-sub {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 1rem;
      color: var(--muted);
      margin-bottom: 2rem;
    }

    .field-group {
      margin-bottom: 1.4rem;
    }

    .field-label {
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--forest);
      display: block;
      margin-bottom: .5rem;
    }

    .field-input,
    .field-select,
    .field-textarea {
      width: 100%;
      background: var(--warm-white);
      border: 1.5px solid rgba(0, 0, 0, .1);
      border-radius: 6px;
      padding: .85rem 1.1rem;
      font-family: 'DM Sans', sans-serif;
      font-size: .92rem;
      color: var(--charcoal);
      transition: border-color .3s, box-shadow .3s;
      outline: none;
      appearance: none;
    }

    .field-input:focus,
    .field-select:focus,
    .field-textarea:focus {
      border-color: var(--lime);
      box-shadow: 0 0 0 4px rgba(181, 209, 53, .12);
    }

    .field-input::placeholder,
    .field-textarea::placeholder {
      color: rgba(107, 124, 110, .5);
    }

    .field-textarea {
      resize: vertical;
      min-height: 120px;
    }

    .field-select-wrap {
      position: relative;
    }

    .field-select-wrap::after {
      content: '\F282';
      font-family: 'bootstrap-icons';
      position: absolute;
      right: 1.1rem;
      top: 50%;
      transform: translateY(-50%);
      color: var(--muted);
      pointer-events: none;
      font-size: .85rem;
    }

    .btn-submit {
      background: var(--forest);
      color: var(--lime);
      font-weight: 700;
      font-size: .85rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: 1rem 2.5rem;
      border: none;
      border-radius: 6px;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .6rem;
      cursor: pointer;
      transition: background .3s, transform .25s, box-shadow .3s;
    }

    .btn-submit:hover {
      background: #1a2e1f;
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(45, 74, 53, .3);
    }

    .btn-submit i {
      transition: transform .3s;
    }

    .btn-submit:hover i {
      transform: translateX(4px);
    }

    .form-success {
      display: none;
      text-align: center;
      padding: 3rem 1rem;
    }

    .success-icon {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: rgba(181, 209, 53, .15);
      border: 2px solid var(--lime);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: var(--forest);
      margin: 0 auto 1.5rem;
      animation: popIn .5s both;
    }

    .success-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2rem;
      color: var(--forest);
      letter-spacing: .08em;
    }

    .success-body {
      color: var(--muted);
      font-size: .92rem;
      margin-top: .5rem;
      line-height: 1.65;
    }

    /* ── PICKUP POINTS (same as map-detail pattern) ── */
    .pickup-item {
      display: flex;
      align-items: flex-start;
      gap: .9rem;
      padding: 1.3rem 1.5rem;
      background: var(--cream);
      border-radius: 6px;
      margin-bottom: .75rem;
      border: 1.5px solid transparent;
      transition: border-color .3s;
    }

    .pickup-item:hover {
      border-color: rgba(181, 209, 53, .4);
    }

    .pickup-icon-wrap {
      width: 40px;
      height: 40px;
      border-radius: 8px;
      flex-shrink: 0;
      background: rgba(181, 209, 53, .15);
      border: 1px solid rgba(181, 209, 53, .3);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--forest);
      font-size: .95rem;
    }

    .pickup-title {
      font-weight: 700;
      font-size: .88rem;
      color: var(--forest);
      margin-bottom: .2rem;
    }

    .pickup-desc {
      font-size: .8rem;
      color: var(--muted);
      line-height: 1.6;
    }

    /* ── TESTIMONIALS (same as main site) ── */
    .testimonials-section {
      padding: 7rem 0;
      background: var(--cream);
    }

    .testimonial-card {
      background: var(--warm-white);
      border-radius: 6px;
      padding: 2.2rem;
      height: 100%;
      border-left: 3px solid var(--lime);
      box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
      transition: transform .3s, box-shadow .3s;
    }

    .testimonial-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(0, 0, 0, .11);
    }

    .testimonial-stars {
      color: var(--lime);
      margin-bottom: 1rem;
      font-size: .9rem;
    }

    .testimonial-quote-icon {
      font-size: 3rem;
      line-height: 1;
      color: var(--lime);
      opacity: .25;
      font-family: 'Cormorant Garamond', serif;
      margin-bottom: -.4rem;
    }

    .testimonial-text {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 1.1rem;
      color: var(--charcoal);
      line-height: 1.8;
      margin-bottom: 1.4rem;
    }

    .testimonial-footer {
      display: flex;
      align-items: center;
      gap: .9rem;
    }

    .testimonial-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--sage);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1rem;
      color: var(--warm-white);
      flex-shrink: 0;
    }

    .testimonial-author {
      font-weight: 700;
      font-size: .82rem;
      color: var(--forest);
    }

    .testimonial-location {
      font-size: .72rem;
      color: var(--muted);
      letter-spacing: .06em;
      margin-top: .1rem;
    }

    /* ── FAQ (same as contact page) ── */
    .faq-section {
      padding: 6rem 0;
      background: var(--warm-white);
    }

    .accordion-item {
      background: var(--cream) !important;
      border: 1.5px solid rgba(0, 0, 0, .07) !important;
      border-radius: 8px !important;
      margin-bottom: .75rem;
      overflow: hidden;
    }

    .accordion-button {
      background: var(--cream) !important;
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      font-size: .95rem;
      color: var(--forest) !important;
      padding: 1.2rem 1.5rem;
      border: none !important;
      box-shadow: none !important;
    }

    .accordion-button::after {
      filter: invert(.4) sepia(1) saturate(3) hue-rotate(65deg);
    }

    .accordion-button:not(.collapsed) {
      color: var(--forest) !important;
      background: rgba(181, 209, 53, .08) !important;
    }

    .accordion-body {
      font-size: .88rem;
      color: var(--muted);
      line-height: 1.75;
      padding: .5rem 1.5rem 1.4rem;
    }

    /* ── CTA BANNER (same as main site) ── */
    .cta-section {
      padding: 0;
      background: var(--lime);
      position: relative;
      overflow: hidden;
      min-height: 380px;
      display: flex;
      align-items: center;
    }

    .cta-bg-image {
      position: absolute;
      inset: 0;
      background-image: url('https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?w=1600&q=85');
      background-size: cover;
      background-position: center 30%;
      opacity: .18;
      mix-blend-mode: multiply;
    }

    .cta-lime-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(100deg, var(--lime) 38%, rgba(181, 209, 53, .75) 65%, rgba(181, 209, 53, .4) 100%);
      pointer-events: none;
    }

    .cta-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.5rem, 6vw, 5rem);
      color: var(--forest);
      letter-spacing: .05em;
      line-height: .95;
    }

    .cta-body {
      color: rgba(45, 74, 53, .7);
      font-size: 1rem;
      line-height: 1.7;
      max-width: 460px;
    }

    .btn-dark-cta {
      background: var(--forest);
      color: var(--lime);
      font-weight: 700;
      font-size: .85rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: 1rem 2.5rem;
      border: none;
      border-radius: 2px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      transition: background .3s, transform .3s, box-shadow .3s;
    }

    .btn-dark-cta:hover {
      background: #1a2e1f;
      transform: translateY(-3px);
      box-shadow: 0 14px 35px rgba(45, 74, 53, .35);
      color: var(--lime);
    }

    /* end mayura reborn */