    :root {
      --ink: #141414;
      --text: #3c342e;
      --muted: #76695f;
      --paper: #fff5e8;
      --white: #ffffff;
      --line: rgba(20, 20, 20, 0.13);
      --orange: #ff6500;
      --deep-orange: #f43f00;
      --amber: #ffb21a;
      --sun: #ffd766;
      --charcoal: #141414;
      --copper: #bf4b16;
      --shadow: 0 24px 70px rgba(20, 20, 20, 0.14);
      --page-width: min(980px, calc(100% - 40px));
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--ink);
      /* background: var(--paper); */
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
      letter-spacing: 0;
    }

    body::before {
      position: fixed;
      inset: 0;
      z-index: 100;
      /* background:
        radial-gradient(circle at 42% 40%, rgba(255, 178, 26, 0.28), transparent 32%),
        linear-gradient(135deg, #141414, #2b170d 54%, #ff6500);
      content: "";
      pointer-events: none; */
      animation: pageCurtain 900ms ease 220ms forwards;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .site-header {
      /* position: fixed; */
      position:absolute;
      inset: 0 0 auto;
      padding: 10px 0;
      z-index: 20;
      /* background: rgb(20 20 20 / 74%);
      border-bottom: 1px solid rgba(255, 255, 255, 0.16); */
      /* backdrop-filter: blur(18px); */
      animation: headerDrop 720ms cubic-bezier(0.2, 0.8, 0.2, 1) 420ms both;
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: var(--page-width);
      /* min-height: 72px; */
      margin: 0 auto;
      color: #fff;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
    }
    a.brand h1 {
        font-size: 2.5rem;
    }
    /* .logoname {
        margin: auto;
    }
    .logoname h1{
      font-size: 2.5rem;
      text-align: center;
      margin: auto;
    } */

    .company-mark {
      display: grid;
      place-items: center;
      width: 42px;
      height: 42px;
      flex: 0 0 auto;
      border-radius: 8px;
      font-weight: 900;
      color: #fff;
      background: var(--orange);
    }

    .brand-logo {
      /* width: 62px;
      height: 62px; */
      width: 90px;
      height: 90px;
      flex: 0 0 auto;
      /* border-radius: 8px; */
      object-fit: cover;
      /* box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22), 0 10px 26px rgba(0, 0, 0, 0.24); */
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.94rem;
    }

    .nav-links a {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 0 16px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 8px;
      color: rgba(255, 255, 255, 0.82);
      background: rgba(255, 255, 255, 0.04);
      transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
    }

    .nav-links a::before {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255, 101, 0, 0.9), rgba(255, 178, 26, 0.86));
      opacity: 0;
      content: "";
      transition: opacity 180ms ease;
    }

    .nav-links a span {
      position: relative;
      z-index: 1;
    }

    .nav-links a:hover,
    .nav-links a:focus-visible {
      color: #fff;
      border-color: rgba(255, 178, 26, 0.36);
      background: rgba(255, 255, 255, 0.08);
      box-shadow: 0 12px 28px rgba(255, 101, 0, 0.16);
      transform: translateY(-2px);
      outline: 0;
    }

    .nav-links a:hover::before,
    .nav-links a:focus-visible::before {
      opacity: 1;
    }

    .menu-toggle {
      display: none;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      width: 44px;
      height: 44px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.06);
      cursor: pointer;
    }

    .menu-toggle span {
      display: block;
      width: 20px;
      height: 2px;
      border-radius: 99px;
      background: #fff;
      transition: transform 180ms ease, opacity 180ms ease;
    }

    .menu-toggle span + span {
      margin-top: 5px;
    }

    .site-header.is-menu-open .menu-toggle span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .site-header.is-menu-open .menu-toggle span:nth-child(2) {
      opacity: 0;
    }

    .site-header.is-menu-open .menu-toggle span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .hero {
      position: relative;
      display: grid;
      align-items: center;
      min-height: 100vh;
      min-height: 100svh;
      padding: clamp(92px, 13vh, 124px) 0 clamp(30px, 6vh, 58px);
      overflow: hidden;
      color: #fff;
      background: #141414;
    }

    .hero::before {
      position: absolute;
      inset: 0;
      z-index: 0;
      background: #141414;
      /* filter: brightness(1.8) contrast(1.18) saturate(0.95); */
      /* opacity: 0.98; */
      content: "";
    }

    .hero::after {
      position: absolute;
      inset: 0;
      z-index: 1;
      content: "";
      /* background:
        linear-gradient(90deg, rgba(20, 20, 20, 0.84) 0%, rgba(20, 20, 20, 0.56) 36%, rgba(20, 20, 20, 0.12) 72%, rgba(20, 20, 20, 0.02) 100%),
        linear-gradient(0deg, rgba(20, 20, 20, 0.22), rgba(20, 20, 20, 0.06) 52%);

         linear-gradient(90deg, rgb(20 20 20 / 30%) 0%, rgba(20, 20, 20, 0.56) 36%, rgba(20, 20, 20, 0.12) 72%, rgba(20, 20, 20, 0.02) 100%), linear-gradient(0deg, rgba(20, 20, 20, 0.22), rgba(20, 20, 20, 0.06) 52%); */
      pointer-events: none;
    }

    .hero-map-layer {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
      pointer-events: none;
    }

    .hero-map-frame {
      position: absolute;
      left: 50%;
      top: 50%;
      width: max(100vw, calc(100svh * 1.8786));
      aspect-ratio: 1717 / 914;
      transform: translate(-50%, -50%);
    }

    .hero-map-frame img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-map-hotspots {
      position: absolute;
      left: 50%;
      top: 50%;
      z-index: 3;
      width: max(100vw, calc(100svh * 1.8786));
      aspect-ratio: 1717 / 914;
      transform: translate(-50%, -50%);
      pointer-events: none;
    }

    .map-hotspot {
      position: absolute;
      display: block;
      width: var(--hotspot-width);
      height: var(--hotspot-height);
      min-width: 44px;
      min-height: 36px;
      border: 1px solid transparent;
      border-radius: 12px;
      background: transparent;
      color: transparent;
      overflow: hidden;
      pointer-events: auto;
      transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .map-hotspot::before {
      display: none;
      content: none;
    }

    .map-hotspot span {
      position: absolute;
      width: 1px;
      height: 1px;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
    }

    /* .map-hotspot:hover,
    .map-hotspot:focus-visible {
      background: rgba(255, 178, 26, 0.08);
      border-color: rgba(255, 178, 26, 0.56);
      box-shadow: 0 0 0 4px rgba(255, 178, 26, 0.14);
      outline: 0;
    } */

    .hotspot-name {
      font-size: 0.92rem;
      /* font-weight: 900; */
      font-weight: 600;
      line-height: 1.15;
      letter-spacing: 0.01em;
    }

    .hotspot-location {
      color: rgba(255, 255, 255, 0.76);
      font-size: 0.76rem;
      font-weight: 700;
      line-height: 1.2;
    }

    .hotspot-ny {
      left: 25.4%;
      top: 38%;
      --hotspot-width: 21.4%;
      --hotspot-height: 6.7%;
    }

    .hotspot-edm {
      /* left: 14.5%; */
      left: 11.5%;
      top: 28.2%;
      --hotspot-width: 17.4%;
      --hotspot-height: 6.8%;
    }

    .hotspot-fred {
      left: 27.7%;
      top: 30.9%;
      /* top: 33.9%; */
      --hotspot-width: 20.5%;
      --hotspot-height: 6.6%;
    }

    .hotspot-mum-a {
      left: 65%;
      /* top: 52%; */
      top: 49%;
      --hotspot-width: 17.8%;
      --hotspot-height: 8%;
    }

    .hotspot-mum-b {
      left: 66.8%;
      top: 57.2%;
      /* top: 60.2%; */
      --hotspot-width: 16%;
      --hotspot-height: 5.2%;
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      width: var(--page-width);
      /* margin: 0 auto; */
      margin: 100px auto 0;
    }

    .hero-content {
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
      gap: 48px;
      align-items: center;
      align-content: center;
      pointer-events: none;
      max-height: 60vh;
    }

    .hero-content > div:first-child {
      max-width: 600px;
    }

    .hero-logo,
    .brand-stage {
      pointer-events: auto;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 18px;
      color: var(--amber);
      font-size: 0.86rem;
      font-weight: 900;
      text-transform: uppercase;
    }

    .hero-logo {
      position: relative;
      z-index: 2;
      width: clamp(150px, 16vw, 150px);
      height: clamp(150px, 16vw, 150px);
      border-radius: 30px;
      object-fit: cover;
      box-shadow: 0 28px 90px rgba(255, 101, 0, 0.38), 0 0 0 1px rgba(255, 255, 255, 0.18);
      animation: logoFloat 4s ease-in-out infinite;
    }

    .brand-stage {
      position: relative;
      display: grid;
      place-items: center;
      min-height: clamp(300px, 48vh, 430px);
      animation: stageIn 860ms cubic-bezier(0.2, 0.8, 0.2, 1) 820ms both;
    }

    .brand-stage::before,
    .brand-stage::after {
      position: absolute;
      border-radius: 50%;
      content: "";
      pointer-events: none;
    }

    .brand-stage::before {
      width: min(33vw, 430px);
      height: min(33vw, 430px);
      border: 1px solid rgba(255, 178, 26, 0.25);
      box-shadow: inset 0 0 80px rgba(255, 101, 0, 0.08);
      animation: orbitSpin 16s linear infinite;
    }

    .brand-stage::after {
      width: min(24vw, 310px);
      height: min(24vw, 310px);
      background: radial-gradient(circle, rgba(255, 101, 0, 0.28), rgba(255, 178, 26, 0.08) 38%, transparent 70%);
      filter: blur(2px);
    }

    .brand-line {
      position: absolute;
      width: min(26vw, 330px);
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255, 178, 26, 0.65), transparent);
      transform-origin: center;
      animation: linePulse 3.8s ease-in-out infinite;
    }

    .brand-line:nth-child(1) {
      transform: rotate(25deg);
    }

    .brand-line:nth-child(2) {
      transform: rotate(-34deg);
      animation-delay: 1.2s;
    }

    .logo-location {
      position: absolute;
      left: calc(50% + clamp(88px, 9vw, 112px));
      top: 50%;
      z-index: 3;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: rgba(255, 255, 255, 0.78);
      font-size: 0.94rem;
      font-weight: 900;
      transform: translateY(-50%);
      white-space: nowrap;
    }

    .logo-location::before {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #bf4b16;
      box-shadow: 0 0 0 12px rgba(191, 75, 22, 0.14);
      content: "";
    }

    .eyebrow::before {
      width: 38px;
      height: 2px;
      background: currentColor;
      content: "";
    }

    h1,
    h2,
    h3 {
      margin: 0;
      letter-spacing: 0;
    }

    h1 {
      max-width: 760px;
      font-size: clamp(3.15rem, 5.2vw, 4.6rem);
      line-height: 0.98;
    }

    .hero-subheading {
      max-width: 620px;
      margin: 22px 0 0;
      color: rgba(255, 255, 255, 0.84);
      font-size: 1.28rem;
      line-height: 1.65;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 30px;
    }

    .button,
    .text-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 17px;
      border-radius: 8px;
      border: 1px solid transparent;
      font-weight: 700;
      transition: transform 180ms ease, background 180ms ease, background-size 220ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
    }

    .button:hover,
    .button:focus-visible,
    .text-link:hover,
    .text-link:focus-visible {
      transform: translateY(-2px);
      outline: 0;
    }

    .button-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--deep-orange), var(--orange) 54%, var(--amber));
      box-shadow: 0 16px 38px rgba(255, 101, 0, 0.3);
    }

    .button-secondary {
      color: #fff;
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.28);
    }

    .button:hover, .text-link:hover {
      background: #111111;
      color: #fff;
  }

    .hero .eyebrow,
    .hero h1,
    .hero-subheading,
    .hero-actions {
      animation: heroReveal 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
    }

    .hero .eyebrow {
      animation-delay: 560ms;
    }

    .hero h1 {
      animation-delay: 680ms;
    }

    .hero-subheading {
      animation-delay: 820ms;
    }

    .hero-actions {
      animation-delay: 960ms;
    }

    .section {
      /* padding: 45px 0; */
      padding: 25px 0;
      scroll-margin-top: 96px;
    }

    .reveal-section {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 720ms ease, transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
    }

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

    /* .section:nth-child(odd) {
      background: #fffaf2;
    } */

    .section-inner {
      width: var(--page-width);
      margin: 0 auto;
    }

    .intro {
      position: relative;
      display: grid;
      grid-template-columns: repeat(1, minmax(0, 1fr));
      gap: 0;
      align-items: stretch;
      overflow: hidden;
      /* border: 1px solid rgba(255, 101, 0, 0.18);
      border-radius: 8px;
      background:
        linear-gradient(135deg, rgba(255, 101, 0, 0.11), transparent 34%),
        linear-gradient(180deg, #ffffff, #fff7ec);
      box-shadow: var(--shadow); */
    }

    /* .intro::before {
      position: absolute;
      inset: -120px auto auto -120px;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 101, 0, 0.2), transparent 68%);
      content: "";
      pointer-events: none;
    } */

    .intro-heading {
      position: relative;
      display: grid;
      align-content: center;
      min-height: 0;
      width: 100%;
      padding: 36px 38px;
      color: #fff;
      background:
        linear-gradient(145deg, rgba(20, 20, 20, 0.96), rgba(75, 33, 10, 0.88)),
        radial-gradient(circle at 24% 18%, rgba(255, 178, 26, 0.38), transparent 36%);
    }

    .intro-heading::after {
      position: absolute;
      right: -64px;
      bottom: -64px;
      width: 210px;
      height: 210px;
      border: 1px solid rgba(255, 178, 26, 0.36);
      border-radius: 50%;
      content: "";
    }

    .intro-heading h2 {
      position: relative;
      max-width: 430px;
    }

    .intro-heading .eyebrow {
      position: relative;
    }

    .intro-content {
      position: relative;
      width: 100%;
      /* padding: 36px 38px 32px; */
    }

    h2 {
      font-size: 2.1rem;
      line-height: 1.01;
    }

    .body-copy {
      margin: 0;
      color: var(--text);
      font-size: 1.08rem;
      line-height: 1.65;
    }

    .service-strip {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      /* margin-top: 30px; */
    }

    .service-strip span {
      display: inline-flex;
      align-items: center;
      min-height: 58px;
      padding: 14px 14px 14px 16px;
      border: 1px solid rgba(255, 101, 0, 0.16);
      border-radius: 8px;
      color: var(--text);
      background: rgba(255, 255, 255, 0.78);
      font-weight: 760;
      line-height: 1.32;
      box-shadow: 0 10px 26px rgba(20, 20, 20, 0.06);
      transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
    }

    .service-strip span::before {
      width: 8px;
      height: 8px;
      margin-right: 10px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--deep-orange), var(--amber));
      box-shadow: 0 0 0 5px rgba(255, 101, 0, 0.1);
      content: "";
      flex: 0 0 auto;
    }

    .service-strip span:hover {
      transform: translateY(-3px);
      border-color: rgba(255, 101, 0, 0.42);
      box-shadow: 0 16px 34px rgba(255, 101, 0, 0.12);
    }

    .section-title {
      position: relative;
      display: flex;
      justify-content: space-between;
      gap: 24px;
      align-items: end;
      margin-bottom: 24px;
      padding-bottom: 14px;
    }

    .section-title::after {
      position: absolute;
      left: 0;
      bottom: 0;
      width: 96px;
      height: 4px;
      border-radius: 99px;
      background: linear-gradient(90deg, var(--deep-orange), var(--amber));
      content: "";
    }

    .company-grid {
      display: grid;
      grid-template-columns: repeat(1, minmax(0, 1fr));
      gap: 18px;
    }

    .company-card {
      position: relative;
      display: grid;
      grid-template-rows: auto 1fr auto;
      min-height: 100%;
      padding: 13px;
      overflow: hidden;
      border: 1px solid rgba(20, 20, 20, 0.1);
      /* border-top: 5px solid var(--accent); */
      border-radius: 8px;
      /* background:
      linear-gradient(145deg, rgb(255 255 255 / 97%), rgba(255, 248, 238, 0.94)), var(--white); */
      /* box-shadow: 0 18px 48px rgba(16, 24, 32, 0.09); */
	  box-shadow: 0 10px 25px rgb(16 24 32 / 4%);
      animation: cardIn 700ms ease both;
      transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    }

    .company-card > div:first-child {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 360px;
      grid-template-areas:
        "head meta"
        "actions meta"
        "desc desc";
      gap: 14px 20px;
      align-items: start;
      justify-items: stretch;
    }

    .company-card:hover {
      transform: translateY(-8px);
      border-color: rgba(255, 101, 0, 0.32);
      /* box-shadow: 0 28px 70px rgba(255, 101, 0, 0.14), 0 14px 38px rgba(20, 20, 20, 0.08); */
    }

    .company-card::before {
      position: absolute;
      inset: auto -58px -74px auto;
      width: 190px;
      height: 190px;
      border-radius: 50%;
      /* background: color-mix(in srgb, var(--accent) 16%, transparent); */
      content: "";
      transition: transform 220ms ease, opacity 220ms ease;
    }

    .company-card::after {
      position: absolute;
      inset: 0;
      border-radius: 8px;
      /* background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 8%, transparent), transparent 42%); */
      opacity: 0;
      content: "";
      pointer-events: none;
      transition: opacity 220ms ease;
    }

    .company-card:hover::before {
      transform: scale(1.12);
      opacity: 0.86;
    }

    .company-card:hover::after {
      opacity: 1;
    }

    .company-card:nth-child(2) {
      animation-delay: 90ms;
    }

    .company-card:nth-child(3) {
      animation-delay: 180ms;
    }

    .company-card:nth-child(4) {
      animation-delay: 270ms;
    }

    .company-card:nth-child(5) {
      grid-column: auto;
      width: 100%;
      justify-self: stretch;
      animation-delay: 360ms;
    }

    .company-head {
      position: relative;
      grid-area: head;
      display: flex;
      gap: 16px;
      align-items: flex-start;
      margin-bottom: 0;
      z-index: 1;
    }

    .company-mark {
      width: 46px;
      height: 46px;
      background: var(--accent);
      box-shadow: 0 12px 26px color-mix(in srgb, var(--accent) 28%, transparent);
      transition: transform 220ms ease;
    }

    .company-card:hover .company-mark {
      transform: rotate(-4deg) scale(1.05);
    }

    .company-title {
      min-width: 0;
    }

    h3 {
      font-size: 1.34rem;
      line-height: 1.2;
    }

    .location {
      margin-top: 4px;
      color: var(--muted);
      line-height: 1.45;
    }

    .company-card p {
      position: relative;
      grid-area: desc;
      z-index: 1;
      margin: 0;
      color: var(--text);
      line-height: 1.58;
    }

    .meta-list {
      grid-area: meta;
      position: relative;
      z-index: 1;
      display: grid;
      width: 100%;
      max-width: none;
      gap: 0;
      margin: 0;
      padding: 8px 14px;
      list-style: none;
      color: var(--muted);
      font-size: 0.94rem;
      border: 1px solid rgba(255, 101, 0, 0.12);
      border-left: 4px solid var(--accent);
      border-radius: 8px;
      background:
        linear-gradient(90deg, color-mix(in srgb, var(--accent) 7%, transparent), rgba(255, 255, 255, 0.76)),
        #fffaf2;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
    }

    .meta-list li {
      display: grid;
      grid-template-columns: 74px minmax(0, 1fr);
      gap: 12px;
      align-items: center;
      min-height: 36px;
      padding: 7px 0;
      border-bottom: 1px solid rgba(20, 20, 20, 0.08);
      transition: transform 180ms ease;
    }

    .meta-list li:last-child {
      border-bottom: 0;
    }

    .meta-list li:hover {
      transform: translateX(3px);
    }

    .meta-icon {
      display: none;
    }

    .meta-content {
      min-width: 0;
      display: contents;
    }

    .meta-label {
      display: inline;
      margin-bottom: 0;
      color: color-mix(in srgb, var(--accent) 72%, var(--ink));
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .meta-list a {
      color: #141414;
      font-weight: 600;
      overflow-wrap: anywhere;
      line-height: 1.25;
      padding-left: 14px;
      border-left: 1px solid rgba(20, 20, 20, 0.1);
    }

    .card-actions {
      grid-area: actions;
      position: relative;
      z-index: 1;
      /* display: grid; */
      display: flex;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      align-items: center;
      justify-content: flex-start;
      width: 100%;
      margin-top: 0;
    }

    .text-link {
      position: relative;
      min-width: 110px;
      min-height: 38px;
      padding: 0 14px;
      overflow: hidden;
      color: var(--ink);
      border-color: rgba(20, 20, 20, 0.13);
      background:
        linear-gradient(135deg, var(--deep-orange), var(--accent), var(--amber)) 0 0 / 0% 100% no-repeat,
        #fff;
      box-shadow: 0 8px 20px rgba(20, 20, 20, 0.05);
    }

    .text-link:hover,
    .text-link:focus-visible {
      color: #fff;
      border-color: transparent;
      background-size: 100% 100%, auto;
      box-shadow: 0 14px 30px color-mix(in srgb, var(--accent) 22%, transparent);
    }

    .footer {
      padding: 10px 0;
      color: #fff;
      background: #141414;
    }

    .footer .section-inner {
      width: var(--page-width);
      display: flex;
      justify-content: center;
      gap: 18px;
      flex-wrap: wrap;
      text-align: center;
      color: rgba(255, 255, 255, 0.76);
      font-size: 0.94rem;
    }

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

    ::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    ::-webkit-scrollbar-thumb {
        background: linear-gradient(135deg, #ff6f00, #ff9800, #ffc107);
        border-radius: 50px;
    }

    .back-to-top {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 30;
      display: grid;
      place-items: center;
      width: 48px;
      height: 48px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 8px;
      color: #fff;
	  /* background:#202020; */
      background: linear-gradient(135deg, var(--deep-orange), var(--orange), var(--amber));
      box-shadow: 0 16px 34px rgba(255, 101, 0, 0.3);
      font-size: 1.3rem;
      font-weight: 900;
      opacity: 0;
      pointer-events: none;
      transform: translateY(12px);
      transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
    }

    .back-to-top.is-visible {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .back-to-top:hover,
    .back-to-top:focus-visible {
      box-shadow: 0 20px 42px rgba(255, 101, 0, 0.42);
      transform: translateY(-3px);
      outline: 0;
    }

    span.company-logo img {
        width: 60px;
    }

    @keyframes cardIn {
      from {
        opacity: 0;
        transform: translateY(22px);
      }

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

    @keyframes pageCurtain {
      0% {
        opacity: 1;
        transform: scale(1);
      }

      100% {
        opacity: 0;
        transform: scale(1.08);
        visibility: hidden;
      }
    }

    @keyframes headerDrop {
      from {
        opacity: 0;
        transform: translateY(-18px);
      }

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

    @keyframes heroReveal {
      from {
        opacity: 0;
        transform: translateY(24px);
      }

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

    @keyframes stageIn {
      from {
        opacity: 0;
        transform: translateY(22px) scale(0.92);
      }

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

    @keyframes logoFloat {
      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-8px);
      }
    }

    @keyframes orbitSpin {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }

    @keyframes linePulse {
      0%,
      100% {
        opacity: 0.28;
      }

      50% {
        opacity: 0.8;
      }
    }

    @media (max-width: 920px) {
      .site-header {
        padding: 8px 0;
      }

      .nav {
        position: relative;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: grid;
        gap: 10px;
        padding: 12px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 8px;
        background: rgba(20, 20, 20, 0.96);
        box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 180ms ease, transform 180ms ease;
      }

      .site-header.is-menu-open .nav-links {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
      }

      .nav-links a {
        width: 100%;
        justify-content: flex-start;
      }

      h1 {
        font-size: clamp(2.75rem, 7vw, 3.3rem);
      }

      .hero-content {
        grid-template-columns: 1fr;
        gap: 18px;
      }

      .brand-stage {
        order: -1;
        min-height: clamp(150px, 26vh, 220px);
        place-items: center;
      }

      .brand-stage::before {
        width: 230px;
        height: 230px;
      }

      .brand-stage::after {
        width: 180px;
        height: 180px;
      }

      .logo-location {
        left: calc(50% + 74px);
      }

      .company-grid {
        grid-template-columns: 1fr;
      }

      .company-card:nth-child(5) {
        grid-column: auto;
        width: 100%;
      }

      .intro {
        grid-template-columns: 1fr;
      }

      .intro-heading {
        min-height: auto;
        padding: 34px;
      }

      /* .intro-content {
        padding: 34px;
      } */

      .service-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .section-title {
        align-items: start;
        flex-direction: column;
      }
    }

    @media (max-width: 560px) {
      :root {
        --page-width: min(100% - 28px, 1180px);
      }

      .nav,
      .hero-inner,
      .section-inner {
        width: var(--page-width);
      }

      .brand-logo {
        width: 50px;
        height: 50px;
      }

      .hero {
        display: flex;
        flex-direction: column;
        align-items: start;
        min-height: 100vh;
        min-height: 100svh;
        padding: 96px 0 24px;
      }

      .hero::before {
        background: #141414;
        filter: brightness(1.65) contrast(1.12) saturate(0.92);
        opacity: 1;
      }

      .hero::after {
        background:
          linear-gradient(180deg, rgba(20, 20, 20, 0.72) 0%, rgba(20, 20, 20, 0.46) 42%, rgba(20, 20, 20, 0.12) 100%);
      }

      .hero-map-frame {
        top: 34%;
        width: 100vw;
      }

      .hero-map-hotspots {
        position: relative;
        inset: auto;
        order: 2;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        width: min(100% - 28px, 420px);
        aspect-ratio: auto;
        margin: 22px auto 0;
        padding: 0;
        transform: none;
      }

      .hero-inner {
        order: 1;
        z-index: 4;
      }

      .hero-content {
        max-height: none;
      }

      .map-hotspot {
        position: relative;
        left: auto;
        top: auto;
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        gap: 3px;
        width: auto;
        height: auto;
        min-width: 0;
        min-height: 52px;
        max-width: none;
        padding: 9px 10px 9px 12px;
        border: 1px solid rgba(255, 255, 255, 0.22);
        border-left: 4px solid var(--amber);
        background: rgba(17, 17, 17, 0.72);
        backdrop-filter: blur(6px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
        color: #fff;
        overflow: visible;
      }

      .map-hotspot span {
        position: static;
        width: auto;
        height: auto;
        margin: 0;
        overflow: visible;
        clip: auto;
        white-space: normal;
      }

      h1 {
        max-width: 350px;
        font-size: clamp(2rem, 10vw, 2.34rem);
        line-height: 1.05;
      }

      .brand-stage {
        min-height: 158px;
        width: min(100%, 280px);
        margin: 0 auto;
        place-items: center;
      }

      .hero-logo {
        width: 96px;
        height: 96px;
        border-radius: 18px;
      }

      .brand-stage::before {
        width: 150px;
        height: 150px;
      }

      .brand-stage::after {
        width: 120px;
        height: 120px;
      }

      .logo-location {
        left: calc(50% + 58px);
        top: 52%;
        font-size: 0.78rem;
      }

      .hero-subheading {
        max-width: 310px;
        margin-top: 12px;
        line-height: 1.45;
      }

      .hero-actions {
        margin-top: 20px;
      }

      h2 {
        font-size: 2rem;
      }

      .hero-subheading,
      .body-copy {
        font-size: 0.98rem;
      }

      .section {
        padding: 20px 0;
      }

      /* .intro-heading,
      .intro-content {
        padding: 24px;
      } */

      .service-strip {
        grid-template-columns: 1fr;
      }

      .hero-actions {
        flex-direction: column;
      }

      .card-actions {
        grid-template-columns: 1fr;
      }

      .button,
      .text-link {
        width: 100%;
      }

      .meta-list li {
        grid-template-columns: 1fr;
        gap: 4px;
      }

      .meta-label {
        display: inline;
      }

      .meta-list a {
        padding-left: 0;
        border-left: 0;
      }

      .company-card {
        padding: 16px;
      }

      .company-card > div:first-child {
        grid-template-columns: 1fr;
        grid-template-areas:
          "head"
          "actions"
          "meta"
          "desc";
        gap: 12px;
      }

      .meta-list {
        margin-top: 0;
      }

      .company-head {
        margin-bottom: 0;
      }

      .card-actions {
        justify-content: flex-start;
      }

      .back-to-top {
        right: 14px;
        bottom: 14px;
        width: 44px;
        height: 44px;
      }
      .clearfix {
          display: none;
      }
      .hero-inner{margin-top: 30px;}
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation: none !important;
        scroll-behavior: auto !important;
        transition: none !important;
      }

      .reveal-section {
        opacity: 1 !important;
        transform: none !important;
      }
    }

    @media (max-height: 680px) and (min-width: 561px) {
      .hero {
        padding-top: 78px;
        padding-bottom: 20px;
      }

      .hero-content {
        gap: 12px;
      }

      .brand-stage {
        min-height: 110px;
      }

      .hero-logo {
        width: 86px;
        height: 86px;
      }

      .hero-subheading {
        margin-top: 12px;
      }

      .hero-actions {
        margin-top: 16px;
      }
    }

    @media (max-width: 380px) {
      .hero::before {
        background-position: center 42%;
      }

      .logo-location {
        left: calc(50% + 50px);
        font-size: 0.74rem;
      }

      .hero-logo {
        width: 88px;
        height: 88px;
      }
      .clearfix {
          display: none;
      }
    }



    button.menu-toggle {
    display: none;
}
