    :root {
      /* V5 â€” Sara brand theme (lime green, matches live site / V1) */
      --green: #8dc63f;
      --green-dark: #6fa82e;
      --green-light: #e8f5d4;
      --accent-rgb: 141, 198, 63;
      --ink: #141414;
      --ink-soft: #3d3d3d;
      --muted: #6b6b6b;
      --line: #e8e8e8;
      --surface: #fafaf8;
      --white: #ffffff;
      --cream: #ffffff;
      --deep: #141414;
      --deep-mid: #1f1f1f;
      --sage: #6fa82e;
      --shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
      --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.06);
      --radius: 16px;
      --radius-sm: 10px;
      --utility-h: 38px;
      --header-nav-h: 72px;
      --header-total: calc(var(--utility-h) + var(--header-nav-h));
      --ease: cubic-bezier(0.22, 1, 0.36, 1);
      --max: 1320px;
      --gutter: clamp(16px, 3vw, 48px);
      --section-pad: clamp(32px, 4vw, 52px);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; overflow-x: clip; scroll-padding-top: calc(var(--header-nav-h) + 26px); }
    body {
      font-family: "DM Sans", system-ui, sans-serif;
      color: var(--ink);
      background: var(--white);
      line-height: 1.6;
      overflow-x: clip;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button { font: inherit; cursor: pointer; border: none; background: none; }
    ul { list-style: none; }

    .container {
      width: min(var(--max), calc(100% - 2 * var(--gutter)));
      margin-inline: auto;
      padding-inline: 0;
    }

    /* Top utility bar */
    .utility-bar {
      background: var(--deep);
      color: rgba(255,255,255,0.82);
      font-size: 0.78rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .utility-bar .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 10px 0;
    }
    .utility-bar a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: color 0.2s;
    }
    .utility-bar a:hover { color: var(--green); }
    .utility-bar svg { width: 14px; height: 14px; flex-shrink: 0; }
    .utility-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 12px;
      border-radius: 999px;
      background: rgba(var(--accent-rgb), 0.18);
      color: var(--green);
      font-weight: 600;
      font-size: 0.72rem;
    }

    /* V3 header â€” single sticky row: brand left, nav right */
    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
      min-width: 0;
    }
    .header-brand {
      margin-right: auto;
      flex: 0 0 auto;
      gap: 6px;
      max-width: fit-content;
      padding-right: clamp(10px, 1.5vw, 20px);
    }
    .brand-logo {
      height: 48px;
      width: auto;
      flex-shrink: 0;
    }
    /* Header: icon-only logo so text sits flush beside it (full SVG is ~379px wide) */
    .header-brand .brand-logo {
      height: 48px;
      width: 48px;
      max-width: 48px;
      min-width: 48px;
      object-fit: cover;
      object-position: left center;
    }
    .header-brand .brand-text {
      margin-left: 0;
      flex-shrink: 0;
    }
    .header-brand .brand-text strong {
      font-size: clamp(1rem, 1.6vw, 1.22rem);
      letter-spacing: 0.08em;
    }
    .header-brand .brand-text span {
      font-size: 0.58rem;
      letter-spacing: 0.1em;
      margin-top: 0;
    }
    .brand-mark {
      width: 48px;
      height: 48px;
      background: var(--ink);
      color: var(--white);
      display: grid;
      place-items: center;
      font-family: "Cormorant Garamond", serif;
      font-weight: 700;
      font-size: 1.05rem;
      letter-spacing: 0.06em;
      flex-shrink: 0;
    }
    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.15;
      min-width: 0;
    }
    .brand-text strong {
      font-family: "Cormorant Garamond", serif;
      font-size: 1.5rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      white-space: nowrap;
    }
    .brand-text span {
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: 3px;
      white-space: nowrap;
    }

    .btn-label-short { display: none; }
    /* Floating pill header */
    .header-nav-wrap {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: transparent;
      border-bottom: none;
      padding: 10px 0 12px;
      pointer-events: none;
      /* Float over the hero below */
      margin-bottom: calc(-1 * (var(--header-nav-h) + 22px));
    }
    .header-nav-inner {
      position: relative;
      pointer-events: auto;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: clamp(12px, 2vw, 28px);
      min-height: var(--header-nav-h);
      padding-inline: clamp(18px, 2.5vw, 32px);
      background: rgba(16, 16, 16, 0.92);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 2px solid var(--green);
      border-radius: 999px;
      padding: 6px clamp(10px, 1.2vw, 16px) 6px clamp(14px, 1.6vw, 24px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
      transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
    }
    .header-nav-wrap.scrolled .header-nav-inner {
      background: rgba(12, 12, 12, 0.97);
      border-color: var(--green);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    }
    .header-brand .brand-text strong { color: #ffffff; }
    .header-brand .brand-text span { color: rgba(255, 255, 255, 0.55); }
    .header-nav-inner > .menu-toggle {
      margin-left: auto;
      flex-shrink: 0;
    }
    .main-nav {
      flex: 1 1 0;
      min-width: 0;
      overflow: visible;
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }
    .nav-list {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      flex-wrap: nowrap;
      gap: clamp(0px, 0.35vw, 4px);
      width: auto;
      margin-left: auto;
      margin-bottom: 0;
      padding-left: 0;
    }
    .nav-item {
      position: relative;
      flex-shrink: 0;
      display: flex;
      align-items: center;
    }
    .nav-link {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      padding: 12px 13px;
      line-height: 1;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.78);
      white-space: nowrap;
      transition: color 0.2s;
    }
    .nav-link::after {
      content: "";
      position: absolute;
      left: 13px;
      right: 13px;
      bottom: 7px;
      height: 2px;
      border-radius: 2px;
      background: var(--green);
      transform: scaleX(0);
      transform-origin: center;
      transition: transform 0.25s var(--ease);
    }
    .nav-link:hover,
    .nav-item:hover > .nav-link,
    .nav-link.active {
      color: var(--green);
    }
    .nav-link:hover::after,
    .nav-item:hover > .nav-link::after,
    .nav-link.active::after {
      transform: scaleX(1);
    }
    .nav-link svg { width: 9px; height: 9px; flex-shrink: 0; transition: transform 0.25s; }
    .nav-item:hover .nav-link svg { transform: rotate(180deg); }
    .nav-label-short { display: none; }

    /* Mobile menu overlay */
    .nav-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.06);
      z-index: 9998;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s, visibility 0.3s;
      pointer-events: none;
    }
    .nav-overlay.open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    /* Mobile drawer header â€” only visible â‰¤1200px */
    .mobile-nav-header {
      display: none;
    }

    /* Mega menu */
    .mega-menu {
      position: absolute;
      top: calc(100% + 4px);
      left: 0;
      transform: translateY(12px);
      min-width: min(720px, calc(100vw - 2 * var(--gutter)));
      max-width: min(920px, calc(100vw - 2 * var(--gutter)));
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 28px;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
    }
    /* Invisible hover bridge across the gap below the floating pill */
    .mega-menu::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: -18px;
      height: 18px;
    }
    .nav-item:hover .mega-menu,
    .nav-item:focus-within .mega-menu {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateY(0);
    }
    .nav-item:last-child .mega-menu,
    .nav-item:nth-last-child(2) .mega-menu,
    .nav-item:nth-last-child(3) .mega-menu {
      left: auto;
      right: 0;
    }
    .mega-menu.wide {
      min-width: 0;
      width: min(920px, calc(100vw - 2 * var(--gutter)));
      max-width: calc(100vw - 2 * var(--gutter));
    }
    /* Collections â€” center under floating pill so all columns stay on screen */
    .nav-item-collections { position: static; }
    .mega-menu.collections-mega {
      left: 50%;
      right: auto;
      transform: translateX(-50%) translateY(12px);
      width: min(920px, calc(100vw - 2 * var(--gutter)));
      max-width: calc(100vw - 2 * var(--gutter));
    }
    .nav-item-collections:hover .mega-menu.collections-mega,
    .nav-item-collections:focus-within .mega-menu.collections-mega {
      transform: translateX(-50%) translateY(0);
    }
    .collections-mega .mega-grid.cols-4 {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: clamp(16px, 2vw, 24px);
    }
    .collections-mega .mega-col a {
      font-size: clamp(0.8rem, 0.9vw, 0.88rem);
      white-space: nowrap;
    }
    .mega-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .mega-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
    .mega-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
    .mega-col h4 {
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--green-dark);
      margin-bottom: 12px;
      padding-bottom: 8px;
      border-bottom: 2px solid var(--green-light);
    }
    .mega-col ul li + li { margin-top: 6px; }
    .mega-col a {
      font-size: 0.88rem;
      color: var(--ink-soft);
      display: block;
      padding: 4px 0;
      transition: color 0.2s, padding-left 0.2s;
    }
    .mega-col a:hover { color: var(--green-dark); padding-left: 6px; }
    .mega-col .sub-list { margin-top: 8px; padding-left: 12px; border-left: 2px solid var(--line); }
    .mega-col .sub-list a { font-size: 0.82rem; color: var(--muted); }

    /* Compact mega â€” Resources, Brand Programs, etc. */
    .mega-menu.mega-compact {
      min-width: 0;
      width: max-content;
      max-width: 340px;
      padding: 14px 18px;
      border-radius: 12px;
    }
    .mega-menu.mega-compact .mega-grid {
      gap: 4px 28px;
    }
    .mega-menu.mega-compact .mega-grid.cols-2 {
      grid-template-columns: auto auto;
    }
    .mega-menu.mega-compact .mega-col a {
      font-size: 0.84rem;
      padding: 5px 0;
      white-space: nowrap;
    }
    .mega-menu.brand-programs-mega {
      width: max-content;
      max-width: none;
      padding: 12px 14px;
    }
    .mega-menu.brand-programs-mega .mega-grid.cols-2 {
      display: flex;
      flex-wrap: nowrap;
      align-items: flex-start;
      gap: 32px;
      width: auto;
    }
    .mega-menu.brand-programs-mega .mega-col {
      flex: 0 0 auto;
      width: auto;
      min-width: 0;
    }
    .mega-menu.brand-programs-mega .mega-col h4 {
      font-size: 0.68rem;
      margin-bottom: 10px;
      padding-bottom: 8px;
    }
    .mega-menu.brand-programs-mega .mega-col .sub-list {
      margin-top: 0;
      padding-left: 0;
      border-left: none;
    }
    .mega-menu.brand-programs-mega .mega-col .sub-list a {
      font-size: 0.82rem;
      color: var(--ink-soft);
    }
    .mega-menu.mega-compact.brand-programs-mega {
      max-width: none;
    }
    .mega-menu.mega-compact.brand-programs-mega .mega-grid {
      gap: 12px;
    }

    /* Product compact mega dropdown â€” centered card, not full screen */
    .header-nav-wrap { overflow: visible; }
    .nav-item-product { position: static; }
    .mega-menu.product-mega {
      left: 50%;
      right: auto;
      width: min(740px, calc(100vw - 40px));
      top: calc(100% + 6px);
      z-index: 1001;
      min-width: 0;
      max-width: min(740px, calc(100vw - 40px));
      transform: translateX(-50%) translateY(6px);
      border-radius: 14px;
      border: 1px solid var(--line);
      border-top: 3px solid var(--green);
      padding: 0;
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
      background: var(--white);
    }
    .nav-item-product:hover .mega-menu.product-mega,
    .nav-item-product:focus-within .mega-menu.product-mega {
      transform: translateX(-50%) translateY(0);
    }
    .product-mega-inner {
      width: 100%;
      margin: 0;
      padding: 18px 22px 16px;
    }
    .product-mega-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 14px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--line);
    }
    .product-mega-head h3 {
      font-family: "DM Sans", sans-serif;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--green-dark);
    }
    .product-mega-head p { display: none; }
    .product-mega-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 14px 16px;
    }
    .product-mega-col h4 {
      font-size: 0.68rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--green-dark);
      margin-bottom: 8px;
      padding-bottom: 6px;
      border-bottom: 2px solid var(--green-light);
    }
    .product-mega-col h4 a {
      color: inherit;
      transition: color 0.2s;
    }
    .product-mega-col h4 a:hover { color: var(--ink); }
    .product-mega-col ul { list-style: none; }
    .product-mega-col ul li + li { margin-top: 2px; }
    .product-mega-col ul li a {
      display: block;
      padding: 3px 0;
      font-size: 0.8rem;
      line-height: 1.35;
      color: var(--ink-soft);
      transition: color 0.2s, padding-left 0.2s;
    }
    .product-mega-col ul li a:hover {
      color: var(--green-dark);
      padding-left: 8px;
    }
    .product-mega-col ul li a::before {
      content: "\203A";
      margin-right: 6px;
      color: var(--green);
      font-weight: 700;
    }
    .product-mega-more {
      margin-top: 14px;
      padding-top: 12px;
      border-top: 1px solid var(--line);
    }
    .product-mega-more h4 {
      font-size: 0.65rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      font-weight: 700;
      margin-bottom: 8px;
    }
    .product-mega-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }
    .product-mega-tags a {
      display: inline-flex;
      align-items: center;
      padding: 5px 12px;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 999px;
      font-size: 0.74rem;
      font-weight: 500;
      color: var(--ink-soft);
      transition: border-color 0.2s, color 0.2s, background 0.2s;
    }
    .product-mega-tags a:hover {
      border-color: var(--green);
      color: var(--green-dark);
      background: var(--green-light);
    }
    .product-mega-body {
      display: flex;
      align-items: stretch;
      gap: 0;
    }
    .product-mega-content { flex: 1; min-width: 0; }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 13px 24px;
      border-radius: 999px;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    }
    .btn-sm {
      padding: 11px 20px;
      font-size: 0.72rem;
    }
    .btn-primary {
      background: var(--green);
      color: var(--white);
      box-shadow: 0 10px 24px rgba(141, 198, 63, 0.32);
    }
    .btn-primary:hover {
      background: var(--green-dark);
      transform: translateY(-2px);
      box-shadow: 0 14px 30px rgba(141, 198, 63, 0.38);
    }
    .btn-outline {
      border: 1.5px solid var(--ink);
      color: var(--ink);
      background: transparent;
    }
    .btn-outline:hover { background: var(--ink); color: var(--white); }
    .btn-ghost {
      color: var(--ink-soft);
      padding: 10px 16px;
    }
    .btn-ghost:hover { color: var(--green-dark); }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1.5px solid rgba(255, 255, 255, 0.25);
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      flex-shrink: 0;
      background: transparent;
      z-index: 2;
    }
    .menu-toggle span {
      display: block;
      width: 20px;
      height: 2px;
      background: #ffffff;
      transition: 0.25s;
    }
    .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* =============================================
       HERO â€” Full-width Cinematic Banner
    ============================================= */
    .hero {
      position: relative;
      height: 115svh;
      min-height: 720px;
      overflow: hidden;
      background: #0a0a0a;
    }
    .hero-slides {
      position: absolute;
      inset: 0;
    }
    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .hero-slide.active { opacity: 1; }
    .hero-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 30%;
      transform: scale(1.06);
      transition: transform 9s ease-out;
      will-change: transform;
      filter: brightness(1.05) contrast(1.04) saturate(1.08);
    }
    .hero-slide.active img { transform: scale(1.0); }
    .hero-slide video,
    .hero-slide .hero-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 30%;
      transform: scale(1.06);
      transition: transform 9s ease-out;
      will-change: transform;
      filter: brightness(1.05) contrast(1.04) saturate(1.08);
    }
    .hero-slide.active video,
    .hero-slide.active .hero-video { transform: scale(1.0); }

    /* Cinematic overlay â€” layered scrim for text legibility without killing the image */
    .hero-overlay {
      position: absolute;
      inset: 0;
      /* Layer 1: soft all-over dark wash so image doesn't fight the text */
      /* Layer 2: stronger bottom fade anchors the copy block                */
      /* Layer 3: subtle top fade so header area stays clean                 */
      background:
        linear-gradient(to bottom,
          rgba(0,0,0,0.28) 0%,
          transparent          18%),
        linear-gradient(to top,
          rgba(0,0,0,0.72) 0%,
          rgba(0,0,0,0.38) 28%,
          rgba(0,0,0,0.18) 52%,
          transparent          72%),
        radial-gradient(ellipse 80% 60% at 50% 55%,
          rgba(0,0,0,0.30) 0%,
          transparent      100%);
    }
    /* Content sits in the lower-center, floating over the image */
    .hero-content {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding-top: calc(var(--header-nav-h) + 22px);
      padding-bottom: clamp(60px, 8vh, 90px);
      text-align: center;
    }
    .hero-copy {
      max-width: 820px;
      width: 100%;
      padding: 0 clamp(16px, 4vw, 40px);
      color: #fff;
      text-align: center;
    }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-size: 0.72rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 18px;
      font-weight: 700;
      text-shadow: 0 1px 10px rgba(0,0,0,0.60);
      /* pill backdrop so green label is always legible on any image */
      background: rgba(0,0,0,0.28);
      padding: 6px 16px;
      border-radius: 999px;
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
    }
    .hero-eyebrow::before,
    .hero-eyebrow::after {
      content: "";
      width: 32px;
      height: 1.5px;
      background: var(--green);
      flex-shrink: 0;
    }
    .hero-copy h1 {
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(2.2rem, 5vw, 4.8rem);
      font-weight: 600;
      line-height: 1.2;
      letter-spacing: 0.01em;
      margin-bottom: 18px;
      color: #fff;
      text-shadow:
        0 1px 0 rgba(0,0,0,0.40),
        0 2px 0 rgba(0,0,0,0.30),
        0 3px 0 rgba(0,0,0,0.20),
        0 4px 0 rgba(0,0,0,0.10),
        0 6px 16px rgba(0,0,0,0.50);
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
    }
    .hero-copy h1 .hero-title-accent {
      color: var(--green);
      display: block;
      /* green text needs stronger shadow so it pops on bright images */
      text-shadow:
        0 1px 0 rgba(0,0,0,0.45),
        0 2px 0 rgba(0,0,0,0.35),
        0 3px 0 rgba(0,0,0,0.20),
        0 4px 0 rgba(0,0,0,0.10),
        0 6px 20px rgba(0,0,0,0.55);
      margin-top: 8px;
    }
    .hero-copy p {
      font-size: clamp(0.92rem, 1.4vw, 1.08rem);
      color: rgba(255,255,255,0.92);
      max-width: 520px;
      margin: 0 auto 30px;
      line-height: 1.7;
      text-shadow: 0 1px 8px rgba(0,0,0,0.55);
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      justify-content: center;
    }
    .btn-ghost-white {
      background: rgba(255,255,255,0.08);
      border: 1.5px solid rgba(255,255,255,0.70);
      color: #fff;
      border-radius: var(--radius-sm);
      padding: 14px 28px;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      transition: background 0.2s, border-color 0.2s, color 0.2s;
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      text-shadow: 0 1px 4px rgba(0,0,0,0.40);
    }
    .btn-ghost-white:hover {
      background: rgba(255,255,255,0.18);
      border-color: #fff;
    }
    /* Progress-bar slide indicators */
    .hero-dots {
      position: absolute;
      bottom: clamp(22px, 4vh, 38px);
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
      z-index: 3;
    }
    .hero-dot {
      width: 48px;
      height: 3px;
      border-radius: 2px;
      background: rgba(255,255,255,0.28);
      cursor: pointer;
      transition: background 0.3s;
      position: relative;
      overflow: hidden;
    }
    .hero-dot::after {
      content: "";
      position: absolute;
      inset-block: 0;
      left: 0;
      width: 0%;
      background: var(--green);
      border-radius: 2px;
    }
    .hero-dot.active::after {
      animation: heroProgress 6s linear forwards;
    }
    @keyframes heroProgress {
      from { width: 0%; }
      to   { width: 100%; }
    }
    /* Prev/Next arrows â€” minimal, edge-anchored */
    .hero-nav { display: none; }
    .hero-dots { display: none; }
    .hero-nav-removed {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 3;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: rgba(255,255,255,0.10);
      border: 1px solid rgba(255,255,255,0.28);
      color: #fff;
      display: grid;
      place-items: center;
      font-size: 1.1rem;
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      transition: background 0.25s, border-color 0.25s, transform 0.25s;
      opacity: 0;
    }
    .hero:hover .hero-nav { opacity: 1; }
    .hero-nav:hover {
      background: var(--green);
      border-color: var(--green);
      transform: translateY(-50%) scale(1.08);
    }
    .hero-nav-prev { left: clamp(16px, 2.5vw, 36px); }
    .hero-nav-next { right: clamp(16px, 2.5vw, 36px); }

    /* Brand strip */
    /* =============================================
       TRUST BAR â€” dual-row opposite marquee
    ============================================= */
    .trust-bar {
      padding: 44px 0 40px;
      position: relative;
      background-color: var(--white);
      background-image: repeating-linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.05) 0px,
        rgba(0, 0, 0, 0.05) 1px,
        transparent 1px,
        transparent 40px
      );
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      overflow: hidden;
    }
    .trust-bar::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to right,
        var(--white) 0%,
        transparent 18%,
        transparent 82%,
        var(--white) 100%
      );
      pointer-events: none;
      z-index: 2;
    }
    .trust-bar-heading {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      margin-bottom: 28px;
    }
    .trust-bar-heading p {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--muted);
      white-space: nowrap;
      flex-shrink: 0;
    }
    .trust-bar-line {
      flex: 1;
      max-width: 80px;
      height: 3px;
      background-image: 
        repeating-linear-gradient(
          90deg,
          var(--line) 0px,
          var(--line) 4px,
          transparent 4px,
          transparent 8px
        );
      position: relative;
    }
    .trust-bar-line::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background-image: 
        repeating-linear-gradient(
          90deg,
          transparent 0px,
          transparent 2px,
          var(--line) 2px,
          var(--line) 6px,
          transparent 6px,
          transparent 10px
        );
      opacity: 0.6;
    }
    .trust-rows {
      display: flex;
      flex-direction: column;
      gap: 14px;
      position: relative;
    }

    .trust-row-wrap {
      position: relative;
      z-index: 1;
      overflow: hidden;
      -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
      mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
    }
    .trust-row-wrap--rev {
    }
    .trust-track {
      display: flex;
      align-items: center;
      width: max-content;
      animation-duration: 28s;
      animation-timing-function: linear;
      animation-iteration-count: infinite;
    }
    .trust-track--fwd { animation-name: trustFwd; }
    .trust-track--rev { animation-name: trustRev; }
    @keyframes trustFwd {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    @keyframes trustRev {
      from { transform: translateX(-50%); }
      to   { transform: translateX(0); }
    }
    .trust-logo-card {
      flex-shrink: 0;
      margin-right: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 210px;
      height: 80px;
      padding: 12px 18px;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 10px;
      transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
    }
    .trust-logo-card:hover {
      border-color: rgba(var(--accent-rgb), 0.45);
      box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
      transform: translateY(-2px);
    }
    .trust-logo-card img {
      display: block;
      max-height: 50px;
      max-width: 160px;
      width: auto;
      height: auto;
      object-fit: contain;
      filter: none;
      transition: filter 0.25s var(--ease);
    }
    .trust-logo-card:hover img { filter: brightness(1.1); }
    /* Keep the marquee moving continuously (no hover pause). */
    .trust-track:hover { }

    /* Section common */
    section { padding: var(--section-pad) 0; }
    section.hero,
    section.cta-band { padding: 0; }
    section + section:not(.cta-band) {
      padding-top: calc(var(--section-pad) * 0.5);
    }
    .trust-bar + section,
    .trust-bar + div {
      padding-top: calc(var(--section-pad) * 0.45);
    }
    .section-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 32px;
    }
    .section-head.centered {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .section-eyebrow {
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--green-dark);
      font-weight: 700;
      margin-bottom: 10px;
    }
    .section-title {
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 600;
      line-height: 1.15;
      color: var(--ink);
    }
    .section-desc {
      color: var(--muted);
      max-width: 520px;
      margin-top: 12px;
      font-size: 0.98rem;
    }


    /* Categories â€” Pepperfry-style tabbed product showcase */
    .categories { background: var(--surface); }

    /* Tab pills */
    .ptab-tabs {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-top: 34px;
    }
    .ptab-btn {
      padding: 10px 22px;
      border-radius: 999px;
      background: var(--white);
      border: 1.5px solid var(--line);
      color: var(--ink-soft);
      font-size: 0.84rem;
      font-weight: 600;
      letter-spacing: 0.01em;
      cursor: pointer;
      transition: border-color 0.25s, color 0.25s, background 0.25s, box-shadow 0.25s, transform 0.25s;
    }
    .ptab-btn:hover {
      border-color: rgba(var(--accent-rgb), 0.55);
      color: var(--green-dark);
      transform: translateY(-1px);
    }
    .ptab-btn.active {
      border-color: var(--green);
      color: var(--green-dark);
      background: var(--green-light);
      box-shadow: 0 4px 14px rgba(var(--accent-rgb), 0.22);
    }

    /* Panels */
    .ptab-panels { margin-top: 36px; }
    .ptab-panel {
      display: none;
      flex-wrap: wrap;
      justify-content: center;
      gap: 22px;
    }
    .ptab-panel.active {
      display: flex;
      animation: ptabFade 0.45s var(--ease) both;
    }
    .ptab-panel:not(.active) .ptab-view-all { display: none; }
    @keyframes ptabFade {
      from { opacity: 0; transform: translateY(14px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* Product card â€” image tile + label below (Pepperfry style) */
    .ptab-card {
      flex: 0 0 auto;
      width: clamp(150px, 15vw, 196px);
      text-align: center;
      transition: transform 0.3s var(--ease);
    }
    .ptab-card:hover { transform: translateY(-6px); }
    .ptab-img {
      position: relative;
      aspect-ratio: 1;
      overflow: hidden;
      border-radius: var(--radius-sm);
      transition: box-shadow 0.3s;
    }
    .ptab-card:hover .ptab-img {
      box-shadow: var(--shadow-sm);
    }
    .ptab-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s var(--ease);
    }
    .ptab-card:hover .ptab-img img { transform: scale(1.08); }
    .ptab-card h4 {
      margin-top: 12px;
      font-size: 0.84rem;
      font-weight: 600;
      color: var(--ink-soft);
      line-height: 1.35;
      transition: color 0.25s;
    }
    .ptab-card:hover h4 { color: var(--green-dark); }

    .ptab-view-all {
      flex: 0 0 100%;
      display: flex;
      justify-content: center;
      margin-top: 10px;
    }
    .ptab-view-all .btn.btn-primary.ptab-view-all-btn {
      min-width: 148px;
      letter-spacing: 0.1em;
      border-radius: 999px;
      padding: 11px 28px;
      border: none;
      background: var(--green);
      color: var(--white);
      box-shadow: 0 10px 24px rgba(141, 198, 63, 0.32);
    }
    .ptab-view-all .btn.btn-primary.ptab-view-all-btn:hover {
      background: var(--green-dark);
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 14px 30px rgba(141, 198, 63, 0.38);
    }


    /* Stats */
    .stats {
      position: relative;
      overflow: hidden;
      background-color: var(--white);
      background-image: repeating-linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.05) 0px,
        rgba(0, 0, 0, 0.05) 1px,
        transparent 1px,
        transparent 40px
      );
      color: var(--ink);
      padding: 40px 0;
      margin-block: calc(var(--section-pad) * -0.2);
    }
    .stats::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to right,  var(--white) 0%, transparent 18%, transparent 82%, var(--white) 100%),
        linear-gradient(to top,    var(--white) 0%, transparent 35%);
      pointer-events: none;
      z-index: 2;
    }
    .stats .container { position: relative; z-index: 3; }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      max-width: 1120px;
      margin-inline: auto;
    }
    .stat-card {
      position: relative;
      display: grid;
      grid-template-columns: auto 1fr;
      grid-template-rows: auto auto;
      align-items: center;
      gap: 2px 14px;
      text-align: left;
      padding: 14px 12px;
      justify-self: center;
      border: 1px solid rgba(var(--accent-rgb), 0.15);
      border-top: none;
      border-radius: 0 0 12px 12px;
      background: var(--white);
      transition: border-color 0.3s, background 0.3s;
    }
    .stat-card:hover {
      border-color: rgba(var(--accent-rgb), 0.35);
      background: #f6faf0;
    }

    .stat-icon-wrap {
      grid-row: 1 / 3;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--deep);
      border: 1.5px solid rgba(var(--accent-rgb), 0.45);
      display: grid;
      place-items: center;
      flex-shrink: 0;
      transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
    }
    .stat-card:hover .stat-icon-wrap {
      background: #000000;
      border-color: var(--green);
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    }
    .stat-icon-wrap img {
      width: 24px;
      height: 24px;
      object-fit: contain;
      filter: none;
      opacity: 1;
    }
    .stat-num {
      font-family: "DM Sans", sans-serif;
      font-size: 1.85rem;
      font-weight: 700;
      color: var(--ink);
      line-height: 1;
      margin-bottom: 0;
      letter-spacing: -0.02em;
      align-self: end;
    }
    .stat-num .stat-plus {
      color: var(--green);
      font-weight: 700;
      font-size: 1.5rem;
    }
    .stat-label {
      font-size: 0.62rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      line-height: 1.35;
      max-width: none;
      align-self: start;
      transition: color 0.3s;
    }
    .stat-card:hover .stat-label { color: var(--ink-soft); }

    /* Process */
    .process-steps {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
      position: relative;
    }
    .process-steps::before {
      content: "";
      position: absolute;
      top: 28px;
      left: 10%;
      right: 10%;
      height: 2px;
      background: var(--line);
      z-index: 0;
    }
    .process-step {
      text-align: center;
      position: relative;
      z-index: 1;
    }
    .step-num {
      width: 56px;
      height: 56px;
      margin: 0 auto 18px;
      border-radius: 50%;
      background: var(--green-light);
      color: var(--green-dark);
      display: grid;
      place-items: center;
      font-weight: 700;
      font-size: 1rem;
      border: 3px solid var(--white);
      box-shadow: var(--shadow-sm);
      transition: 0.3s;
    }
    .process-step:hover .step-num {
      background: var(--green);
      color: var(--white);
      transform: scale(1.08);
    }
    .process-step h4 {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--ink-soft);
      line-height: 1.35;
    }

    /* Testimonials â€” centered spotlight carousel */
    .testimonials {
      background: var(--white);
      overflow: hidden;
      padding: var(--section-pad) 0;
    }
    .cs-carousel-wrap {
      position: relative;
      margin-top: 10px;
      max-width: 1280px;
      margin-inline: auto;
      padding: 0 72px;
    }
    .cs-carousel { position: relative; touch-action: pan-y pinch-zoom; cursor: grab; overflow: hidden; }
    .cs-carousel.cs-dragging { cursor: grabbing; user-select: none; }
    .cs-nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 3;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--white);
      border: 1px solid rgba(0, 0, 0, 0.1);
      color: var(--ink);
      display: grid;
      place-items: center;
      font-size: 1.05rem;
      line-height: 1;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .cs-nav-btn:hover {
      background: var(--green);
      color: var(--white);
      border-color: var(--green);
      transform: translateY(-50%) scale(1.06);
      box-shadow: 0 6px 20px rgba(141, 198, 63, 0.35);
    }
    .cs-nav-prev { left: 10px; }
    .cs-nav-next { right: 10px; }
    @media (max-width: 768px) {
      .cs-carousel-wrap { padding: 0 48px; }
      .cs-nav-btn { width: 38px; height: 38px; font-size: 0.95rem; }
      .cs-nav-prev { left: 4px; }
      .cs-nav-next { right: 4px; }
    }
    .cs-track {
      display: flex;
      align-items: stretch;
      gap: 24px;
      will-change: transform;
    }
    .cs-card {
      flex: 0 0 calc(50% - 12px);
      display: grid;
      grid-template-columns: 160px 1fr;
      gap: 24px;
      align-items: center;
      padding: 24px;
      border-radius: 18px;
      opacity: 0.45;
      transform: scale(0.97);
      transition: opacity 0.6s, transform 0.6s;
    }
    .cs-card.tint-a { background: #fbf5e1; }
    .cs-card.tint-b { background: #eef2f9; }
    .cs-card.active { opacity: 1; transform: scale(1); }
    .cs-photo {
      border-radius: 12px;
      overflow: hidden;
      aspect-ratio: 4/5;
      background: var(--white);
    }
    .cs-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .cs-photo.logo { padding: 20px; border: 1px solid rgba(0, 0, 0, 0.06); }
    .cs-photo.logo img { object-fit: contain; }
    .cs-stars { color: #fbbc04; font-size: 1rem; letter-spacing: 3px; margin-bottom: 14px; }
    .cs-quote {
      font-size: 0.9rem;
      font-style: italic;
      line-height: 1.75;
      color: var(--ink-soft);
      margin-bottom: 18px;
    }
    .cs-author strong { display: block; font-size: 0.92rem; font-weight: 700; color: var(--ink); }
    .cs-author span { display: block; font-size: 0.76rem; color: var(--muted); margin-top: 3px; }
    @media (max-width: 1100px) {
      .cs-card { flex: 0 0 calc(50% - 12px); grid-template-columns: 130px 1fr; }
    }
    @media (max-width: 768px) {
      .cs-track { gap: 16px; }
      .cs-card {
        flex: 0 0 calc(100% - 0px);
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 20px;
      }
      .cs-photo { aspect-ratio: 16/10; max-height: 200px; }
      .cs-quote { font-size: 0.88rem; }
    }

    /* Quick CTA strip â€” hotel lobby photo with readable overlay */
    section.cta-strip { padding: 0 0 calc(var(--section-pad) * 0.6); }
    .cta-strip-inner {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px 40px;
      min-height: 92px;
      border-radius: 999px;
      overflow: hidden;
      box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
    }
    .cta-strip-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 40%;
      display: block;
    }
    .cta-strip-inner::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(105deg,
          rgba(0, 0, 0, 0.22) 0%,
          rgba(0, 0, 0, 0.12) 45%,
          rgba(0, 0, 0, 0.18) 100%);
      pointer-events: none;
    }
    .cta-strip-inner::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 2;
      background: linear-gradient(90deg, rgba(95, 140, 45, 0.12) 0%, transparent 58%);
      pointer-events: none;
    }
    .cta-strip-content {
      position: relative;
      z-index: 3;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 28px;
      flex-wrap: wrap;
      width: 100%;
    }
    .cta-strip-inner p {
      font-size: 1.28rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: 0.01em;
      -webkit-text-stroke: 0.75px #000;
      paint-order: stroke fill;
      text-shadow:
        -1px -1px 0 #000,
        0 -1px 0 #000,
        1px -1px 0 #000,
        -1px 0 0 #000,
        1px 0 0 #000,
        -1px 1px 0 #000,
        0 1px 0 #000,
        1px 1px 0 #000;
    }
    .cta-strip-inner p strong { color: var(--green); font-weight: 800; }
    .cta-strip-btn {
      flex: 0 0 auto;
      padding: 13px 28px;
      border-radius: 999px;
      background: var(--green);
      color: var(--white);
      border: none;
      font-family: inherit;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      cursor: pointer;
      box-shadow: 0 10px 24px rgba(141, 198, 63, 0.32);
      transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
    }
    .cta-strip-btn:hover {
      transform: translateY(-2px);
      background: var(--green-dark);
      box-shadow: 0 14px 30px rgba(141, 198, 63, 0.38);
    }
    @media (max-width: 640px) {
      .cta-strip-inner {
        padding: 28px 24px;
        min-height: auto;
        border-radius: 24px;
      }
      .cta-strip-content {
        flex-direction: column;
        text-align: center;
        gap: 14px;
      }
    }

    /* Footer â€” deep forest, copper accent */
    .site-footer {
      background: var(--deep);
      color: rgba(255,255,255,0.7);
      padding: 48px 0 24px;
      border-top: 4px solid var(--green);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 36px;
    }
    .footer-brand .brand { margin-bottom: 20px; }
    .footer-brand .brand-mark { background: var(--green); }
    .footer-brand .brand-text strong { color: var(--white); }
    .footer-brand p { font-size: 0.9rem; line-height: 1.7; }
    .footer-col h4 {
      color: var(--white);
      font-size: 0.75rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }
    .footer-col li + li { margin-top: 10px; }
    .footer-col a { font-size: 0.9rem; transition: color 0.2s; }
    .footer-col a:hover { color: var(--green); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      font-size: 0.82rem;
      flex-wrap: wrap;
    }
    .footer-certs { display: flex; gap: 16px; align-items: center; }
    .footer-certs img { height: 60px; width: auto; filter: brightness(0) invert(0.7); }

    /* V3 editorial theme â€” component polish */
    .btn { border-radius: 8px; letter-spacing: 0.08em; }
    .btn-primary { color: var(--white); }
    .trust-bar { background-color: var(--white); background-image: repeating-linear-gradient(90deg, rgba(0,0,0,0.05) 0px, rgba(0,0,0,0.05) 1px, transparent 1px, transparent 40px); }
    .industries { background: var(--deep-mid); }
    .industries .section-eyebrow { color: var(--green); }
    .industry-card::after {
      background: linear-gradient(to top, rgba(20, 20, 20, 0.88) 0%, transparent 62%);
    }
    .ba-tag.before { background: rgba(20, 20, 20, 0.88); }
    .ba-tag.after { background: var(--green); color: var(--white); }
    .quote-tab { color: var(--white); border-radius: 8px 0 0 8px; }
    .footer-social a:hover { color: var(--white); }
    .mega-menu { border-color: var(--line); box-shadow: var(--shadow); }
    .product-mega { border-top: 3px solid var(--green); }

    /* Hero â€” V3 full-width cinematic */
    .hero {
      min-height: clamp(440px, 78svh, 720px);
      max-height: 720px;
    }
    .hero-content { padding: 64px 0; }
    .hero-copy h1 { font-size: clamp(2.2rem, 5vw, 4.8rem); max-width: 1000px; }

    /* Brand programs spotlight */
    /* =============================================
       BRAND PROGRAMS â€” Semi-Circular Carousel
    ============================================= */
    .brand-programs {
      background: var(--ink);
      overflow: hidden;
      padding: var(--section-pad) 0;
    }
    .brand-programs .section-eyebrow { color: var(--green); }
    .brand-programs .section-title { color: var(--white); }
    .brand-programs .section-desc { color: rgba(255, 255, 255, 0.6); }
    
    .bp-head { 
      text-align: center; 
      max-width: 760px; 
      margin: 0 auto clamp(36px, 5vw, 56px);
    }
    .bp-head .section-desc { 
      margin: 14px auto 0; 
      font-size: clamp(0.9rem, 1vw, 1.05rem);
    }
    
    /* Tab navigation for brand selection */
    .bp-tabs {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: clamp(8px, 2vw, 18px);
      max-width: 100%;
      margin: 0 auto clamp(24px, 4vw, 40px);
      flex-wrap: wrap;
      padding: 0 var(--gutter);
    }
    
    .bp-arrow {
      flex: 0 0 auto;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1.5px solid rgba(255, 255, 255, 0.32);
      background: rgba(255, 255, 255, 0.06);
      color: var(--white);
      display: grid;
      place-items: center;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      position: relative;
    }
    .bp-arrow:hover { 
      background: rgba(255, 255, 255, 0.16); 
      border-color: rgba(255, 255, 255, 0.68);
      transform: scale(1.1);
      box-shadow: 0 8px 24px rgba(141, 198, 63, 0.2);
    }
    .bp-arrow:active { 
      transform: scale(0.92); 
    }
    .bp-arrow svg { 
      width: 18px; 
      height: 18px; 
      stroke-width: 2.5;
    }
    
    .bp-tab-track {
      display: flex;
      gap: 10px;
      padding: 0;
      justify-content: center;
      flex-wrap: wrap;
    }
    
    .bp-tab {
      flex: 0 0 auto;
      padding: 11px 22px;
      border-radius: 999px;
      border: 1.5px solid rgba(255, 255, 255, 0.22);
      background: rgba(255, 255, 255, 0.04);
      color: rgba(255, 255, 255, 0.74);
      font-size: 0.76rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      cursor: pointer;
      white-space: nowrap;
      transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      position: relative;
    }
    .bp-tab:hover { 
      border-color: rgba(255, 255, 255, 0.62); 
      color: var(--white);
      background: rgba(255, 255, 255, 0.09);
      transform: translateY(-1px);
    }
    .bp-tab.active { 
      background: var(--white); 
      border-color: var(--white); 
      color: var(--ink); 
      box-shadow: 0 10px 32px rgba(141, 198, 63, 0.24);
      font-weight: 700;
    }
    
    /* Stage container for carousel */
    .bp-stage-clip {
      position: relative;
      overflow: hidden;
      width: 100%;
      background: linear-gradient(135deg, rgba(10,10,10,0.8) 0%, rgba(20,20,20,0.6) 50%, rgba(10,10,10,0.8) 100%);
    }
    
    .bp-stage {
      position: relative;
       height: clamp(560px, 74vw, 800px);
      margin-top: 0;
      overflow: visible;
      display: flex;
      align-items: center;
      justify-content: center;
      perspective: 1200px;
    }
    
    /* Semi-circular card arrangement */
    .bp-card {
      position: absolute;
      left: 50%;
      top: 50%;
      width: clamp(220px, 18vw, 340px);
      height: auto;
      min-height: clamp(320px, 42vw, 520px);
      margin-left: calc(-1 * clamp(110px, 9vw, 170px));
       margin-top: calc(-1 * clamp(160px, 21vw, 260px));
      padding: clamp(24px, 2.8vw, 36px);
      border-radius: clamp(16px, 1.4vw, 24px);
      background: var(--card-bg, var(--white));
      color: var(--card-ink, var(--ink));
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      
      /* Transform origin at bottom center for fan/arc spread */
       /* Transform origin at bottom center for fan/arc spread */
       transform-origin: 50% calc(100% + clamp(360px, 48vw, 640px));
       transform: rotate(calc(var(--off, 0) * 24deg)) scale(var(--bp-scale, 0.78)) translateZ(0);
      transition: all 0.65s cubic-bezier(0.34, 1.56, 0.64, 1);
      will-change: transform, opacity;
      pointer-events: none;
      z-index: calc(10 - abs(var(--off, 0)) * 2);
    }
    
    .bp-card.active {
      --bp-scale: 1;
      --bp-opacity: 1;
      transform: rotate(0deg) scale(1) translateZ(0);
      box-shadow: 0 32px 96px rgba(0, 0, 0, 0.56);
      z-index: 100 !important;
      pointer-events: auto;
    }
    
    .bp-card:not(.active):hover {
      --bp-opacity: 0.96;
    }
    
    /* Distance-based visibility and styling */
    .bp-card[data-dist="1"] { 
       --bp-scale: 0.88;
       --bp-opacity: 0.96;
      pointer-events: auto;
      z-index: 9;
    }
    .bp-card[data-dist="2"] { 
       --bp-scale: 0.76;
       --bp-opacity: 0.78;
      z-index: 8;
    }
    .bp-card[data-dist="3"] {
       --bp-scale: 0.64;
       --bp-opacity: 0.52;
      z-index: 7;
    }
    .bp-card[data-dist="4"],
    .bp-card[data-dist="5"] {
       --bp-scale: 0.56;
       --bp-opacity: 0.28;
      pointer-events: none;
      z-index: 1;
    }
    
    /* Badge â€” "View Program" label */
    .bp-badge {
      position: absolute;
      top: -1px;
      left: 50%;
      transform: translate(-50%, -100%);
      background: linear-gradient(135deg, var(--green) 0%, #a0d940 100%);
      color: var(--white);
      border: none;
      font-size: 0.63rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 9px 20px;
      border-radius: 999px;
      opacity: 0;
      transition: all 0.4s 0.25s cubic-bezier(0.22, 1, 0.36, 1);
      pointer-events: none;
      white-space: nowrap;
      box-shadow: 0 8px 24px rgba(141, 198, 63, 0.36);
      backdrop-filter: blur(2px);
      -webkit-backdrop-filter: blur(2px);
    }
    .bp-card.active .bp-badge { 
      opacity: 1;
      transform: translate(-50%, -120%);
    }
    
    /* Card content */
    .bp-card-head { 
      display: flex; 
      align-items: center; 
      gap: 14px; 
      margin-bottom: 18px;
    }
    .bp-logo {
      flex: 0 0 auto;
      width: 50px;
      height: 50px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.95);
      border: 1px solid rgba(0, 0, 0, 0.06);
      display: grid;
      place-items: center;
      overflow: hidden;
      flex-shrink: 0;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }
    .bp-logo img { 
      width: 42px; 
      height: 34px; 
      object-fit: contain;
      filter: none;
    }
    .bp-card-head h3 { 
      font-size: clamp(0.95rem, 1.1vw, 1.22rem); 
      font-weight: 700; 
      letter-spacing: 0.01em;
      line-height: 1.3;
    }
    .bp-card > p { 
      font-size: clamp(0.78rem, 0.88vw, 0.9rem); 
      line-height: 1.68; 
      color: var(--card-muted, var(--muted)); 
      min-height: auto;
      margin-bottom: 18px;
    }
    
    /* Stats section */
    .bp-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin: 20px 0 24px;
      padding-top: 18px;
      border-top: 1.5px solid var(--card-line, var(--line));
    }
    .bp-stat strong { 
      display: block; 
      font-size: clamp(1rem, 1.4vw, 1.5rem); 
      font-weight: 800; 
      line-height: 1.1; 
      margin-bottom: 6px;
      color: var(--card-ink, var(--ink));
    }
    .bp-stat span { 
      display: block; 
      font-size: 0.68rem; 
      line-height: 1.45; 
      color: var(--card-muted, var(--muted));
      letter-spacing: 0.01em;
    }
    
    /* Action link */
    .bp-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.74rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--card-ink, var(--ink));
      border-bottom: 1.5px solid var(--green);
      padding-bottom: 3px;
      transition: all 0.25s ease;
    }
    .bp-link:hover {
      gap: 12px;
      letter-spacing: 0.14em;
    }
    .bp-link span { 
      color: var(--green); 
      font-weight: 800;
    }
    
    @media (max-width: 1200px) {
      .bp-stage { height: clamp(520px, 72vw, 720px); }
      .bp-card { width: clamp(210px, 18vw, 340px); min-height: clamp(300px, 40vw, 480px); }
    }
    @media (max-width: 1024px) {
      .bp-stage { height: clamp(480px, 70vw, 680px); }
      .bp-card { width: clamp(200px, 20vw, 320px); min-height: clamp(290px, 38vw, 460px); padding: 22px 20px; }
    }
    @media (max-width: 768px) {
      .bp-stage { height: clamp(420px, 75vw, 600px); }
      .bp-card { 
        width: clamp(200px, 80vw, 300px); 
        min-height: clamp(280px, 36vw, 420px);
        padding: 20px 18px; 
        transform-origin: 50% calc(100% + clamp(320px, 42vw, 480px));
      }
      .bp-tabs { 
        gap: 8px; 
        padding: 0 var(--gutter);
      }
      .bp-tab {
        padding: 9px 16px;
        font-size: 0.72rem;
      }
      .bp-arrow { width: 38px; height: 38px; }
      .bp-badge { 
        font-size: 0.58rem; 
        padding: 7px 12px;
      }
      .bp-card-head h3 { font-size: 0.95rem; }
      .bp-card > p { font-size: 0.75rem; }
      .bp-stat strong { font-size: clamp(0.95rem, 1.2vw, 1.3rem); }
    }
    @media (max-width: 640px) {
      .brand-programs {
        padding: clamp(24px, 3vw, 32px) 0;
      }
      .bp-stage { 
        height: clamp(380px, 78vw, 520px); 
      }
      .bp-card { 
        width: clamp(180px, 85vw, 280px); 
        min-height: clamp(260px, 34vw, 380px);
        padding: 18px 16px;
        transform-origin: 50% calc(100% + clamp(280px, 38vw, 420px));
      }
      .bp-head { 
        margin: 0 auto clamp(20px, 3vw, 32px);
      }
      .bp-head .section-eyebrow {
        font-size: 0.65rem;
      }
      .section-title { 
        font-size: clamp(1.8rem, 4.5vw, 2.4rem);
      }
      .bp-badge { 
        font-size: 0.55rem; 
        padding: 6px 11px;
      }
      .bp-card-head { gap: 10px; margin-bottom: 12px; }
      .bp-logo { width: 40px; height: 40px; }
      .bp-logo img { width: 34px; height: 26px; }
      .bp-card-head h3 { font-size: 0.88rem; }
      .bp-card > p { 
        font-size: 0.70rem; 
        margin-bottom: 12px;
      }
      .bp-stats { 
        margin: 12px 0 14px;
        padding-top: 10px;
        gap: 10px;
      }
      .bp-stat strong { 
        font-size: clamp(0.85rem, 1vw, 1.1rem); 
        margin-bottom: 4px;
      }
      .bp-stat span { font-size: 0.65rem; }
      .bp-link { 
        font-size: 0.7rem;
        gap: 6px;
      }
    }

    /* Why choose Sara */
    .why-choose { background: var(--white); }
    .why-top {
      display: grid;
      grid-template-columns: 1fr 1.15fr;
      gap: clamp(32px, 5vw, 72px);
      align-items: stretch;
    }
    .why-copy {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      gap: 0;
      padding: 8px 0;
    }
    .why-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--ink-soft);
      margin-bottom: 18px;
    }
    .why-eyebrow span { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
    .why-title { font-size: clamp(2rem, 3.8vw, 3rem); max-width: 460px; }
    .why-desc {
      font-size: 0.95rem;
      line-height: 1.75;
      color: var(--ink-soft);
      max-width: 420px;
      margin-bottom: 26px;
    }
    /* Trust highlights below CTA */
    .why-trust {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-top: 28px;
      padding-top: 24px;
      border-top: 1px solid var(--line);
    }
    .why-trust-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }
    .why-trust-icon {
      flex-shrink: 0;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: var(--green-light);
      border: 1.5px solid rgba(var(--accent-rgb), 0.30);
      display: grid;
      place-items: center;
      margin-top: 1px;
    }
    .why-trust-icon svg {
      width: 13px;
      height: 13px;
      color: var(--green-dark);
      stroke-width: 2.5;
    }
    .why-trust-item strong {
      display: block;
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 2px;
    }
    .why-trust-item p {
      font-size: 0.76rem;
      color: var(--muted);
      line-height: 1.55;
      margin: 0;
    }

    .why-cta {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      padding: 7px 7px 7px 22px;
      border-radius: 999px;
      background: var(--green);
      border: 1px solid var(--green);
      font-family: inherit;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--white);
      cursor: pointer;
      transition: background 0.3s, border-color 0.3s;
    }
    .why-cta:hover { background: #6aaf18; border-color: #6aaf18; }
    .why-cta-arrow {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(0,0,0,0.18);
      color: var(--white);
      display: grid;
      place-items: center;
      transition: transform 0.3s;
    }
    .why-cta-arrow svg { width: 13px; height: 13px; }
    .why-cta:hover .why-cta-arrow { transform: translateX(3px); }
     .why-media { border-radius: var(--radius); overflow: hidden; min-height: 420px; max-height: 560px; }
     .why-media img { width: 100%; height: 100%; max-width: 640px; max-height: 560px; object-fit: contain; object-position: center; display: block; margin: 0 auto; }
    .why-points {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: clamp(20px, 3vw, 40px);
      margin-top: clamp(36px, 5vw, 64px);
    }
    .why-point {
      position: relative;
      padding-top: 26px;
      border-top: 1px solid var(--line);
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
      transition: opacity 0.3s;
    }
    .why-point::before {
      content: "";
      position: absolute;
      top: -1px;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--green);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.45s var(--ease);
    }
    .why-point.active::before { transform: scaleX(1); }
    .why-point:not(.active) { opacity: 0.62; }
    .why-point:not(.active):hover { opacity: 1; }
    .why-point:not(.active):hover::before { transform: scaleX(0.35); }
    .why-point:focus-visible { outline: 2px solid var(--green-dark); outline-offset: 4px; border-radius: 4px; }
    .why-point-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
    .why-num {
      flex: 0 0 auto;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: var(--surface);
      border: 1.5px solid var(--line);
      color: var(--ink-soft);
      font-size: 0.62rem;
      font-weight: 800;
      display: grid;
      place-items: center;
      transition: background 0.35s, border-color 0.35s, color 0.35s;
    }
    .why-point.active .why-num,
    .why-point:hover .why-num { background: var(--green); border-color: var(--green); color: var(--ink); }
    .why-point-head h3 { font-size: 0.92rem; font-weight: 700; color: var(--ink); }
    .why-point p { font-size: 0.82rem; line-height: 1.65; color: var(--muted); }
    .why-desc, .why-media img { transition: opacity 0.32s ease; }
    .why-desc.is-fading, .why-media img.is-fading, .why-trust.is-fading { opacity: 0; }
    @media (max-width: 1024px) {
      .why-top { grid-template-columns: 1fr; }
      .why-media { min-height: 0; aspect-ratio: 16/10; }
      .why-points { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 640px) {
      .why-points { grid-template-columns: 1fr; }
    }

    /* Industries we serve */
    .industries { background: var(--ink); color: var(--white); }
    .industries .section-eyebrow { color: var(--green); }
    .industries .section-title { color: var(--white); }
    .industries .section-desc { color: rgba(255,255,255,0.65); }
    .industry-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 40px;
    }
    .industry-card {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      aspect-ratio: 4/3;
      border: 1px solid rgba(255,255,255,0.1);
    }
    .industry-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s var(--ease);
    }
    .industry-card:hover img { transform: scale(1.06); }
    .industry-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(20, 20, 20, 0.88) 0%, transparent 62%);
    }
    .industry-label {
      position: absolute;
      left: 16px;
      right: 16px;
      bottom: 16px;
      z-index: 2;
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .industry-description {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(20, 20, 20, 0.95) 0%, rgba(20, 20, 20, 0.8) 100%);
      padding: 24px 16px 16px;
      z-index: 3;
      font-size: 0.85rem;
      line-height: 1.5;
      color: var(--white);
      opacity: 0;
      transform: translateY(100%);
      transition: all 0.4s var(--ease);
      pointer-events: none;
    }
    .industry-card:hover .industry-description {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    /* Process â€” visual steps with animations */
    .process { background: var(--surface); padding: 80px 0; }
    .process-visual {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
      margin-top: 60px;
      position: relative;
    }
    
    /* Connecting line container */
    .process-visual::before {
      content: "";
      position: absolute;
      top: 40px;
      left: 10%;
      right: 10%;
      height: 3px;
      background: transparent;
      z-index: 0;
    }
    
    /* Animated flow line that shows progression */
    .process-visual::after {
      content: "";
      position: absolute;
      top: 40px;
      left: 10%;
      width: 0%;
      height: 3px;
      background: transparent;
      z-index: 1;
    }
    
    @keyframes flowLine {
      0% { 
        width: 0%;
        left: 10%;
      }
      100% { 
        width: 80%;
        left: 10%;
      }
    }
    
    /* Arrow indicators showing flow direction */
    .process-card::before {
      content: "â†’";
      position: absolute;
      right: -22px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 1.8rem;
      font-weight: bold;
      color: var(--green);
      z-index: 10;
      opacity: 1;
    }
    
    .process-card:last-child::before {
      display: none;
    }
    
    /* Step cards with hover effects */
    .process-card {
      text-align: center;
      position: relative;
      z-index: 1;
      background: var(--white);
      border: 2px solid var(--line);
      border-radius: var(--radius);
      padding: 32px 16px 24px;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 0.6s ease-out forwards;
    }
    
    /* Staggered animation for each card */
    .process-card:nth-child(1) { animation-delay: 0.1s; }
    .process-card:nth-child(2) { animation-delay: 0.2s; }
    .process-card:nth-child(3) { animation-delay: 0.3s; }
    .process-card:nth-child(4) { animation-delay: 0.4s; }
    .process-card:nth-child(5) { animation-delay: 0.5s; }
    
    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    /* Connection pulse animation between cards */
    .process-card::after {
      content: "";
      display: none;
    }
    
    @keyframes pulseGreen {
      0% {
        opacity: 0;
      }
      100% {
        opacity: 0;
      }
    }
    
    /* Hover effects */
    .process-card:hover {
      border-color: var(--green);
      box-shadow: 0 12px 40px rgba(var(--accent-rgb), 0.15);
      transform: translateY(-8px);
    }
    
    /* Step number styling */
    .process-card .step-num {
      width: 72px;
      height: 72px;
      margin: 0 auto 20px;
      background: linear-gradient(135deg, var(--green) 0%, rgba(var(--accent-rgb), 0.8) 100%);
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: 700;
      box-shadow: 0 4px 12px rgba(var(--accent-rgb), 0.3);
      transition: all 0.4s ease;
      position: relative;
    }
    
    .process-card .step-num::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: rgba(var(--accent-rgb), 0.1);
      animation: ringPulse 2s ease-in-out infinite;
    }
    
    @keyframes ringPulse {
      0% {
        transform: scale(1);
        opacity: 1;
      }
      100% {
        transform: scale(1.3);
        opacity: 0;
      }
    }
    
    .process-card .step-num::after {
      content: '';
      position: absolute;
      inset: -6px;
      border-radius: 50%;
      border: 2px solid var(--green);
      opacity: 0;
      transition: opacity 0.4s ease;
    }
    
    .process-card:hover .step-num {
      transform: scale(1.1) rotate(360deg);
      box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.4);
    }
    
    .process-card:hover .step-num::after {
      opacity: 1;
    }
    
    /* Title and description styling */
    .process-card h4 {
      font-size: 1rem;
      font-weight: 700;
      line-height: 1.4;
      color: var(--ink);
      margin-bottom: 12px;
      transition: color 0.3s ease;
    }
    
    .process-card:hover h4 {
      color: var(--green);
    }
    
    .process-card p {
      font-size: 0.875rem;
      line-height: 1.6;
      color: var(--ink-soft);
      margin: 0;
    }

    /* Portfolio â€” drag-to-compare Before & After slider */
    .portfolio-ba { background: var(--white); }
    .ba-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-top: 36px;
      max-width: 1280px;
      margin-inline: auto;
    }
    .ba-card {
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--line);
      background: var(--white);
      box-shadow: var(--shadow-sm);
      transition: box-shadow 0.3s, transform 0.3s;
    }
    .ba-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

    /* Slider wrapper â€” 16:9 is less tall than 4:3 */
    .ba-slider {
      position: relative;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      cursor: ew-resize;
      user-select: none;
      -webkit-user-select: none;
      background: #111;
    }

    /* Both layers fill the container */
    .ba-layer {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }
    .ba-layer img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      pointer-events: none;
      draggable: false;
    }

    /* Before layer â€” full size, revealed from the left via clip-path (JS updates it).
       Keeping the layer full-width means the image aligns 1:1 with the after image. */
    .ba-before-layer {
      z-index: 1;
      clip-path: inset(0 50% 0 0);
    }
    /* Desaturated "pre-renovation" treatment so the before side reads distinctly */
    .ba-before-layer img {
      filter: grayscale(0.85) brightness(0.8) contrast(0.95);
    }

    /* After layer â€” always full width, behind */
    .ba-after-layer { z-index: 0; }

    /* Before / After text labels */
    .ba-label {
      position: absolute;
      bottom: 12px;
      padding: 4px 12px;
      border-radius: 4px;
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--white);
      pointer-events: none;
      z-index: 4;
    }
    .ba-label-before { left: 10px; background: rgba(20,20,20,0.85); }
    .ba-label-after  { right: 10px; background: rgba(var(--accent-rgb), 0.92); }

    /* Drag handle */
    .ba-handle {
      position: absolute;
      top: 0; bottom: 0;
      left: 50%;              /* JS overrides */
      z-index: 3;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      pointer-events: none;   /* button inside has pointer-events */
    }
    .ba-handle-track {
      flex: 1;
      width: 2px;
      background: rgba(255,255,255,0.85);
      box-shadow: 0 0 6px rgba(0,0,0,0.4);
    }
    .ba-handle-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--white);
      border: 2.5px solid rgba(var(--accent-rgb), 0.9);
      box-shadow: 0 4px 16px rgba(0,0,0,0.30);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      cursor: ew-resize;
      pointer-events: auto;
      transition: background 0.2s, border-color 0.2s, transform 0.2s;
      padding: 0;
    }
    .ba-handle-btn:hover,
    .ba-handle:focus .ba-handle-btn {
      background: var(--green);
      border-color: var(--green-dark);
      transform: translate(-50%, -50%) scale(1.1);
    }
    .ba-handle-btn svg {
      width: 14px;
      height: 14px;
      color: var(--green);
      flex-shrink: 0;
      transition: color 0.2s;
    }
    .ba-handle-btn:hover svg,
    .ba-handle:focus .ba-handle-btn svg { color: var(--white); }

    .ba-body { padding: 14px 16px; }
    .ba-body h3 { font-size: 0.88rem; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
    .ba-body p  { font-size: 0.78rem; color: var(--muted); }

    /* Get free estimate â€” final CTA */
    .estimate-cta {
      padding: 56px 0;
      background: linear-gradient(135deg, var(--deep-mid) 0%, var(--deep) 100%);
      color: var(--white);
      position: relative;
      overflow: hidden;
    }
    .estimate-cta::before {
      content: "";
      position: absolute;
      top: -50%;
      right: -10%;
      width: 50%;
      height: 150%;
      background: radial-gradient(ellipse, rgba(var(--accent-rgb), 0.14) 0%, transparent 70%);
      pointer-events: none;
    }
    .estimate-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: start;
      position: relative;
      z-index: 1;
    }
    .estimate-copy h2 {
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(2rem, 4vw, 2.8rem);
      margin-bottom: 16px;
    }
    .estimate-copy p { color: rgba(255,255,255,0.78); margin-bottom: 24px; line-height: 1.7; }
    .estimate-perks {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 28px;
    }
    .estimate-perk {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.88rem;
      color: rgba(255,255,255,0.85);
    }
    .estimate-perk::before {
      content: "\2713";
      color: var(--green);
      font-weight: 700;
    }
    .estimate-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 28px 28px 24px;
      color: var(--ink-soft);
      box-shadow: var(--shadow);
    }
    .estimate-card .quote-form-grid { margin-bottom: 10px; }
    .estimate-card .interest-tags { margin-bottom: 10px; }
    .estimate-card .form-group textarea {
      min-height: 72px;
      max-height: 72px;
    }
    .estimate-card .quote-form-actions {
      grid-template-columns: 1fr;
      margin-top: 6px;
    }
    .estimate-card .quote-form-actions .btn {
      width: 100%;
      border-radius: 999px;
      padding: 13px 20px;
    }
    .estimate-cta .btn.btn-primary {
      border-radius: 999px;
      padding: 14px 32px;
      border: none;
      background: var(--green);
      color: var(--white);
      box-shadow: 0 10px 24px rgba(141, 198, 63, 0.32);
    }
    .estimate-cta .btn.btn-primary:hover {
      background: var(--green-dark);
      box-shadow: 0 14px 30px rgba(141, 198, 63, 0.38);
    }
    section.estimate-cta { padding: clamp(48px, 7vw, 80px) 0; }

    /* FAQ â€” matches Sara Hospitality homepage */
    section.faq-section {
      padding: clamp(48px, 6vw, 72px) 0 clamp(56px, 7vw, 80px);
      background: var(--white);
    }
    .faq-heading {
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(1.75rem, 3.5vw, 2.25rem);
      font-weight: 700;
      text-align: center;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--ink);
      margin-bottom: clamp(28px, 4vw, 40px);
    }
    .faq-list {
      max-width: 720px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .faq-item {
      border: none;
      border-radius: 4px;
      background: #f3f3f3;
      overflow: hidden;
    }
    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 16px 20px;
      border: none;
      background: transparent;
      font: inherit;
      font-size: 0.92rem;
      font-weight: 500;
      line-height: 1.45;
      color: var(--ink);
      text-align: left;
      cursor: pointer;
    }
    .faq-question:hover { color: var(--ink-soft); }
    .faq-chevron {
      flex: 0 0 auto;
      width: 12px;
      height: 12px;
      border-right: 2px solid var(--ink);
      border-bottom: 2px solid var(--ink);
      transform: rotate(45deg);
      transition: transform 0.25s ease;
      margin-top: -4px;
    }
    .faq-item.open .faq-chevron { transform: rotate(-135deg); margin-top: 4px; }
    .faq-answer {
      display: none;
      padding: 0 20px 16px;
      font-size: 0.88rem;
      line-height: 1.65;
      color: var(--muted);
    }
    .faq-item.open .faq-answer { display: block; }
    .faq-hidden { display: none; }
    .faq-more {
      display: flex;
      justify-content: center;
      margin-top: 28px;
    }
    .faq-more .btn {
      border-radius: 6px;
      padding: 14px 36px;
      font-size: 0.72rem;
      letter-spacing: 0.1em;
    }

    /* Redesigned footer â€” V3 warm editorial */
    .site-footer {
      background: var(--deep);
      color: rgba(255,255,255,0.72);
      padding: 0;
      border-top: 3px solid var(--green);
    }
    .footer-top {
      padding: 44px 0 32px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
      gap: 40px;
    }
    .footer-brand .brand { margin-bottom: 18px; }
    .footer-brand .brand-mark { background: var(--green); color: var(--deep); }
    .footer-brand .brand-text strong { color: var(--white); }
    .footer-brand p { font-size: 0.88rem; line-height: 1.75; }
    .footer-logo-link {
      display: inline-flex;
      align-items: center;
      margin-bottom: 18px;
      text-decoration: none;
    }
    .footer-logo-link .brand-logo {
      display: block;
      width: min(300px, 100%);
      height: auto;
    }
    .footer-social {
      display: flex;
      gap: 10px;
      margin-top: 18px;
    }
    .footer-social a {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,0.15);
      display: grid;
      place-items: center;
      font-size: 0.75rem;
      font-weight: 700;
      transition: background 0.2s, border-color 0.2s;
    }
    .footer-social a:hover { background: var(--green); border-color: var(--green); color: var(--white); }
    .footer-social a svg {
      width: 16px;
      height: 16px;
      display: block;
    }

    .footer-col h4 {
      color: var(--green);
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .footer-col li + li { margin-top: 8px; }
    .footer-col a { font-size: 0.88rem; transition: color 0.2s; }
    .footer-col a:hover { color: var(--white); }
    .footer-map-wrap {
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.12);
      background: rgba(255,255,255,0.04);
      margin-bottom: 14px;
    }
    .footer-map {
      display: block;
      width: 100%;
      height: 180px;
      border: 0;
    }
    .footer-map-logos {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px 14px;
    }
    .footer-map-logos img {
      height: 38px;
      width: auto;
      max-width: 120px;
      object-fit: contain;
      filter: brightness(0) invert(1);
    }
    .footer-bottom {
      padding: 20px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      font-size: 0.78rem;
      flex-wrap: wrap;
      color: rgba(255,255,255,0.5);
    }
    .footer-certs { display: flex; gap: 14px; align-items: center; }
    .footer-certs img { height: 50px; width: auto; filter: brightness(0) invert(0.7); }


    section.estimate-cta { padding: clamp(48px, 7vw, 80px) 0; }
    /* Floating elements */
    .quote-tab {
      position: fixed;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      z-index: 900;
      background: var(--green);
      color: var(--white);
      writing-mode: vertical-rl;
      text-orientation: mixed;
      padding: 20px 10px;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      border-radius: 10px 0 0 10px;
      box-shadow: -4px 0 20px rgba(var(--accent-rgb),0.4);
      transition: padding 0.2s, background 0.2s;
    }
    .quote-tab:hover { background: var(--green-dark); padding-right: 14px; }

    .whatsapp-fab {
      position: fixed;
      right: max(16px, env(safe-area-inset-right, 16px));
      bottom: max(16px, env(safe-area-inset-bottom, 16px));
      z-index: 900;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #25d366;
      color: var(--white);
      display: grid;
      place-items: center;
      box-shadow: 0 8px 24px rgba(37,211,102,0.4);
      transition: transform 0.2s;
    }
    .whatsapp-fab:hover { transform: scale(1.08); }
    .whatsapp-fab svg { width: 28px; height: 28px; }

    /* Quote Modal â€” matches live site, no scroll */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      z-index: 2000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 16px;
      opacity: 0;
      visibility: hidden;
      transition: 0.3s;
    }
    .modal-overlay.open { opacity: 1; visibility: visible; }
    .quote-modal {
      background: var(--white);
      border-radius: 16px;
      width: min(920px, 100%);
      max-height: calc(100vh - 32px);
      display: grid;
      grid-template-columns: 300px 1fr;
      overflow: hidden;
      box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
      transform: translateY(16px) scale(0.98);
      transition: 0.35s var(--ease);
      position: relative;
    }
    .modal-overlay.open .quote-modal {
      transform: translateY(0) scale(1);
    }
    .quote-modal-left {
      background: linear-gradient(160deg, #f6f6f2 0%, #eeeee8 100%);
      padding: 28px 22px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      border-right: 1px solid var(--line);
    }
    .quote-modal-left h4 {
      font-size: 0.95rem;
      font-weight: 700;
      line-height: 1.45;
      color: var(--ink);
      margin-bottom: 20px;
    }
    .quote-modal-left h4 em {
      font-style: normal;
      color: var(--green-dark);
    }
    .quote-trust-graphic {
      position: relative;
      width: 100%;
      aspect-ratio: 1;
      max-height: 220px;
    }
    .quote-trust-graphic .ring {
      position: absolute;
      border: 1px solid #d8d8d4;
      border-radius: 50%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }
    .quote-trust-graphic .ring-1 { width: 88%; height: 88%; }
    .quote-trust-graphic .ring-2 { width: 62%; height: 62%; }
    .quote-trust-graphic .ring-3 { width: 36%; height: 36%; }
    .quote-avatar {
      position: absolute;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 2px solid var(--white);
      box-shadow: 0 2px 8px rgba(0,0,0,0.12);
      overflow: hidden;
      background: var(--line);
    }
    .quote-avatar img { width: 100%; height: 100%; object-fit: cover; }
    .quote-avatar.a1 { top: 8%;  left: 42%; }
    .quote-avatar.a2 { top: 22%; right: 6%; }
    .quote-avatar.a3 { top: 48%; right: 2%; }
    .quote-avatar.a4 { bottom: 18%; right: 14%; }
    .quote-avatar.a5 { bottom: 8%; left: 30%; }
    .quote-avatar.a6 { top: 38%; left: 4%; }
    .quote-modal-right {
      padding: 22px 26px 20px;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }
    .quote-modal-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 4px;
    }
    .quote-modal-header h3 {
      font-family: "Cormorant Garamond", serif;
      font-size: 1.45rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--ink);
      line-height: 1.2;
    }
    .quote-modal-sub {
      font-size: 0.82rem;
      color: var(--muted);
      line-height: 1.5;
      margin-bottom: 14px;
    }
    .quote-modal-sub strong { color: var(--ink-soft); font-weight: 600; }
    .modal-close {
      flex-shrink: 0;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--surface);
      display: grid;
      place-items: center;
      font-size: 1.15rem;
      color: var(--muted);
      transition: background 0.2s, color 0.2s;
    }
    .modal-close:hover { background: var(--line); color: var(--ink); }
    .estimate-card .quote-form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px 12px;
      margin-bottom: 12px;
    }
    .estimate-card .form-group { margin-bottom: 0; }
    .estimate-card .form-group label {
      display: block;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 4px;
      color: var(--ink-soft);
    }
    .estimate-card .form-group input,
    .estimate-card .form-group textarea {
      width: 100%;
      padding: 9px 11px;
      border: 1px solid var(--line);
      border-radius: 6px;
      font: inherit;
      font-size: 0.86rem;
      transition: border-color 0.2s;
    }
    .estimate-card .form-group input:focus,
    .estimate-card .form-group textarea:focus {
      outline: none;
      border-color: var(--green);
    }
    .estimate-card .form-group textarea {
      min-height: 56px;
      max-height: 56px;
      resize: none;
    }
    .estimate-card .form-group.full { grid-column: 1 / -1; }
    .estimate-card .interest-label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--ink-soft);
      margin-bottom: 8px;
      display: block;
    }
    .estimate-card .interest-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 12px;
    }
    .estimate-card .interest-tag {
      padding: 6px 11px;
      border: 1.5px solid var(--green);
      border-radius: 6px;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--ink);
      background: var(--white);
      transition: background 0.2s, color 0.2s;
      cursor: pointer;
    }
    .estimate-card .interest-tag:hover,
    .estimate-card .interest-tag.active {
      background: var(--green);
      color: var(--white);
    }
    .estimate-card .quote-form-actions {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-top: 4px;
    }
    .estimate-card .quote-form-actions .btn { padding: 11px 16px; font-size: 0.72rem; }
    .quote-brand-logos {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      margin-top: 14px;
      padding-top: 12px;
      border-top: 1px solid var(--line);
    }
    .quote-brand-logos img {
      height: 28px;
      width: auto;
      object-fit: contain;
      opacity: 0.75;
      filter: grayscale(0.3);
    }

    /* Animations */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .no-reveal-js .reveal { opacity: 1; transform: none; }

    /* ============================================================
       RESPONSIVE â€” desktops 1201px+, tablet/mobile â‰¤1200px
    ============================================================ */

    /* Desktop nav visible above 1200px */
    @media (min-width: 1025px) {
      .mega-menu.collections-mega {
        top: calc(100% + 8px);
        padding: clamp(20px, 2.5vw, 28px);
      }
      .menu-toggle { display: none !important; }
      .nav-overlay { display: none !important; }
      #mobileNavMount { display: none; }
      .mobile-nav-header { display: none !important; }
      .main-nav {
        position: static !important;
        transform: none !important;
        width: auto !important;
        padding: 0 !important;
        box-shadow: none !important;
        overflow: visible !important;
        inset: auto !important;
        visibility: visible !important;
        pointer-events: auto !important;
        background: transparent !important;
        z-index: auto !important;
      }
      .main-nav .nav-list {
        padding: 0;
        background: transparent;
      }
      .nav-list {
        flex-direction: row !important;
        align-items: center !important;
      }
      .nav-link {
        width: auto !important;
        border-left: none !important;
        border-radius: 0 !important;
      }
    }

    /* Large desktops 1600px+ */
    @media (min-width: 1600px) {
      :root { --max: 1480px; --section-pad: clamp(40px, 3.5vw, 60px); }
      .mega-menu.product-mega { width: min(780px, calc(100vw - 48px)); max-width: min(780px, calc(100vw - 48px)); }
      .nav-link { font-size: 0.74rem; padding: 12px 14px; }
      .header-nav-inner { gap: 28px; }
      .brand-text strong { font-size: 1.55rem; }
      /* large screen â€” keep cards compact */
      .ba-grid { max-width: 1200px; gap: 26px; }
    }

    /* Standard wide desktop 1440â€“1599px */
    @media (min-width: 1440px) and (max-width: 1599px) {
      :root { --max: 1380px; }
      .nav-link { font-size: 0.72rem; padding: 12px 12px; }
      .header-nav-inner { gap: 24px; }
      .collections-mega { width: min(880px, calc(100vw - 2 * var(--gutter))); }
      .ba-grid { max-width: 1140px; gap: 24px; }
    }

    /* Common laptop 1400px */
    @media (max-width: 1400px) {
      .mega-menu:not(.mega-compact):not(.product-mega) { min-width: 0; max-width: calc(100vw - 40px); }
      .mega-menu.wide { width: min(860px, calc(100vw - 40px)); max-width: calc(100vw - 40px); }
      .collections-mega { width: min(820px, calc(100vw - 40px)); }
      .collection-grid { gap: 20px; }
      .services-grid { gap: 20px; }
      .ba-grid { max-width: 1080px; }
    }

    /* Laptop 1366px */
    @media (max-width: 1366px) {
      .collections-mega .mega-grid.cols-4 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .collections-mega { width: min(760px, calc(100vw - 32px)); }
      .nav-link { padding: 11px 9px; font-size: 0.68rem; letter-spacing: 0.04em; }
      .header-nav-inner { gap: 14px; }
      .brand-text strong { font-size: 1.28rem; }
      .brand-text span { display: none; }
      .header-brand .brand-logo { height: 44px; width: 44px; max-width: 44px; min-width: 44px; }
      .process-step h4 { font-size: 0.76rem; }
      .step-num { width: 50px; height: 50px; font-size: 0.9rem; }
      .about-grid { gap: 48px; }
      .section-head { margin-bottom: 28px; }
      .ba-grid { max-width: 1020px; gap: 20px; }
    }

    /* Smaller laptop 1280px */
    @media (max-width: 1280px) {
      :root { --max: 1200px; }
      .collections-mega .mega-grid.cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .collections-mega { width: min(640px, calc(100vw - 32px)); }
      .collections-mega .mega-col a { white-space: normal; }
      .mega-menu.product-mega { width: min(640px, calc(100vw - 32px)); max-width: min(640px, calc(100vw - 32px)); }
      .product-mega-grid { grid-template-columns: repeat(4, 1fr); }
      .nav-link { padding: 11px 8px; font-size: 0.65rem; }
      .nav-label-full { display: none; }
      .nav-label-short { display: inline; }
      .project-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 210px; }
      .project-card:nth-child(1) { grid-row: span 1; }
      .project-card:nth-child(5) { grid-column: span 1; }
      .section-head { flex-wrap: wrap; }
      .hero-copy h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); max-width: 900px; }
      .collection-body { padding: 22px; }
      .collection-body h3 { font-size: 1.55rem; }
      .service-body { padding: 22px; }
      .footer-grid { gap: 32px; }
      .ba-grid { max-width: 960px; gap: 18px; }
    }

    /* Compact desktop 1201â€“1280 â€” readable nav, no cramming */
    @media (min-width: 1025px) and (max-width: 1280px) {
      .nav-link { font-size: clamp(0.62rem, 0.72vw, 0.68rem); padding: 11px clamp(6px, 0.6vw, 9px); }
      .header-nav-inner { gap: 10px; }
      .collections-mega { width: min(600px, calc(100vw - 28px)); padding: 18px 20px; }
      .collections-mega .mega-grid.cols-4 { gap: 14px 20px; }
    }

    /* Tablet landscape + small laptop â€” hamburger menu */
    @media (max-width: 1200px) {
      :root {
        --header-nav-h: 64px;
        --header-total: calc(var(--utility-h) + var(--header-nav-h));
      }
      html { scroll-padding-top: var(--header-nav-h); }
      .utility-bar .utility-badge { display: none; }
      .header-brand { flex: 1; min-width: 0; margin-right: 0; }
      .header-brand .brand-text span { display: none; }
      .collection-grid,
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .blog-grid { grid-template-columns: repeat(2, 1fr); }
      .about-grid { grid-template-columns: 1fr; gap: 40px; }
      .process-steps { grid-template-columns: repeat(3, 1fr); gap: 20px; }
      .process-steps::before { display: none; }
      .process-visual { grid-template-columns: repeat(3, 1fr); gap: 18px; }
      .process-visual::before { display: none; }
      .process-card .step-num { width: 66px; height: 66px; font-size: 1.4rem; }
      .process-card { padding: 28px 14px 20px; }
      .project-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
      .hero { height: 115svh; min-height: 640px; }
      .hero-content { padding: 44px 0; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-map-col { grid-column: 1 / -1; }
      .cta-band { padding: 48px 0; }
      .stats { padding: 32px 0; }
    }

    /* Tablet landscape & below â€” hamburger drawer menu */
    @media (max-width: 1024px) {
      #mobileNavMount { display: contents; }
      .header-nav-wrap { display: block; }
      .menu-toggle { display: flex !important; }
      .main-nav { justify-content: flex-end; }

      /* Lock page scroll when menu open */
      html.mobile-nav-open,
      body.mobile-nav-open {
        overflow: hidden !important;
        overscroll-behavior: none;
      }

      /* Mobile drawer â€” fixed to viewport, pure white */
      .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(340px, 92vw);
        left: auto;
        height: 100dvh;
        max-height: 100dvh;
        background: #ffffff;
        padding: 0;
        transform: translateX(105%);
        transition: transform 0.35s var(--ease);
        overflow: hidden;
        z-index: 9999;
        box-shadow: -6px 0 32px rgba(0,0,0,0.1);
        color: var(--ink);
        visibility: hidden;
        pointer-events: none;
        display: flex;
        flex-direction: column;
      }
      .main-nav.open {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
      }
      .mobile-nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 20px;
        background: #ffffff;
        border-bottom: 1px solid #e8e8e8;
        flex-shrink: 0;
        position: relative;
        z-index: 2;
      }
      .mobile-nav-header span {
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--ink);
      }
      .mobile-nav-close {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--surface);
        color: var(--ink);
        font-size: 1.4rem;
        line-height: 1;
        display: grid;
        place-items: center;
        flex-shrink: 0;
      }
      .main-nav .nav-list {
        background: #ffffff;
        padding: 12px 16px 32px;
        flex: 1;
        min-height: 0;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        justify-content: flex-start;
      }
      .nav-label-full { display: inline; }
      .nav-label-short { display: none; }
      .nav-item {
        position: relative;
        background: #ffffff;
      }
      .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 14px;
        font-size: 0.82rem;
        letter-spacing: 0.06em;
        border-bottom: none;
        border-left: 3px solid transparent;
        margin-bottom: 0;
        border-radius: 8px;
        width: 100%;
        color: var(--ink-soft);
        background: var(--white);
      }
      .nav-link::after { display: none; }
      .nav-link:hover,
      .nav-link.active {
        border-left-color: var(--green);
        background: var(--green-light);
        color: var(--ink);
      }
      .nav-item > .nav-link svg { transition: transform 0.25s; flex-shrink: 0; }
      .nav-item.open > .nav-link {
        border-left-color: var(--green);
        background: var(--green-light);
        color: var(--ink);
      }
      .nav-item.open > .nav-link svg { transform: rotate(180deg); }

      /* Accordion submenus */
      .nav-item > .mega-menu {
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        min-width: 0 !important;
        max-width: none !important;
        width: auto !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 8px !important;
        margin: 0 8px 8px !important;
        padding: 0 14px !important;
        background: var(--green-light) !important;
        border-left: 3px solid var(--green) !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: none;
        display: block !important;
        overflow: hidden !important;
        max-height: 0 !important;
        transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
      }
      .nav-item.open > .mega-menu,
      .nav-item.open > .mega-menu.product-mega,
      .mega-menu.mobile-open {
        max-height: 3000px !important;
        margin-top: 10px !important;
        padding: 12px 14px 14px !important;
        pointer-events: auto !important;
        overflow: hidden !important;
      }
      .mega-menu.product-mega {
        position: static !important;
        transform: none !important;
        left: auto !important;
        background: var(--green-light) !important;
      }
      .product-mega-inner { width: 100%; padding: 12px 0 8px; }
      .product-mega-head { display: none; }
      .product-mega-body { display: block; }
      .product-mega-grid { grid-template-columns: 1fr; gap: 0; }
      .product-mega-col {
        border-bottom: 1px solid var(--line);
        padding: 12px 0;
      }
      .product-mega-col h4 { border-bottom: none; margin-bottom: 8px; padding-bottom: 0; }
      .product-mega-col ul { padding-left: 12px; }
      .product-mega-more { margin-top: 8px; padding-top: 12px; }
      .product-mega-tags { flex-direction: column; gap: 6px; }
      .product-mega-tags a {
        border-radius: 0;
        background: transparent;
        border: none;
        padding: 8px 0;
        font-size: 0.86rem;
      }
      .mega-grid, .mega-grid.cols-4, .mega-grid.cols-2 { grid-template-columns: 1fr; gap: 12px; }
      .mega-menu.mega-compact { width: 100%; max-width: none; }
      .mega-menu.mega-compact .mega-col a { white-space: normal; }
      .mega-col a,
      .product-mega-col ul li a,
      .product-mega-tags a {
        padding: 8px 0;
        font-size: 0.86rem;
      }
      .product-mega-col h4 { font-size: 0.75rem; }
      .product-mega-more h4 { font-size: 0.68rem; margin-top: 4px; }
    }

    /* Tablet â€” quote modal stacks */
    @media (max-width: 900px) {
      .estimate-layout {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      .quote-modal {
        grid-template-columns: 1fr;
        max-height: calc(100dvh - 24px);
        overflow-y: auto;
      }
      .quote-modal-left { display: none; }
      .quote-modal-right { padding: 20px 18px; }
      .quote-form-grid { grid-template-columns: 1fr 1fr; }
    }

    /* Tablet portrait 768px */
    @media (max-width: 768px) {
      :root {
        --header-nav-h: 56px;
        --utility-h: 76px;
        --header-total: calc(var(--utility-h) + var(--header-nav-h));
        --section-pad: 44px;
      }
      .utility-bar { border-bottom: 1px solid rgba(255,255,255,0.08); }
      .utility-bar .container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 10px 12px;
        text-align: center;
      }
      .utility-bar a {
        width: 100%;
        justify-content: center;
        font-size: 0.68rem;
        letter-spacing: 0.02em;
        line-height: 1.4;
        max-width: 100%;
        overflow: visible;
        text-overflow: unset;
        white-space: normal;
        word-break: break-word;
      }
      .utility-bar svg { width: 13px; height: 13px; }
      .header-brand .brand-logo { height: 40px; width: 40px; max-width: 40px; min-width: 40px; }
      .header-brand .brand-mark { width: 40px; height: 40px; font-size: 0.95rem; }
      .menu-toggle {
        width: 42px;
        height: 42px;
        border-color: rgba(255, 255, 255, 0.3);
      }
      .hero-content { padding-top: calc(var(--header-nav-h) + 30px); }
      .collection-grid,
      .services-grid,
      .blog-grid { grid-template-columns: 1fr; }
      .ptab-tabs { gap: 8px; }
      .ptab-btn { padding: 9px 16px; font-size: 0.78rem; }
      .ptab-panel { gap: 14px; }
      .ptab-card { width: calc((100% - 28px) / 3); }
      .stats { padding: 32px 0; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
      .stat-card { padding: 14px 14px; gap: 2px 12px; }
      .stat-num { font-size: 1.65rem; }
      .stat-num .stat-plus { font-size: 1.35rem; }
      .stat-icon-wrap { width: 42px; height: 42px; }
      .stat-icon-wrap img { width: 20px; height: 20px; }
      .process-steps { grid-template-columns: repeat(2, 1fr); }
      .process-visual { grid-template-columns: repeat(2, 1fr); gap: 20px; }
      .process-visual::before { display: none; }
      .process-card .step-num { width: 64px; height: 64px; font-size: 1.3rem; }
      .hero { height: 115svh; min-height: 560px; }
      .hero-copy h1 { font-size: clamp(1.6rem, 6vw, 2.6rem); max-width: 850px; }
      .hero-actions { flex-direction: column; align-items: center; gap: 10px; }
      .hero-nav { opacity: 1; width: 44px; height: 44px; }
      .hero-content { padding: 40px 0; }
      .hero-copy h1 { font-size: clamp(1.4rem, 7vw, 2.4rem); max-width: 800px; }
      .hero-copy p { font-size: 0.92rem; margin-bottom: 24px; }
      .hero-eyebrow { font-size: 0.68rem; margin-bottom: 14px; }
      .hero-dots { bottom: 24px; }
      .hero-nav { width: 40px; height: 40px; font-size: 1rem; }
      .hero-nav-prev { left: 10px; }
      .hero-nav-next { right: 10px; }
      .section-head { flex-direction: column; align-items: flex-start; margin-bottom: 28px; }
      .section-head.centered { align-items: center; }
      .section-title { font-size: clamp(1.75rem, 5vw, 2.2rem); }
      .quote-tab { display: none; }
      .trust-logo-card { width: 140px; height: 64px; padding: 10px 14px; }
      .trust-logo-card img { max-height: 40px; max-width: 130px; }
      .trust-row-wrap--rev { padding-left: 0; }
      .trust-track { animation-duration: 20s; }
      .about-grid .about-visual { order: -1; }
      .about-badges img { height: 52px; }
      .collection-body { padding: 20px; }
      .collection-body h3 { font-size: 1.4rem; }
      .cta-band { padding: 44px 0; }
      .cta-band h2 { font-size: clamp(1.75rem, 5vw, 2.4rem); }
      .footer-bottom { flex-direction: column; text-align: center; }
      .footer-certs { justify-content: center; flex-wrap: wrap; }
    }

    /* Mobile 600px */
    @media (max-width: 600px) {
      :root { --gutter: 14px; --section-pad: 40px; --header-nav-h: 52px; }
      .ptab-panel { gap: 12px; }
      .ptab-card { width: calc((100% - 12px) / 2); }
      .ptab-btn { padding: 8px 14px; font-size: 0.74rem; }
      .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
      .stat-card { padding: 12px 12px; }
      .stat-num { font-size: 1.5rem; }
      .stat-num .stat-plus { font-size: 1.2rem; }
      .stat-icon-wrap { width: 38px; height: 38px; }
      .stat-icon-wrap img { width: 18px; height: 18px; }
      .stat-label { font-size: 0.58rem; letter-spacing: 0.08em; }
      .footer-grid { grid-template-columns: 1fr; gap: 28px; }
      .btn-sm { padding: 10px 14px; font-size: 0.65rem; }
      .hero { height: 115svh; min-height: 520px; }
      .hero-copy h1 { font-size: clamp(1.2rem, 8vw, 2.2rem); max-width: 750px; }
      .hero-eyebrow { font-size: 0.62rem; letter-spacing: 0.2em; gap: 8px; }
      .hero-eyebrow::before, .hero-eyebrow::after { width: 22px; }
      .hero-dot { width: 36px; }
      .hero-actions { flex-direction: column; align-items: stretch; }
      .hero-actions .btn { width: 100%; }
      .project-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
      .process-steps { grid-template-columns: 1fr; gap: 24px; }
      .process-visual { grid-template-columns: 1fr; gap: 20px; margin-top: 40px; }
      .process-visual::before { display: none; }
      .process-card { padding: 28px 20px 22px; }
      .process-card .step-num { width: 60px; height: 60px; font-size: 1.2rem; margin-bottom: 16px; }
      :root { --utility-h: 72px; }
      .quote-form-grid { grid-template-columns: 1fr; }
      .quote-form-actions { grid-template-columns: 1fr; }
      .quote-brand-logos { flex-wrap: wrap; gap: 12px; }
      .quote-brand-logos img { height: 22px; }
      .interest-tags { gap: 5px; }
      .interest-tag { font-size: 0.62rem; padding: 5px 9px; }
      .whatsapp-fab { width: 52px; height: 52px; }
      .service-body { padding: 20px; }
      .blog-body { padding: 18px; }
    }

    /* Small mobile 400px */
    @media (max-width: 400px) {
      :root { --gutter: 12px; --section-pad: 36px; }
      .ptab-card h4 { font-size: 0.72rem; margin-top: 8px; }
      .stat-num { font-size: 1.4rem; }
      .stat-card { padding: 11px 10px; gap: 2px 10px; }
      .hero-copy h1 { font-size: 1.85rem; }
      .hero-nav { width: 36px; height: 36px; font-size: 0.9rem; }
      .ba-grid { grid-template-columns: 1fr; max-width: 560px; gap: 16px; }
      .ba-handle-btn { width: 36px; height: 36px; }
      .ba-handle-btn svg { width: 12px; height: 12px; }
      .utility-bar a { font-size: 0.62rem; }
    }

    /* V3 theme â€” final cascade overrides */
    .industries { background: var(--deep-mid); }
    .hero { background: var(--deep-mid); }
