
    :root {
      --forest: #017334;
      --sage: #017334;
      --mint: #d8e6da;
      --sky: #017334;
      --sky-l: #ffffff;
      --ls: #ffffff;
      --ls2: #ffffff;
      --ls3: #ffffff;
      --ls4: #d8e6da;
      --cream: #ffffff;
      --charcoal: #017334;
      --mid: #017334;
      --light: #017334;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--ls);
      color: var(--charcoal);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 200;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.9rem 4rem;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid #d8e6da;
      animation: slideDown 0.7s ease;
      transition: box-shadow 0.3s;
    }

    nav.scrolled {
      box-shadow: 0 4px 24px rgba(45, 80, 22, 0.14);
    }

    @keyframes slideDown {
      from {
        transform: translateY(-100%);
        opacity: 0;
      }

      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 1rem;
      color: var(--forest);
      text-decoration: none;
    }

    .nav-logo .lm {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, var(--forest), var(--sage));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      transition: transform 0.4s;
    }

    .nav-logo:hover .lm {
      transform: rotate(20deg);
    }

    .nav-links {
      display: flex;
      gap: 2.2rem;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--mid);
      font-size: 0.88rem;
      font-weight: 500;
      transition: color 0.3s;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--sage);
      transform: scaleX(0);
      transition: transform 0.3s;
    }

    .nav-links a:hover {
      color: var(--forest);
    }

    .nav-links a:hover::after {
      transform: scaleX(1);
    }

    .nav-cta {
      background: var(--forest);
      color: white;
      padding: 0.55rem 1.4rem;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s;
      box-shadow: 0 4px 16px rgba(45, 80, 22, 0.28);
    }

    .nav-cta:hover {
      background: var(--sage);
      transform: translateY(-2px);
    }

    /* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
      overflow: hidden;
      background: #ffffff;
    }

    /* Animated blobs */
    .hb {
      position: absolute;
      border-radius: 50%;
      filter: blur(72px);
      pointer-events: none;
    }

    .hb1 {
      width: 540px;
      height: 540px;
      background: radial-gradient(circle, rgba(107, 143, 71, 0.32), transparent);
      top: -130px;
      left: -90px;
      animation: blobA 9s ease-in-out infinite;
    }

    .hb2 {
      width: 420px;
      height: 420px;
      background: radial-gradient(circle, rgba(74, 144, 196, 0.25), transparent);
      top: 38%;
      right: -110px;
      animation: blobB 12s ease-in-out infinite;
    }

    .hb3 {
      width: 320px;
      height: 320px;
      background: radial-gradient(circle, rgba(168, 201, 127, 0.38), transparent);
      bottom: -70px;
      left: 38%;
      animation: blobC 8s ease-in-out infinite;
    }

    @keyframes blobA {

      0%,
      100% {
        transform: translate(0, 0) scale(1);
      }

      40% {
        transform: translate(38px, -28px) scale(1.07);
      }

      70% {
        transform: translate(-18px, 22px) scale(0.95);
      }
    }

    @keyframes blobB {

      0%,
      100% {
        transform: translate(0, 0) scale(1);
      }

      50% {
        transform: translate(-32px, -38px) scale(1.1);
      }
    }

    @keyframes blobC {

      0%,
      100% {
        transform: translate(0, 0);
      }

      50% {
        transform: translate(22px, -18px);
      }
    }

    /* Grid overlay */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(107, 143, 71, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(107, 143, 71, 0.04) 1px, transparent 1px);
      background-size: 55px 55px;
      animation: gridDrift 22s linear infinite;
      z-index: 0;
    }

    @keyframes gridDrift {
      from {
        background-position: 0 0;
      }

      to {
        background-position: 55px 55px;
      }
    }

    /* ── HERO LEFT ── */
    .hero-left {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 9rem 3rem 5rem 6rem;
    }

    /* Trust badges strip */
    .hero-badges {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      margin-bottom: 1.8rem;
      animation: fadeUp 0.8s ease 0.2s both;
    }

    .hbadge {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      width: fit-content;
      padding: 0.45rem 1rem 0.45rem 0.6rem;
      border-radius: 50px;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.04em;
    }

    .hbadge-pvt {
      background: linear-gradient(135deg, var(--forest), var(--sage));
      color: white;
    }

    .hbadge-wide {
      background: var(--ls3);
      color: var(--forest);
      border: 1px solid rgba(107, 143, 71, 0.3);
    }

    .hbadge-ico {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
    }

    .hbadge-pvt .hbadge-ico {
      background: rgba(255, 255, 255, 0.2);
    }

    .hbadge-wide .hbadge-ico {
      background: rgba(107, 143, 71, 0.18);
    }

    .hero-h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.8rem, 4.5vw, 4.2rem);
      font-weight: 900;
      line-height: 1.07;
      color: var(--charcoal);
      animation: fadeUp 0.8s ease 0.35s both;
    }

    .hero-h1 em {
      font-style: italic;
      color: var(--sage);
    }

    .hero-h1 .sky {
      color: var(--sky);
    }

    .hero-sub {
      margin-top: 1.4rem;
      font-size: 1rem;
      color: var(--mid);
      line-height: 1.78;
      max-width: 460px;
      animation: fadeUp 0.8s ease 0.5s both;
    }

    /* Highlight tags row */
    .hero-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.55rem;
      margin-top: 1.6rem;
      animation: fadeUp 0.8s ease 0.65s both;
    }

    .htag {
      background: var(--ls3);
      border: 1px solid rgba(107, 143, 71, 0.25);
      color: var(--forest);
      padding: 0.35rem 0.85rem;
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: 600;
      transition: all 0.3s;
    }

    .htag:hover {
      background: var(--sage);
      color: white;
      transform: translateY(-2px);
    }

    /* CTA — single centered button with pulse */
    .hero-cta {
      margin-top: 2rem;
      animation: fadeUp 0.8s ease 0.8s both;
    }

    .cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: linear-gradient(135deg, var(--forest), var(--sage));
      color: white;
      padding: 1rem 2.2rem;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1rem;
      text-decoration: none;
      box-shadow: 0 8px 28px rgba(45, 80, 22, 0.38);
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }

    .cta-btn::before {
      content: '';
      position: absolute;
      inset: -2px;
      border-radius: 52px;
      background: linear-gradient(135deg, var(--mint), var(--sage));
      z-index: -1;
      animation: ctaGlow 2.5s ease-in-out infinite;
      opacity: 0;
    }

    @keyframes ctaGlow {

      0%,
      100% {
        opacity: 0;
        transform: scale(1);
      }

      50% {
        opacity: 0.6;
        transform: scale(1.04);
      }
    }

    .cta-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 36px rgba(45, 80, 22, 0.48);
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(26px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ── HERO RIGHT — Slider fills full right half ── */
    .hero-right {
      position: relative;
      z-index: 2;
      overflow: hidden;
    }

    .slider-wrap {
      position: absolute;
      inset: 0;
    }

    .slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1.3s ease, transform 1.3s ease;
      transform: scale(1.05);
    }

    .slide.active {
      opacity: 1;
      transform: scale(1);
    }

    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .slide-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(232, 242, 220, 0.55) 0%, transparent 45%, transparent 65%, rgba(45, 80, 22, 0.28) 100%);
    }

    .slide-caption {
      position: absolute;
      bottom: 2rem;
      left: 1.5rem;
      background: rgba(45, 80, 22, 0.82);
      backdrop-filter: blur(10px);
      color: white;
      border-radius: 12px;
      padding: 0.65rem 1.15rem;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.03em;
      transform: translateY(16px);
      opacity: 0;
      transition: all 0.6s ease 0.5s;
    }

    .slide.active .slide-caption {
      transform: translateY(0);
      opacity: 1;
    }

    /* Slider controls */
    .slider-dots {
      position: absolute;
      bottom: 1.5rem;
      right: 1.5rem;
      z-index: 10;
      display: flex;
      gap: 0.5rem;
    }

    .sd {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.4);
      cursor: pointer;
      transition: all 0.35s;
    }

    .sd.active {
      background: var(--mint);
      width: 24px;
      border-radius: 4px;
    }

    .slider-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: none;
      cursor: pointer;
      background: rgba(232, 242, 220, 0.22);
      backdrop-filter: blur(6px);
      color: white;
      font-size: 0.85rem;
      transition: all 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .slider-arrow:hover {
      background: rgba(45, 80, 22, 0.72);
      transform: translateY(-50%) scale(1.1);
    }

    .sa-l {
      left: 0.8rem;
    }

    .sa-r {
      right: 0.8rem;
    }

    /* Floating chips */
    .info-chip {
      position: absolute;
      z-index: 5;
      background: rgba(212, 228, 190, 0.94);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(107, 143, 71, 0.3);
      border-radius: 16px;
      padding: 0.72rem 1rem;
      box-shadow: 0 8px 26px rgba(0, 0, 0, 0.12);
      animation: floatBob 5s ease-in-out infinite;
    }

    .ic1 {
      top: 10%;
      right: 6%;
      animation-delay: 0s;
    }

    .ic2 {
      bottom: 16%;
      left: 4%;
      animation-delay: 2.4s;
    }

    .ic3 {
      top: 50%;
      right: 4%;
      animation-delay: 4.1s;
    }

    @keyframes floatBob {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-11px);
      }
    }

    .ic-num {
      font-family: 'Playfair Display', serif;
      font-size: 1.55rem;
      font-weight: 900;
      color: var(--forest);
      display: block;
      line-height: 1;
    }

    .ic-lbl {
      font-size: 0.67rem;
      color: var(--light);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-top: 0.15rem;
    }

    /* ── SECTION COMMON ── */
    section {
      padding: 5.5rem 0;
    }

    .container {
      max-width: 1220px;
      margin: 0 auto;
      padding: 0 4rem;
    }

    .section-label {
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--sage);
      font-weight: 700;
      margin-bottom: 0.7rem;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.9rem, 3.5vw, 2.8rem);
      font-weight: 800;
      line-height: 1.15;
    }

    .section-title .acc {
      color: var(--sage);
    }

    .reveal {
      opacity: 0;
      transform: translateY(34px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── ABOUT / SALISBURY DIFFERENCE ── */
    .about {
      background: var(--cream);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }

    /* Left — image stack */
    .about-img-wrap {
      position: relative;
    }

    .about-main-img {
      width: 100%;
      height: 300px;
      border-radius: 24px;
      object-fit: cover;
      display: block;
      box-shadow: 0 20px 60px rgba(45, 80, 22, 0.16);
    }

    .about-thumb {
      position: absolute;
      bottom: -22px;
      right: -22px;
      width: 155px;
      height: 135px;
      border-radius: 18px;
      object-fit: cover;
      border: 4px solid var(--ls);
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
    }

    .about-badge {
      position: absolute;
      top: 20px;
      left: 20px;
      background: var(--forest);
      color: white;
      border-radius: 14px;
      padding: 1rem 1.4rem;
      text-align: center;
      box-shadow: 0 6px 22px rgba(45, 80, 22, 0.36);
    }

    .ab-big {
      font-family: 'Playfair Display', serif;
      font-size: 1.9rem;
      font-weight: 900;
      display: block;
    }

    .ab-sm {
      font-size: 0.72rem;
      opacity: 0.82;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    /* Right — story + stat cards + pillars */
    .about-text p {
      color: var(--mid);
      line-height: 1.82;
      margin-top: 1.2rem;
      font-size: 0.97rem;
    }

    /* Stat cards */
    .stat-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.75rem;
      margin-top: 1.4rem;
    }

    .stat-card {
      background: linear-gradient(135deg, var(--forest), var(--sage));
      border-radius: 14px;
      padding: 0.9rem 0.8rem;
      text-align: center;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s;
    }

    .stat-card::before {
      content: '';
      position: absolute;
      top: -30px;
      right: -20px;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.07);
    }

    .stat-card:hover {
      transform: translateY(-4px);
    }

    .sc-num {
      font-family: 'Playfair Display', serif;
      font-size: 1.75rem;
      font-weight: 900;
      color: white;
      display: block;
    }

    .sc-lbl {
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.78);
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-top: 0.2rem;
    }

    /* Pillars */
    .pillars {
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
      margin-top: 1.2rem;
    }

    .pillar {
      display: flex;
      align-items: center;
      gap: 0.9rem;
      background: var(--ls2);
      border-radius: 12px;
      padding: 0.85rem 1rem;
      transition: all 0.3s;
      border-left: 4px solid var(--sage);
    }

    .pillar:hover {
      transform: translateX(6px);
      background: var(--ls3);
    }

    .pillar i {
      color: var(--sage);
      font-size: 0.95rem;
      width: 20px;
      flex-shrink: 0;
    }

    .ptxt {
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--charcoal);
    }

    /* Feat items */
    .feat-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
      margin-top: 1.2rem;
    }

    .feat {
      background: var(--ls2);
      border-radius: 14px;
      padding: 1rem;
      display: flex;
      gap: 0.75rem;
      align-items: flex-start;
      transition: all 0.3s;
      border: 1px solid rgba(107, 143, 71, 0.12);
    }

    .feat:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 26px rgba(45, 80, 22, 0.1);
    }

    .fi {
      width: 34px;
      height: 34px;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--sage), var(--mint));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.95rem;
      flex-shrink: 0;
    }

    .ft {
      font-size: 0.83rem;
      font-weight: 600;
      color: var(--charcoal);
    }

    .fs {
      font-size: 0.74rem;
      color: var(--light);
      margin-top: 0.2rem;
    }

    /* ── SERVICES 3×3 ── */
    .services {
      background: var(--ls);
    }

    .svc-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.4rem;
      margin-top: 3rem;
    }

    .svc-card {
      background-color: var(--ls3);
      background-size: cover;
      background-position: center;
      border-radius: 22px;
      border: 1px solid rgba(107, 143, 71, 0.16);
      transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      min-height: 160px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Dark overlay — fades in on hover */
    .svc-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, rgba(45, 80, 22, 0.0) 0%, rgba(30, 55, 12, 0.0) 100%);
      transition: background 0.45s ease;
      z-index: 1;
    }

    .svc-card:hover::after {
      background: linear-gradient(160deg, rgba(45, 80, 22, 0.70) 0%, rgba(30, 55, 12, 0.88) 100%);
    }

    .svc-card:hover {
      transform: translateY(-7px);
      box-shadow: 0 22px 60px rgba(45, 80, 22, 0.32);
      border-color: transparent;
    }

    /* Image layer inside each card */
    .svc-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transform: scale(1.08);
      transition: opacity 0.5s ease, transform 0.5s ease;
      z-index: 0;
    }

    .svc-card:hover .svc-bg {
      opacity: 1;
      transform: scale(1);
    }

    /* Inner content wrapper */
    .svc-inner {
      position: relative;
      z-index: 2;
      padding: 1.8rem;
      width: 100%;
    }

    .sc-icon-w {
      display: none; /* icons removed */
    }

    .sc-t {
      font-family: 'Playfair Display', serif;
      font-size: 1.08rem;
      font-weight: 700;
      color: var(--charcoal);
      transition: color 0.4s, transform 0.4s;
      position: relative;
      z-index: 2;
    }

    .svc-card:hover .sc-t {
      color: white;
      transform: translateY(-4px);
    }

    .sc-d {
      font-size: 0.84rem;
      color: rgba(255,255,255,0.88);
      line-height: 1.65;
      position: relative;
      z-index: 2;
      margin-top: 0.7rem;
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height 0.4s ease, opacity 0.4s ease 0.05s;
    }

    .svc-card:hover .sc-d {
      max-height: 120px;
      opacity: 1;
    }

    .sc-soon {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--sky);
      background: rgba(74, 144, 196, 0.14);
      padding: 0.18rem 0.55rem;
      border-radius: 50px;
      width: fit-content;
      margin-top: 0.7rem;
      position: relative;
      z-index: 2;
      transition: background 0.4s, color 0.4s;
    }

    .svc-card:hover .sc-soon {
      background: rgba(255,255,255,0.18);
      color: #a8d8ff;
    }

    /* ── BENEFITS ── */
    .benefits {
      background: var(--forest);
      position: relative;
      overflow: hidden;
    }

    .benefits::before {
      content: '';
      position: absolute;
      top: -200px;
      right: -200px;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: rgba(168, 201, 127, 0.06);
    }

    .benefits .container {
      position: relative;
      z-index: 1;
    }

    .benefits .section-label {
      color: var(--mint);
    }

    .benefits .section-title {
      color: white;
    }

    .ben-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.2rem;
      margin-top: 3rem;
    }

    .ben-card {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.09);
      border-radius: 20px;
      padding: 1.8rem 1.6rem;
      transition: all 0.35s ease;
      position: relative;
      overflow: hidden;
    }

    .ben-card::before {
      content: '';
      position: absolute;
      bottom: -30px;
      right: -30px;
      width: 90px;
      height: 90px;
      border-radius: 50%;
      background: rgba(168, 201, 127, 0.05);
      transition: transform 0.4s ease;
    }

    .ben-card:hover {
      background: rgba(255, 255, 255, 0.12);
      transform: translateY(-5px);
      border-color: rgba(168, 201, 127, 0.4);
      box-shadow: 0 12px 36px rgba(0,0,0,0.18);
    }

    .ben-card:hover::before {
      transform: scale(2.2);
    }

    .bc-ico-wrap {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: rgba(168, 201, 127, 0.14);
      border: 1px solid rgba(168, 201, 127, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.1rem;
      transition: background 0.35s, border-color 0.35s;
    }

    .ben-card:hover .bc-ico-wrap {
      background: rgba(168, 201, 127, 0.26);
      border-color: rgba(168, 201, 127, 0.5);
    }

    .bc-ico-wrap svg {
      width: 20px;
      height: 20px;
      stroke: var(--mint);
      fill: none;
      stroke-width: 1.75;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .bc-title {
      font-family: 'Playfair Display', serif;
      font-size: 0.92rem;
      font-weight: 700;
      color: rgba(255,255,255,0.95);
      margin-bottom: 0.45rem;
      letter-spacing: 0.01em;
    }

    .bc-txt {
      color: rgba(255, 255, 255, 0.62);
      font-size: 0.83rem;
      line-height: 1.65;
    }

    /* ── GOAL ── */
    .goal {
      background: var(--cream);
    }

    .goal-inner {
      background: var(--ls2);
      border-radius: 28px;
      padding: 3.5rem;
      box-shadow: 0 4px 36px rgba(45, 80, 22, 0.08);
    }

    .goal-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }

    .goal-text p {
      color: var(--mid);
      line-height: 1.85;
      margin-top: 1.3rem;
    }

    /* ── CONTACT ── */
    .contact {
      background: var(--ls);
    }

    .contact-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .contact-info p {
      color: var(--mid);
      line-height: 1.8;
      margin-top: 1.1rem;
    }

    .c-cards {
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
      margin-top: 1.8rem;
    }

    .c-card {
      display: flex;
      align-items: center;
      gap: 1rem;
      background: var(--ls2);
      border-radius: 14px;
      padding: 0.9rem 1.4rem;
      text-decoration: none;
      transition: all 0.3s;
      border: 1px solid rgba(107, 143, 71, 0.1);
    }

    .c-card:hover {
      background: var(--forest);
      transform: translateX(4px);
    }

    .c-card:hover .cc-val,
    .c-card:hover .cc-lbl {
      color: white;
    }

    .cc-ico {
      width: 42px;
      height: 42px;
      border-radius: 11px;
      background: linear-gradient(135deg, var(--sage), var(--mint));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.15rem;
      flex-shrink: 0;
    }

    .cc-lbl {
      font-size: 0.7rem;
      color: var(--light);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .cc-val {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--charcoal);
    }

    /* phone card */
    .c-card-phone {
      cursor: default;
    }

    .cc-nums {
      display: flex;
      flex-direction: column;
      gap: 0.18rem;
    }

    .cc-num-link {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--forest);
      text-decoration: none;
      transition: color 0.2s;
      line-height: 1.45;
    }

    .cc-num-link:hover {
      color: var(--sage);
    }

    .c-card-phone:hover .cc-lbl {
      color: white;
    }

    .c-card-phone:hover .cc-num-link {
      color: var(--mint);
    }

    /* social icons */
    .social-strip {
      display: flex;
      gap: 0.75rem;
      margin-top: 1.4rem;
      align-items: center;
    }

    .soc-icon {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.15rem;
      text-decoration: none;
      color: white;
      transition: all 0.3s;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    }

    .soc-fb {
      background: #1877F2;
    }

    .soc-wa {
      background: #25D366;
    }

    .soc-ig {
      background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    }

    .soc-ms {
      background: #0084FF;
    }

    .soc-icon:hover {
      transform: translateY(-4px) scale(1.1);
      box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
    }

    /* form */
    .cform {
      background: var(--ls2);
      border-radius: 22px;
      padding: 2.2rem;
      box-shadow: 0 4px 36px rgba(45, 80, 22, 0.07);
      border: 1px solid rgba(107, 143, 71, 0.1);
    }

    .cform h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.35rem;
      font-weight: 700;
      margin-bottom: 1.4rem;
      color: var(--forest);
    }

    .fg {
      margin-bottom: 1.1rem;
    }

    .fg label {
      display: block;
      font-size: 0.8rem;
      font-weight: 600;
      margin-bottom: 0.35rem;
    }

    .fg input,
    .fg select,
    .fg textarea {
      width: 100%;
      border: 1.5px solid rgba(107, 143, 71, 0.2);
      border-radius: 10px;
      padding: 0.7rem 0.9rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.88rem;
      background: var(--ls);
      color: var(--charcoal);
      outline: none;
      transition: border-color 0.3s;
      resize: vertical;
    }

    .fg input:focus,
    .fg select:focus,
    .fg textarea:focus {
      border-color: var(--sage);
    }

    .fsub {
      width: 100%;
      background: var(--forest);
      color: white;
      border: none;
      border-radius: 50px;
      padding: 0.88rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
    }

    .fsub:hover {
      background: var(--sage);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(45, 80, 22, 0.3);
    }

    /* ── FOOTER ── */
    footer {
      background: var(--charcoal);
      color: rgba(255, 255, 255, 0.65);
      padding: 2.5rem 0 1.5rem;
    }

    .foot-inner {
      max-width: 1220px;
      margin: 0 auto;
      padding: 0 4rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1.2rem;
    }

    .foot-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 700;
      color: white;
    }

    .foot-brand span {
      color: var(--mint);
    }

    .foot-links {
      display: flex;
      gap: 2rem;
    }

    .foot-links a {
      color: rgba(255, 255, 255, 0.45);
      text-decoration: none;
      font-size: 0.83rem;
      transition: color 0.3s;
    }

    .foot-links a:hover {
      color: var(--mint);
    }

    .foot-social {
      display: flex;
      gap: 0.8rem;
    }

    .foot-social a {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.65);
      text-decoration: none;
      transition: all 0.3s;
      font-size: 0.85rem;
    }

    .foot-social a:hover {
      background: var(--sage);
      color: white;
      transform: translateY(-2px);
    }

    .foot-copy {
      width: 100%;
      text-align: center;
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.28);
      border-top: 1px solid rgba(255, 255, 255, 0.07);
      padding-top: 1.4rem;
      margin-top: 1rem;
    }

    /* ── FAB ── */
    .fab-wrap {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      z-index: 300;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 0.7rem;
    }

    .fab-main {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--forest), var(--sage));
      border: none;
      cursor: pointer;
      color: white;
      font-size: 1.3rem;
      box-shadow: 0 6px 24px rgba(45, 80, 22, 0.42);
      transition: all 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: fabPulse 3s ease-in-out infinite;
    }

    .fab-main:hover {
      transform: scale(1.1);
    }

    @keyframes fabPulse {

      0%,
      100% {
        box-shadow: 0 6px 24px rgba(45, 80, 22, 0.42);
      }

      50% {
        box-shadow: 0 6px 24px rgba(45, 80, 22, 0.42), 0 0 0 12px rgba(107, 143, 71, 0.12);
      }
    }

    .fab-options {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      align-items: flex-end;
      transform: translateY(10px);
      opacity: 0;
      pointer-events: none;
      transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .fab-options.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: all;
    }

    .fab-phone-row {
      display: flex;
      gap: 0.6rem;
      align-items: center;
      background: rgba(212, 228, 185, 0.97);
      backdrop-filter: blur(12px);
      border-radius: 50px;
      padding: 0.5rem 0.85rem;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
      border: 1px solid rgba(107, 143, 71, 0.2);
    }

    .fab-phone-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1rem;
      text-decoration: none;
      transition: all 0.3s;
      flex-shrink: 0;
    }

    .fab-phone-btn:hover {
      transform: scale(1.18);
    }

    .fo-call {
      background: var(--forest);
    }

    .fo-wa {
      background: #25D366;
    }

    .fo-ms {
      background: #0084FF;
    }

    .fo-ig {
      background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
    }

    /* ── RESPONSIVE ── */
    @media(max-width:900px) {
      nav {
        padding: 1rem 1.5rem;
      }

      .nav-links {
        display: none;
      }

      .hero {
        grid-template-columns: 1fr;
      }

      .hero-right {
        height: 45vw;
      }

      .hero-left {
        padding: 6.5rem 2rem 2.5rem;
      }

      .about-grid,
      .goal-content,
      .contact-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .svc-grid {
        grid-template-columns: 1fr 1fr;
      }

      .ben-grid {
        grid-template-columns: 1fr 1fr;
      }

      .stat-cards {
        grid-template-columns: 1fr 1fr 1fr;
      }

      .container {
        padding: 0 1.5rem;
      }

      .about-thumb {
        display: none;
      }
    }

    /* Unified Salisbury palette and interaction polish */
    ::selection {
      background: #d8e6da;
      color: #017334;
    }

    body,
    .hero,
    .about,
    .services,
    .goal,
    .contact {
      background-color: #ffffff;
      color: #017334;
    }

    body {
      background-image:
        radial-gradient(circle at 8% 20%, rgba(216, 230, 218, 0.55), transparent 20rem),
        radial-gradient(circle at 92% 70%, rgba(216, 230, 218, 0.42), transparent 24rem);
      background-attachment: fixed;
    }

    nav,
    .hbadge,
    .htag,
    .about-main-img,
    .stat-card,
    .feat,
    .pillar,
    .svc-card,
    .ben-card,
    .goal-inner,
    .c-card,
    .cform,
    .fg input,
    .fg select,
    .fg textarea,
    .fab-phone-row {
      border-color: #d8e6da;
    }

    .hero::before {
      background-image:
        linear-gradient(rgba(216, 230, 218, 0.42) 1px, transparent 1px),
        linear-gradient(90deg, rgba(216, 230, 218, 0.42) 1px, transparent 1px);
    }

    .hb1,
    .hb2 {
      background: radial-gradient(circle, rgba(216, 230, 218, 0.85), transparent 70%);
    }

    .hb3 {
      background: radial-gradient(circle, rgba(1, 115, 52, 0.12), transparent 70%);
    }

    .hbadge-wide,
    .htag,
    .feat,
    .pillar,
    .goal-inner,
    .c-card,
    .cform,
    .fg input,
    .fg select,
    .fg textarea,
    .fab-phone-row {
      background: #ffffff;
      border: 1px solid #d8e6da;
    }

    .htag:hover,
    .pillar:hover,
    .c-card:hover {
      background: #017334;
      color: #ffffff;
      border-color: #017334;
    }

    .pillar:hover .ptxt,
    .pillar:hover i,
    .c-card:hover .cc-num-link {
      color: #ffffff;
    }

    .hero-right {
      border-left: 1px solid #d8e6da;
    }

    .slide-overlay {
      background: linear-gradient(to right, rgba(255, 255, 255, 0.45), transparent 48%, rgba(1, 115, 52, 0.16));
    }

    .slide-caption,
    .about-badge,
    .stat-card,
    .nav-cta,
    .cta-btn,
    .fsub,
    .fab-main,
    .cc-ico,
    .soc-icon,
    .fab-phone-btn {
      background: #017334 !important;
      color: #ffffff;
    }

    .stat-card {
      border: 1px solid #017334;
      box-shadow: 0 12px 30px rgba(1, 115, 52, 0.12);
    }

    .stat-cards {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-main-img {
      border: 1px solid #d8e6da;
      transition: transform 0.6s ease, box-shadow 0.6s ease;
    }

    .about-img-wrap:hover .about-main-img {
      transform: scale(1.015);
      box-shadow: 0 24px 65px rgba(1, 115, 52, 0.18);
    }

    .about-text > p:not(.section-label) {
      color: #017334;
      line-height: 1.85;
      margin-top: 1.25rem;
    }

    .services,
    .about,
    .goal,
    .contact {
      border-top: 1px solid #d8e6da;
    }

    .svc-card {
      background: #ffffff;
      border: 1px solid #d8e6da;
      box-shadow: 0 10px 32px rgba(1, 115, 52, 0.07);
    }

    .svc-card::after,
    .svc-card:hover::after {
      background: linear-gradient(160deg, rgba(1, 115, 52, 0.72), rgba(1, 115, 52, 0.94));
    }

    .svc-card::after {
      opacity: 0;
      transition: opacity 0.45s ease;
    }

    .svc-card:hover::after {
      opacity: 1;
    }

    .benefits {
      background: #ffffff;
      color: #017334;
      border-top: 1px solid #d8e6da;
      border-bottom: 1px solid #d8e6da;
    }

    .benefits .section-label,
    .benefits .section-title,
    .benefits .section-title span,
    .bc-title,
    .bc-txt {
      color: #017334 !important;
    }

    .ben-card {
      background: #ffffff;
      border: 1px solid #d8e6da;
      box-shadow: 0 10px 28px rgba(1, 115, 52, 0.06);
    }

    .ben-card:hover {
      background: #ffffff;
      border-color: #017334;
      box-shadow: 0 18px 45px rgba(1, 115, 52, 0.13);
    }

    .bc-ico-wrap {
      background: #ffffff;
      border: 1px solid #d8e6da;
    }

    .bc-ico-wrap svg {
      stroke: #017334;
    }

    footer {
      background: #ffffff;
      color: #017334;
      border-top: 1px solid #d8e6da;
    }

    .foot-brand,
    .foot-brand span,
    .foot-links a,
    .foot-social a,
    .foot-copy {
      color: #017334;
    }

    .foot-social a {
      background: #ffffff;
      border: 1px solid #d8e6da;
    }

    .foot-copy {
      border-top-color: #d8e6da;
    }

    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    select:focus-visible,
    textarea:focus-visible {
      outline: 3px solid #d8e6da;
      outline-offset: 3px;
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }

    @media(max-width:900px) {
      .hero-right {
        border-left: 0;
        border-top: 1px solid #d8e6da;
        min-height: 360px;
      }

      .stat-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    /* Section-by-section light palette backgrounds */
    .about,
    .services,
    .benefits,
    .goal,
    .contact {
      position: relative;
      isolation: isolate;
    }

    .about {
      background:
        radial-gradient(circle at 7% 18%, rgba(216, 230, 218, 0.78), transparent 24rem),
        linear-gradient(135deg, #f7faf7 0%, #ffffff 72%);
    }

    .services {
      background:
        radial-gradient(circle at 92% 8%, rgba(216, 230, 218, 0.62), transparent 22rem),
        #ffffff;
    }

    .benefits {
      background:
        linear-gradient(rgba(1, 115, 52, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(1, 115, 52, 0.025) 1px, transparent 1px),
        linear-gradient(145deg, #f1f6f2 0%, #f9fbf9 55%, #ffffff 100%);
      background-size: 46px 46px, 46px 46px, auto;
    }

    .goal {
      background:
        radial-gradient(circle at 10% 85%, rgba(216, 230, 218, 0.68), transparent 24rem),
        #ffffff;
    }

    .goal-inner {
      background: linear-gradient(135deg, rgba(216, 230, 218, 0.52), #ffffff 68%);
      border: 1px solid #d8e6da;
    }

    .contact {
      background:
        radial-gradient(circle at 88% 78%, rgba(216, 230, 218, 0.78), transparent 26rem),
        linear-gradient(150deg, #f5f9f6 0%, #ffffff 62%);
    }

    .about::after,
    .services::after,
    .benefits::after,
    .goal::after,
    .contact::after {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      width: min(1120px, 82%);
      height: 3px;
      border-radius: 0 0 99px 99px;
      background: linear-gradient(90deg, transparent, #d8e6da 22%, #017334 50%, #d8e6da 78%, transparent);
      transform: translateX(-50%);
      opacity: 0.55;
      z-index: -1;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      width: fit-content;
      padding: 0.38rem 0.8rem;
      border: 1px solid #d8e6da;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.82);
      box-shadow: 0 5px 16px rgba(1, 115, 52, 0.05);
    }

    .section-label::before {
      content: '';
      width: 6px;
      height: 6px;
      flex: 0 0 6px;
      border-radius: 50%;
      background: #017334;
      box-shadow: 0 0 0 4px rgba(216, 230, 218, 0.8);
    }

    .services .section-label,
    .benefits .section-label {
      margin-inline: auto;
    }

    @media(max-width:600px) {
      .about,
      .services,
      .benefits,
      .goal,
      .contact {
        background-size: auto;
      }

      .about::after,
      .services::after,
      .benefits::after,
      .goal::after,
      .contact::after {
        width: 72%;
      }
    }

    /* Viewport-triggered section motion */
    .motion-ready .section-motion > .container {
      opacity: 0;
      transform: translateY(46px) scale(0.985);
      filter: blur(3px);
      transition:
        opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.7s ease;
    }

    .motion-ready .section-motion.section-in-view > .container {
      opacity: 1;
      transform: translateY(0) scale(1);
      filter: blur(0);
    }

    .motion-ready .section-motion::after {
      width: 0;
      opacity: 0;
      transition:
        width 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.12s,
        opacity 0.45s ease 0.12s;
    }

    .motion-ready .section-motion.section-in-view::after {
      width: min(1120px, 82%);
      opacity: 0.55;
    }

    .motion-ready .section-motion .stat-card,
    .motion-ready .section-motion .feat,
    .motion-ready .section-motion .pillar,
    .motion-ready .section-motion .svc-card,
    .motion-ready .section-motion .ben-card,
    .motion-ready .section-motion .c-card {
      opacity: 0;
      transform: translateY(24px);
      transition-delay: calc(0.16s + (var(--motion-order, 0) * 55ms));
    }

    .motion-ready .section-motion.section-in-view .stat-card,
    .motion-ready .section-motion.section-in-view .feat,
    .motion-ready .section-motion.section-in-view .pillar,
    .motion-ready .section-motion.section-in-view .svc-card,
    .motion-ready .section-motion.section-in-view .ben-card,
    .motion-ready .section-motion.section-in-view .c-card {
      opacity: 1;
      transform: translateY(0);
    }

    .motion-ready .section-motion.motion-complete .stat-card,
    .motion-ready .section-motion.motion-complete .feat,
    .motion-ready .section-motion.motion-complete .pillar,
    .motion-ready .section-motion.motion-complete .svc-card,
    .motion-ready .section-motion.motion-complete .ben-card,
    .motion-ready .section-motion.motion-complete .c-card {
      transition-delay: 0s;
    }

    .motion-ready .section-motion.motion-complete .stat-card:hover,
    .motion-ready .section-motion.motion-complete .feat:hover,
    .motion-ready .section-motion.motion-complete .ben-card:hover {
      transform: translateY(-5px);
    }

    .motion-ready .section-motion.motion-complete .svc-card:hover {
      transform: translateY(-7px);
    }

    .motion-ready .section-motion.motion-complete .pillar:hover,
    .motion-ready .section-motion.motion-complete .c-card:hover {
      transform: translateX(6px);
    }

    .section-motion.section-in-view.about,
    .section-motion.section-in-view.services,
    .section-motion.section-in-view.goal,
    .section-motion.section-in-view.contact {
      animation: sectionBackgroundDrift 12s ease-in-out infinite alternate;
    }

    .section-motion.section-in-view .section-label::before {
      animation: sectionDotPulse 2.4s ease-in-out infinite;
    }

    @keyframes sectionBackgroundDrift {
      from { background-position: 0% 50%; }
      to { background-position: 100% 50%; }
    }

    @keyframes sectionDotPulse {
      0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 4px rgba(216, 230, 218, 0.8);
      }
      50% {
        transform: scale(1.25);
        box-shadow: 0 0 0 7px rgba(216, 230, 218, 0.28);
      }
    }

    @media(max-width:600px) {
      .motion-ready .section-motion.section-in-view::after {
        width: 72%;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .motion-ready .section-motion > .container,
      .motion-ready .section-motion .stat-card,
      .motion-ready .section-motion .feat,
      .motion-ready .section-motion .pillar,
      .motion-ready .section-motion .svc-card,
      .motion-ready .section-motion .ben-card,
      .motion-ready .section-motion .c-card {
        opacity: 1;
        transform: none;
        filter: none;
      }
    }

    /* Final brand polish: vivid green, soft blue and fitted hero */
    :root {
      --bright-green: #00b300;
      --soft-blue: #add8e6;
      --ink: #000000;
    }

    nav,
    nav.scrolled {
      min-height: 68px;
      padding-top: 0.7rem;
      padding-bottom: 0.7rem;
      background: linear-gradient(105deg, #017334 0%, #008d3e 58%, #00b300 145%);
      border-bottom: 1px solid rgba(173, 216, 230, 0.55);
      box-shadow: 0 8px 30px rgba(1, 115, 52, 0.18);
    }

    .nav-logo,
    .nav-links a {
      color: #ffffff;
    }

    .nav-logo .lm {
      background: #add8e6;
      color: #017334;
      border: 1px solid rgba(255, 255, 255, 0.68);
      box-shadow: 0 5px 16px rgba(0, 0, 0, 0.12);
    }

    .nav-links a::after {
      background: #add8e6;
    }

    .nav-links a:hover {
      color: #add8e6;
    }

    nav .nav-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      background: #ffffff !important;
      color: #017334;
      border: 1px solid #add8e6;
      box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12);
    }

    nav .nav-cta:hover {
      background: #add8e6 !important;
      color: #000000;
    }

    .hero {
      height: 100svh;
      min-height: 100svh;
      padding: 68px 0 0;
      background:
        radial-gradient(circle at 15% 15%, rgba(173, 216, 230, 0.28), transparent 24rem),
        #ffffff;
    }

    .hero-left {
      padding: 2.5rem 3.5rem 2.5rem 6rem;
    }

    .hero-badges {
      margin-bottom: 1.15rem;
    }

    .hbadge-wide {
      border-color: #add8e6;
      box-shadow: 0 7px 22px rgba(1, 115, 52, 0.07);
    }

    .hbadge-ico {
      width: 28px;
      height: 28px;
      background: rgba(173, 216, 230, 0.48) !important;
      color: #00b300;
      font-size: 0.9rem;
    }

    .hero-h1 {
      color: #000000;
      font-size: clamp(3rem, 4.7vw, 4.65rem);
      letter-spacing: -0.035em;
    }

    .hero-h1 em {
      color: #00b300;
    }

    .hero-h1 .sky {
      color: #add8e6;
      text-shadow: 0 2px 0 rgba(1, 115, 52, 0.12);
    }

    .hero-sub {
      margin-top: 1.05rem;
      color: #017334;
    }

    .hero-tags {
      margin-top: 1.25rem;
    }

    .htag {
      display: inline-flex;
      align-items: center;
      gap: 0.42rem;
    }

    .htag i {
      color: #00b300;
      font-size: 0.78rem;
    }

    .htag:hover i {
      color: #add8e6;
    }

    .hero-cta {
      margin-top: 1.55rem;
    }

    .hero .cta-btn {
      background: #00b300 !important;
      box-shadow: 0 10px 30px rgba(0, 179, 0, 0.25);
    }

    .hero .cta-btn:hover {
      background: #017334 !important;
      box-shadow: 0 15px 38px rgba(1, 115, 52, 0.3);
    }

    .hero-right {
      border-left: 1px solid #add8e6;
      background: #d8e6da;
    }

    .hero-image-wrap {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }

    .hero-static-image {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: center center;
      animation: heroImageReveal 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .hero-image-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 28%),
        linear-gradient(0deg, rgba(1, 115, 52, 0.22), transparent 32%);
      pointer-events: none;
    }

    .hero-image-caption {
      position: absolute;
      left: 1.6rem;
      bottom: 1.6rem;
      display: flex;
      align-items: center;
      gap: 0.8rem;
      max-width: calc(100% - 3.2rem);
      padding: 0.78rem 1rem;
      border: 1px solid rgba(173, 216, 230, 0.7);
      border-radius: 16px;
      background: rgba(1, 115, 52, 0.88);
      color: #ffffff;
      box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
      backdrop-filter: blur(12px);
      animation: fadeUp 0.8s ease 0.65s both;
    }

    .hero-image-caption > i {
      display: grid;
      width: 38px;
      height: 38px;
      flex: 0 0 38px;
      place-items: center;
      border-radius: 11px;
      background: #add8e6;
      color: #017334;
    }

    .hero-image-caption span,
    .hero-image-caption small {
      display: block;
    }

    .hero-image-caption strong {
      font-size: 0.86rem;
    }

    .hero-image-caption small {
      margin-top: 0.12rem;
      color: rgba(255, 255, 255, 0.78);
      font-size: 0.7rem;
    }

    @keyframes heroImageReveal {
      from {
        opacity: 0;
        transform: scale(1.045);
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    .section-label {
      color: #017334;
      font-size: clamp(0.8rem, 1vw, 0.9rem);
    }

    .section-label::before {
      background: #00b300;
    }

    .section-title,
    .benefits .section-title {
      color: #10261a !important;
      font-size: clamp(2.35rem, 4.3vw, 3.55rem);
      letter-spacing: -0.025em;
      line-height: 1.08;
    }

    .section-title .acc,
    .benefits .section-title .acc {
      color: #00b300 !important;
    }

    .section-intro {
      max-width: 680px;
      margin: 1rem auto 0;
      color: #017334;
      font-size: 1rem;
      line-height: 1.75;
    }

    .benefits-title {
      max-width: 920px;
      margin: 0.35rem auto 0;
      font-size: clamp(2.65rem, 4.8vw, 4rem) !important;
    }

    .fi {
      background: #add8e6;
      color: #017334;
      font-size: 0.95rem;
    }

    .sc-t {
      color: #017334;
      font-size: 1.2rem;
    }

    .bc-title {
      color: #017334;
      font-size: 1.08rem;
    }

    .ft {
      color: #017334;
      font-size: 0.9rem;
    }

    .cform h3 {
      color: #017334;
      font-size: 1.6rem;
    }

    .fsub i {
      margin-left: 0.35rem;
    }

    @media(max-width:900px) {
      nav {
        min-height: 64px;
      }

      .hero {
        height: auto;
        min-height: 100svh;
        padding-top: 64px;
      }

      .hero-left {
        padding: 2.6rem 1.5rem 2.4rem;
      }

      .hero-right {
        min-height: 440px;
        height: 52vw;
        border-top-color: #add8e6;
      }
    }

    @media(max-width:600px) {
      nav .nav-cta {
        padding: 0.55rem 0.8rem;
      }

      .nav-logo {
        font-size: 0.86rem;
      }

      .nav-logo .lm {
        width: 35px;
        height: 35px;
      }

      .hero-h1 {
        font-size: clamp(2.7rem, 13vw, 3.55rem);
      }

      .hero-right {
        min-height: 360px;
        height: 68vw;
      }

      .section-title,
      .benefits .section-title {
        font-size: clamp(2.05rem, 10vw, 2.75rem);
      }
    }

    /* Navigation readability and left-aligned trust section */
    .nav-links a {
      font-size: 1rem;
      font-weight: 600;
    }

    .benefits .reveal,
    .benefits .section-title,
    .benefits .section-intro,
    .benefits .ben-card,
    .benefits .bc-title,
    .benefits .bc-txt {
      text-align: left;
    }

    .benefits .section-label,
    .benefits .section-intro,
    .benefits-title {
      margin-left: 0;
      margin-right: 0;
    }

    /* Cleaner, compact visual column for the About section */
    .about-grid {
      grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
      gap: clamp(2.5rem, 5vw, 4.5rem);
      align-items: center;
    }

    .about-img-wrap {
      padding: 0.75rem;
      border: 1px solid #d8e6da;
      border-radius: 28px;
      background: rgba(255, 255, 255, 0.78);
      box-shadow: 0 18px 48px rgba(1, 115, 52, 0.09);
    }

    .about-main-img {
      height: 330px;
      border-radius: 20px;
    }

    .about-badge {
      top: 1.65rem;
      left: 1.65rem;
    }

    .about .stat-cards {
      gap: 0.65rem;
      margin-top: 0.85rem !important;
    }

    .about .stat-card {
      min-height: 86px;
      display: grid;
      align-content: center;
      padding: 0.7rem;
      border-radius: 13px;
    }

    .about .sc-num {
      font-size: 1.55rem;
    }

    .about .sc-lbl {
      font-size: 0.66rem;
    }

    .about .feat-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.6rem;
      margin-top: 0.7rem !important;
    }

    .about .feat {
      min-width: 0;
      align-items: center;
      gap: 0.6rem;
      padding: 0.65rem 0.7rem;
      border-radius: 12px;
      box-shadow: none;
    }

    .about .fi {
      width: 30px;
      height: 30px;
      flex: 0 0 30px;
      border-radius: 9px;
      font-size: 0.78rem;
    }

    .about .ft {
      overflow: hidden;
      color: #017334;
      font-size: 0.78rem;
      line-height: 1.25;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .about .fs {
      display: none;
    }

    .about-text > p:not(.section-label) {
      max-width: 64ch;
    }

    @media(max-width:900px) {
      .about-grid {
        grid-template-columns: 1fr;
        align-items: start;
      }

      .about-img-wrap {
        width: min(100%, 640px);
        margin-inline: auto;
      }
    }

    @media(max-width:480px) {
      .about-img-wrap {
        padding: 0.55rem;
        border-radius: 22px;
      }

      .about-main-img {
        height: 270px;
        border-radius: 17px;
      }

      .about-badge {
        top: 1.15rem;
        left: 1.15rem;
      }

      .about .feat-grid {
        grid-template-columns: 1fr 1fr;
      }

      .about .ft {
        font-size: 0.72rem;
      }
    }

    /* Balanced left/right section movement and typography */
    .section-title,
    .benefits .section-title {
      max-width: 22ch;
      font-size: clamp(2.2rem, 3.7vw, 3.2rem);
      line-height: 1.12;
      text-wrap: balance;
    }

    .benefits-title {
      max-width: 860px;
      font-size: clamp(2.45rem, 4.15vw, 3.55rem) !important;
    }

    .about-text > p:not(.section-label),
    .goal-text > p,
    .contact-info > p,
    .section-intro,
    .sc-d,
    .bc-txt {
      text-align: justify;
      text-justify: inter-word;
      hyphens: auto;
      text-wrap: pretty;
    }

    .section-intro {
      margin-left: 0;
      margin-right: auto;
    }

    .services .section-title,
    .services .section-intro {
      margin-left: auto;
      margin-right: auto;
    }

    .motion-ready .section-motion:not(.section-in-view) .about-grid > :first-child,
    .motion-ready .section-motion:not(.section-in-view) .contact-inner > :first-child,
    .motion-ready .section-motion:not(.section-in-view) .goal-content > :first-child {
      opacity: 0;
      transform: translateX(-42px);
    }

    .motion-ready .section-motion:not(.section-in-view) .about-grid > :last-child,
    .motion-ready .section-motion:not(.section-in-view) .contact-inner > :last-child,
    .motion-ready .section-motion:not(.section-in-view) .goal-content > :last-child {
      opacity: 0;
      transform: translateX(42px);
    }

    .about-grid > :first-child,
    .about-grid > :last-child,
    .contact-inner > :first-child,
    .contact-inner > :last-child,
    .goal-content > :first-child,
    .goal-content > :last-child {
      transition:
        opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .motion-ready .section-motion.section-in-view .about-grid > :first-child,
    .motion-ready .section-motion.section-in-view .about-grid > :last-child,
    .motion-ready .section-motion.section-in-view .contact-inner > :first-child,
    .motion-ready .section-motion.section-in-view .contact-inner > :last-child,
    .motion-ready .section-motion.section-in-view .goal-content > :first-child,
    .motion-ready .section-motion.section-in-view .goal-content > :last-child {
      opacity: 1;
      transform: translateX(0);
    }

    .motion-ready .section-motion:not(.motion-complete) .svc-card:nth-child(odd),
    .motion-ready .section-motion:not(.motion-complete) .ben-card:nth-child(odd) {
      transform: translate(-24px, 12px);
    }

    .motion-ready .section-motion:not(.motion-complete) .svc-card:nth-child(even),
    .motion-ready .section-motion:not(.motion-complete) .ben-card:nth-child(even) {
      transform: translate(24px, 12px);
    }

    .motion-ready .section-motion.section-in-view:not(.motion-complete) .svc-card,
    .motion-ready .section-motion.section-in-view:not(.motion-complete) .ben-card {
      transform: translate(0, 0);
    }

    @media(max-width:600px) {
      .section-title,
      .benefits .section-title,
      .benefits-title {
        max-width: 100%;
        font-size: clamp(2rem, 9vw, 2.65rem) !important;
      }

      .about-text > p:not(.section-label),
      .goal-text > p,
      .contact-info > p,
      .section-intro,
      .sc-d,
      .bc-txt {
        text-align: left;
        hyphens: none;
      }
    }

    /* Viewport-balanced About section */
    .about {
      padding-top: 4.4rem;
      padding-bottom: 4.4rem;
    }

    .about-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: clamp(2.5rem, 4vw, 3.75rem);
      align-items: stretch;
    }

    .about-img-wrap,
    .about-text {
      min-width: 0;
      height: 100%;
    }

    .about-img-wrap {
      display: flex;
      flex-direction: column;
    }

    .about-text {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding-block: 0.4rem;
    }

    .about .section-label {
      margin-bottom: 0.6rem;
      font-size: 0.78rem;
    }

    .about .section-title {
      max-width: 20ch;
      font-size: clamp(1.95rem, 2.8vw, 2.65rem);
      line-height: 1.14;
    }

    .about-text > p:not(.section-label) {
      max-width: 100%;
      margin-top: 1rem;
      font-size: 0.94rem;
      line-height: 1.72;
    }

    .about-main-img {
      height: 300px;
    }

    .about .stat-card {
      min-height: 76px;
    }

    .about .pillars {
      gap: 0.5rem;
      margin-top: 1rem;
    }

    .about .pillar {
      padding: 0.68rem 0.85rem;
    }

    .about .ptxt {
      font-size: 0.82rem;
      line-height: 1.4;
    }

    @media(max-width:900px) {
      .about-grid {
        grid-template-columns: 1fr;
        align-items: start;
      }

      .about-text {
        padding-block: 0;
      }
    }

    @media(max-width:600px) {
      .about {
        padding-top: 3.6rem;
        padding-bottom: 3.6rem;
      }

      .about .section-title {
        font-size: clamp(1.9rem, 8.5vw, 2.35rem) !important;
      }

      .about-text > p:not(.section-label) {
        font-size: 0.92rem;
        line-height: 1.68;
      }
    }

    .facebook-card-icon {
      background: #017334 !important;
      color: #ffffff;
    }

    /* Equal-height, balanced Contact panels */
    .contact-inner {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: clamp(2rem, 4vw, 3.5rem);
      align-items: stretch;
    }

    .contact-info,
    .cform {
      min-width: 0;
      height: 100%;
      padding: clamp(1.7rem, 3vw, 2.35rem);
      border: 1px solid #d8e6da;
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.88);
      box-shadow: 0 16px 42px rgba(1, 115, 52, 0.08);
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .contact .section-title {
      max-width: 15ch;
      font-size: clamp(2.1rem, 3.2vw, 2.85rem);
    }

    .contact-info > p:not(.section-label) {
      margin-top: 0.9rem;
      font-size: 0.92rem;
      line-height: 1.7;
    }

    .contact .c-cards {
      gap: 0.65rem;
      margin-top: 1.2rem;
    }

    .contact .c-card {
      min-height: 62px;
      padding: 0.72rem 1rem;
    }

    .contact .cc-ico {
      width: 40px;
      height: 40px;
      flex: 0 0 40px;
    }

    .contact .cc-val,
    .contact .cc-num-link {
      overflow-wrap: anywhere;
    }

    .cform {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .cform h3 {
      margin-bottom: 1.2rem;
    }

    .cform .fg {
      margin-bottom: 0.9rem;
    }

    @media(max-width:900px) {
      .contact-inner {
        grid-template-columns: 1fr;
      }

      .contact-info,
      .cform {
        width: min(100%, 680px);
        margin-inline: auto;
      }
    }

    @media(max-width:600px) {
      .contact-info,
      .cform {
        padding: 1.35rem;
        border-radius: 20px;
      }

      .contact .section-title {
        max-width: 100%;
        font-size: clamp(1.95rem, 8.5vw, 2.4rem) !important;
      }
    }

    /* Full-width, touch-friendly mobile service cards */
    @media(max-width:600px) {
      .services .container {
        width: 100%;
        padding-inline: 1rem;
      }

      .services .svc-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 1rem;
        width: 100%;
        margin-top: 2rem;
      }

      .services .svc-card {
        width: 100%;
        min-height: 175px;
        align-items: stretch;
        border-radius: 18px;
        transform: none;
      }

      .services .svc-bg,
      .services .svc-card:hover .svc-bg {
        opacity: 0.12;
        transform: scale(1);
      }

      .services .svc-card::after,
      .services .svc-card:hover::after {
        opacity: 1;
        background: linear-gradient(110deg, rgba(255, 255, 255, 0.97), rgba(216, 230, 218, 0.82)) !important;
      }

      .services .svc-inner {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 1.25rem;
      }

      .services .sc-t,
      .services .svc-card:hover .sc-t {
        color: #017334;
        font-size: 1.1rem;
        transform: none;
      }

      .services .sc-d,
      .services .svc-card:hover .sc-d {
        max-height: none;
        margin-top: 0.55rem;
        overflow: visible;
        opacity: 1;
        color: #017334;
        font-size: 0.86rem;
        line-height: 1.6;
      }

      .services .sc-soon,
      .services .svc-card:hover .sc-soon {
        background: #d8e6da;
        color: #017334;
      }

      .motion-ready .section-motion:not(.motion-complete) .svc-card:nth-child(odd),
      .motion-ready .section-motion:not(.motion-complete) .svc-card:nth-child(even),
      .motion-ready .section-motion.section-in-view:not(.motion-complete) .svc-card {
        transform: translateY(18px);
      }

      .motion-ready .section-motion.section-in-view:not(.motion-complete) .svc-card {
        transform: translateY(0);
      }

      .motion-ready .section-motion.motion-complete .svc-card:hover {
        transform: none;
      }
    }

    /* Android-safe responsive layout for the About section */
    @media(max-width:600px) {
      .about .container {
        width: 100%;
        max-width: 100%;
        padding-inline: 1rem;
      }

      .about-grid {
        width: 100%;
        min-width: 0;
        gap: 2rem;
      }

      .about-img-wrap,
      .about-text {
        width: 100%;
        max-width: 100%;
        min-width: 0;
      }

      .about-img-wrap {
        padding: 0.55rem;
        overflow: hidden;
      }

      .about-main-img {
        width: 100%;
        height: clamp(230px, 72vw, 300px);
        object-position: center;
      }

      .about-img-wrap:hover .about-main-img {
        transform: none;
      }

      .about-badge {
        top: 1rem;
        left: 1rem;
        padding: 0.72rem 1rem;
      }

      .about .ab-big {
        font-size: 1.55rem;
      }

      .about .stat-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
      }

      .about .stat-card {
        min-width: 0;
        min-height: 72px;
        padding: 0.55rem 0.35rem;
      }

      .about .sc-lbl {
        line-height: 1.35;
        overflow-wrap: anywhere;
      }

      .about .feat-grid {
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .about .feat {
        width: 100%;
        min-width: 0;
      }

      .about .ft {
        overflow: visible;
        text-overflow: clip;
        white-space: normal;
        overflow-wrap: anywhere;
      }

      .about .section-label {
        max-width: 100%;
        line-height: 1.35;
        white-space: normal;
      }

      .about .section-title,
      .about-text > p:not(.section-label) {
        width: 100%;
        max-width: 100%;
        overflow-wrap: anywhere;
      }

      .about .pillar {
        width: 100%;
        min-width: 0;
        align-items: flex-start;
      }

      .about .ptxt {
        min-width: 0;
        overflow-wrap: anywhere;
      }

      .motion-ready .section-motion:not(.section-in-view) .about-grid > :first-child,
      .motion-ready .section-motion:not(.section-in-view) .about-grid > :last-child {
        transform: translateY(24px);
      }

      .motion-ready .section-motion.section-in-view .about-grid > :first-child,
      .motion-ready .section-motion.section-in-view .about-grid > :last-child {
        transform: translateY(0);
      }
    }

    @media(max-width:390px) {
      .about .feat-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .about .feat {
        padding: 0.72rem 0.8rem;
      }

      .about .stat-card {
        min-height: 78px;
      }
    }

    /* Reveal service imagery on mobile hover, tap and keyboard focus */
    @media(max-width:600px) {
      .services .svc-card:hover .svc-bg,
      .services .svc-card:focus .svc-bg,
      .services .svc-card:focus-visible .svc-bg,
      .services .svc-card:active .svc-bg,
      .services .svc-card.mobile-active .svc-bg {
        opacity: 1;
        transform: scale(1.02);
      }

      .services .svc-card:hover::after,
      .services .svc-card:focus::after,
      .services .svc-card:focus-visible::after,
      .services .svc-card:active::after,
      .services .svc-card.mobile-active::after {
        opacity: 1;
        background: linear-gradient(135deg, rgba(1, 115, 52, 0.74), rgba(1, 115, 52, 0.92)) !important;
      }

      .services .svc-card:hover .sc-t,
      .services .svc-card:focus .sc-t,
      .services .svc-card:focus-visible .sc-t,
      .services .svc-card:active .sc-t,
      .services .svc-card.mobile-active .sc-t,
      .services .svc-card:hover .sc-d,
      .services .svc-card:focus .sc-d,
      .services .svc-card:focus-visible .sc-d,
      .services .svc-card:active .sc-d,
      .services .svc-card.mobile-active .sc-d {
        color: #ffffff;
      }

      .services .svc-card:hover .sc-soon,
      .services .svc-card:focus .sc-soon,
      .services .svc-card:focus-visible .sc-soon,
      .services .svc-card:active .sc-soon,
      .services .svc-card.mobile-active .sc-soon {
        background: rgba(255, 255, 255, 0.2);
        color: #ffffff;
      }

      .services .svc-card:focus-visible {
        outline: 3px solid #00b300;
        outline-offset: 3px;
      }
    }

    /* Functional care inquiry form feedback */
    .form-honey {
      position: absolute !important;
      width: 1px !important;
      height: 1px !important;
      overflow: hidden !important;
      clip: rect(0, 0, 0, 0) !important;
      white-space: nowrap !important;
    }

    .form-consent {
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      margin: 0.15rem 0 1rem;
      color: #017334;
      font-size: 0.76rem;
      line-height: 1.45;
      cursor: pointer;
    }

    .form-consent input {
      width: 16px;
      height: 16px;
      flex: 0 0 16px;
      margin-top: 0.1rem;
      accent-color: #00b300;
    }

    .fsub:disabled {
      cursor: wait;
      opacity: 0.72;
      transform: none;
    }

    .form-status {
      min-height: 1.35rem;
      margin-top: 0.75rem;
      color: #017334;
      font-size: 0.78rem;
      line-height: 1.45;
      text-align: center;
    }

    .form-status.success {
      color: #017334;
      font-weight: 600;
    }

    .form-status.error {
      color: #9b1c1c;
      font-weight: 600;
    }

    .human-check {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      margin: 0.2rem 0 0.9rem;
      padding: 0.75rem 0.85rem;
      border: 1px solid #d8e6da;
      border-radius: 13px;
      background: linear-gradient(135deg, #f4f8f5, #ffffff);
    }

    .human-check-icon {
      display: grid;
      width: 38px;
      height: 38px;
      flex: 0 0 38px;
      place-items: center;
      border-radius: 11px;
      background: #d8e6da;
      color: #017334;
    }

    .human-check-content {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 86px;
      align-items: center;
      gap: 0.7rem;
      width: 100%;
      min-width: 0;
    }

    .human-check label {
      color: #017334;
      font-size: 0.78rem;
      font-weight: 700;
      line-height: 1.35;
    }

    .human-check input {
      width: 86px;
      min-width: 0;
      padding: 0.55rem 0.6rem;
      border: 1.5px solid #d8e6da;
      border-radius: 9px;
      background: #ffffff;
      color: #017334;
      font: 700 0.9rem 'DM Sans', sans-serif;
      text-align: center;
      outline: none;
    }

    .human-check input:focus {
      border-color: #00b300;
      box-shadow: 0 0 0 3px rgba(0, 179, 0, 0.1);
    }

    .human-check input:disabled {
      cursor: wait;
      opacity: 0.55;
    }

    @media(max-width:420px) {
      .human-check-content {
        grid-template-columns: 1fr;
      }

      .human-check input {
        width: 100%;
        text-align: left;
      }
    }

    /* Branded navigation logo */
    .nav-logo {
      gap: 0.7rem;
      letter-spacing: -0.01em;
    }

    .nav-logo .lm {
      width: 48px;
      height: 48px;
      flex: 0 0 48px;
      padding: 3px;
      border: 1px solid rgba(173, 216, 230, 0.85);
      border-radius: 50%;
      background: #ffffff;
      box-shadow: 0 7px 20px rgba(0, 0, 0, 0.16);
      overflow: hidden;
    }

    .nav-logo .lm img {
      display: block;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .nav-logo:hover .lm {
      transform: none;
    }

    .nav-logo:hover .lm img {
      transform: scale(1.08);
    }

    .nav-brand-text {
      white-space: nowrap;
    }

    @media(max-width:600px) {
      .nav-logo {
        gap: 0.5rem;
      }

      .nav-logo .lm {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
        padding: 2px;
      }

      .nav-brand-text {
        max-width: 142px;
        overflow: hidden;
        text-overflow: ellipsis;
      }
    }

    @media(max-width:400px) {
      .nav-brand-text {
        display: none;
      }
    }
