    :root {
      --navy: #0b2149;          /* EMTA brand navy (Pantone 282 C family) */
      --navy-2: #05122b;
      --purple: #123a6b;        /* was 3GM purple; now a steel navy so gradients read blue */
      --purple-2: #0a2954;
      --lime: #f2a01a;          /* was 3GM lime; amber reads like a lit acrylic face */
      --blue: #2f6fb8;
      --ink: #0f1729;
      --muted: #52617a;
      --line: #dbe3ee;
      --soft: #f3f7fb;
      --white: #ffffff;
      --max: 1232px;
      --section: clamp(84px, 9vw, 150px);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--ink);
      font-family: Roboto, Arial, sans-serif;
      background: var(--white);
      letter-spacing: 0;
    }

    img {
      display: block;
      width: 100%;
      height: auto;
    }

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

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    .container {
      width: min(var(--max), calc(100% - 48px));
      margin-inline: auto;
    }

    .top-strip {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 70;
      min-height: 34px;
      display: grid;
      place-items: center;
      padding: 8px 18px;
      color: #fff;
      background: var(--purple-2);
      border-bottom: 3px solid var(--lime);
      text-align: center;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .top-strip strong,
    .top-strip span {
      font-weight: 900;
    }

    .site-header {
      position: fixed;
      top: 34px;
      left: 0;
      right: 0;
      z-index: 69;
      color: #fff;
      background: transparent;
      border-bottom: 1px solid transparent;
      transition: background 240ms ease, box-shadow 240ms ease, border-color 240ms ease, backdrop-filter 240ms ease;
    }

    .site-header.is-scrolled {
      background: #10245a;
      border-bottom-color: rgba(255, 255, 255, 0.12);
      box-shadow: 0 14px 44px rgba(6, 16, 36, 0.24);
      backdrop-filter: blur(10px);
    }

    .header-inner {
      min-height: 74px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      min-width: 248px;
    }

    .brand-logo {
      width: 210px;
      max-height: 78px;
      object-fit: contain;
      filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.22));
    }

    .brand-mark {
      width: 70px;
      height: 38px;
      display: grid;
      place-items: center;
      position: relative;
      color: #fff;
      font-family: Archivo, sans-serif;
      font-size: 18px;
      font-weight: 900;
      letter-spacing: -0.06em;
      isolation: isolate;
    }

    .brand-mark::before {
      content: "";
      position: absolute;
      inset: 5px -2px;
      border: 1px solid rgba(255, 255, 255, 0.55);
      transform: skewX(-22deg);
      z-index: -1;
    }

    .brand-text {
      display: grid;
      line-height: 0.95;
      font-family: Archivo, sans-serif;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      font-size: 12px;
    }

    .brand-text span {
      color: var(--lime);
      font-size: 10px;
      letter-spacing: 0.16em;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 34px;
      margin-left: auto;
    }

    .nav-item {
      position: relative;
    }

    .nav a,
    .nav-button {
      position: relative;
      display: inline-flex;
      align-items: center;
      min-height: 74px;
      color: #fff;
      font-family: Archivo, sans-serif;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      border: 0;
      background: transparent;
      cursor: pointer;
    }

    .nav-button svg {
      width: 13px;
      height: 13px;
      margin-left: 8px;
    }

    .nav a::after,
    .nav-button::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 17px;
      height: 2px;
      background: var(--lime);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 160ms ease;
    }

    .nav a:hover,
    .nav a:focus-visible,
    .nav-button:hover,
    .nav-button:focus-visible {
      color: var(--lime);
    }

    .nav a:hover::after,
    .nav a:focus-visible::after,
    .nav-button:hover::after,
    .nav-button:focus-visible::after {
      transform: scaleX(1);
    }

    .products-menu {
      position: absolute;
      top: 100%;
      left: -24px;
      width: 610px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0;
      padding: 18px;
      color: var(--ink);
      background: #fff;
      border-top: 4px solid var(--lime);
      box-shadow: 0 28px 80px rgba(6, 16, 36, 0.24);
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
    }

    .nav-item:hover .products-menu,
    .nav-item:focus-within .products-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .products-menu a {
      min-height: auto;
      display: grid;
      gap: 4px;
      padding: 14px 16px;
      color: var(--ink);
      border-left: 3px solid transparent;
      font-size: 13px;
      letter-spacing: 0;
      text-transform: none;
    }

    .products-menu a::after {
      display: none;
    }

    .products-menu a:hover {
      color: var(--navy);
      border-left-color: var(--lime);
      background: #f3f7fb;
    }

    .products-menu strong {
      font-family: Archivo, sans-serif;
      font-size: 14px;
      font-weight: 900;
    }

    .products-menu span {
      color: var(--muted);
      font-size: 12px;
      line-height: 1.35;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 18px;
      padding-left: 28px;
      border-left: 1px solid rgba(255, 255, 255, 0.15);
    }

    .phone-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: Archivo, sans-serif;
      font-size: 22px;
      font-weight: 900;
      white-space: nowrap;
    }

    .phone-link svg {
      color: var(--lime);
      width: 20px;
      height: 20px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      min-height: 52px;
      padding: 0 28px;
      border: 1px solid var(--lime);
      color: var(--lime);
      background: transparent;
      font-family: Archivo, sans-serif;
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 160ms ease, color 160ms ease, transform 160ms ease;
    }

    .btn:hover {
      color: var(--navy);
      background: var(--lime);
      transform: translateY(-1px);
    }

    .btn svg {
      width: 16px;
      height: 16px;
    }

    .menu-toggle {
      display: none;
      width: 46px;
      height: 46px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      background: transparent;
      color: #fff;
    }

    .mobile-panel {
      position: fixed;
      inset: 0;
      z-index: 60;
      display: none;
      color: #fff;
      background: rgba(6, 16, 36, 0.72);
    }

    .mobile-panel[aria-hidden="false"] {
      display: block;
    }

    .mobile-drawer {
      width: min(390px, 100%);
      min-height: 100%;
      margin-left: auto;
      padding: 24px;
      background:
        radial-gradient(circle at 80% 10%, rgba(18, 58, 107, 0.62), transparent 32%),
        var(--navy);
      box-shadow: -30px 0 90px rgba(0, 0, 0, 0.35);
    }

    .drawer-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 24px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .drawer-close {
      width: 44px;
      height: 44px;
      border: 1px solid rgba(255, 255, 255, 0.24);
      color: #fff;
      background: transparent;
      cursor: pointer;
    }

    .mobile-nav {
      display: grid;
      gap: 0;
      padding: 18px 0;
    }

    .mobile-nav a {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
      font-family: Archivo, sans-serif;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .mobile-products {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      margin: 14px 0 18px;
    }

    .mobile-products a {
      padding: 10px 12px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: rgba(255, 255, 255, 0.82);
      background: rgba(255, 255, 255, 0.05);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0;
      text-transform: none;
    }

    .hero {
      min-height: 100vh;
      position: relative;
      overflow: hidden;
      color: #fff;
      background: #05122b;
    }

    .hero::before,
    .pattern::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: 0.16;
      background-image:
        linear-gradient(35deg, transparent 0 48%, rgba(255,255,255,.45) 49%, transparent 50% 100%),
        linear-gradient(145deg, transparent 0 49%, rgba(255,255,255,.34) 50%, transparent 51% 100%);
      background-size: 270px 210px, 350px 270px;
    }

    .hero::before {
      z-index: 2;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background:
        linear-gradient(90deg, rgba(10, 41, 84, 0.9), rgba(11, 33, 73, 0.86) 46%, rgba(5, 18, 43, 0.58)),
        linear-gradient(0deg, rgba(5, 18, 43, 0.4), transparent 46%);
    }

    .hero-video {
      position: absolute;
      inset: 0;
      z-index: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(1.08) contrast(1.02);
    }

    .hero-inner {
      min-height: 100vh;
      display: grid;
      align-items: center;
      padding: 190px 0 92px;
    }

    .hero-copy {
      width: min(820px, 100%);
      position: relative;
      z-index: 3;
    }

    .location {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 28px;
      color: rgba(255, 255, 255, 0.72);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .eyebrow {
      margin: 0 0 22px;
      color: var(--lime);
      font-family: Archivo, sans-serif;
      font-size: clamp(16px, 2vw, 24px);
      font-weight: 900;
      letter-spacing: 0.28em;
      text-transform: uppercase;
    }

    .hero h1,
    .section-title,
    .split-title,
    .quote-title {
      margin: 0;
      font-family: Archivo, sans-serif;
      font-weight: 900;
      letter-spacing: -0.04em;
      word-spacing: 0.08em;
      text-transform: uppercase;
      line-height: 0.9;
    }

    .hero h1 {
      max-width: 760px;
      font-size: clamp(52px, 7vw, 92px);
      letter-spacing: -0.055em;
      word-spacing: 0;
    }

    .hero h2 {
      margin: 28px 0 40px;
      max-width: 850px;
      color: rgba(255, 255, 255, 0.88);
      font-family: Archivo, sans-serif;
      font-size: clamp(32px, 4.4vw, 62px);
      line-height: 0.98;
      letter-spacing: -0.04em;
    }

    .hero p.statement {
      max-width: 740px;
      margin: 0 0 40px;
      padding-left: 24px;
      border-left: 3px solid var(--lime);
      color: rgba(255, 255, 255, 0.78);
      font-size: 20px;
      line-height: 1.6;
    }

    .hero p.statement strong {
      color: #fff;
      font-weight: 900;
    }

    .section {
      position: relative;
      padding: var(--section) 0;
      background: var(--soft);
      overflow: hidden;
      scroll-margin-top: 120px;
    }

    .white-section {
      background: #fff;
    }

    .section.diagonal::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -1px;
      height: 120px;
      background: var(--navy-2);
      clip-path: polygon(0 42%, 100% 100%, 100% 100%, 0 100%);
    }

    .section-head {
      position: relative;
      z-index: 2;
      margin-bottom: clamp(48px, 6vw, 86px);
    }

    .kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 26px;
      color: var(--navy);
      font-family: Archivo, sans-serif;
      font-size: 14px;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .section-title {
      max-width: 860px;
      color: var(--navy);
      font-size: clamp(40px, 5vw, 68px);
    }

    .section-title span,
    .quote-title span {
      display: inline-block;
      color: var(--lime);
    }

    .section-lede {
      max-width: 760px;
      margin: 20px 0 0;
      color: #40506a;
      font-size: 19px;
      line-height: 1.6;
    }

    .product-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 68px 66px;
    }

    .product-card {
      min-width: 0;
    }

    .media-frame {
      position: relative;
      aspect-ratio: 1.48 / 1;
      overflow: hidden;
      background: #dbe3ee;
    }

    .media-frame::after {
      content: "";
      position: absolute;
      right: -7px;
      top: -7px;
      width: 30px;
      height: 30px;
      border-top: 7px solid var(--lime);
      border-right: 7px solid var(--lime);
      transition: transform 180ms ease;
    }

    .product-card:hover .media-frame::after,
    .service-card:hover .media-frame::after {
      transform: translate(-5px, 5px);
    }

    .media-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 260ms ease, filter 260ms ease;
    }

    .product-card:hover img,
    .service-card:hover img {
      transform: scale(1.045);
      filter: saturate(1.08);
    }

    .product-card h3,
    .service-card h3 {
      position: relative;
      margin: 18px 0 10px;
      padding-left: 17px;
      color: var(--ink);
      font-family: Archivo, sans-serif;
      font-size: 22px;
      font-weight: 900;
      line-height: 1.04;
      letter-spacing: -0.04em;
    }

    .product-card h3::before,
    .service-card h3::before {
      content: "";
      position: absolute;
      left: 0;
      top: 4px;
      width: 3px;
      height: 20px;
      background: var(--lime);
    }

    .learn {
      color: var(--lime);
      font-family: Archivo, sans-serif;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .learn::after {
      content: " ->";
    }

    .product-card p,
    .service-card p {
      display: none;
    }

    .service-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 66px;
      max-width: 970px;
    }

    .dark-band {
      position: relative;
      padding: clamp(86px, 9vw, 142px) 0;
      color: #fff;
      background:
        radial-gradient(circle at 72% 42%, rgba(18, 58, 107, 0.7), transparent 34%),
        linear-gradient(135deg, #03050b, #110711 38%, #03050b);
      overflow: hidden;
    }

    .dark-band::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: 0.18;
      background: repeating-linear-gradient(45deg, transparent 0 18px, rgba(145,189,15,.18) 19px 20px);
    }

    .risks-head {
      max-width: 760px;
      margin-bottom: 54px;
      position: relative;
      z-index: 2;
    }

    .risks-head .kicker {
      color: var(--lime);
    }

    .risks-head h2 {
      margin: 0;
      font-family: Archivo, sans-serif;
      font-size: clamp(42px, 6vw, 76px);
      line-height: 0.9;
      letter-spacing: -0.055em;
      text-transform: uppercase;
    }

    .risks-head h3 {
      margin: 10px 0 20px;
      color: rgba(255, 255, 255, 0.84);
      font-family: Archivo, sans-serif;
      font-size: clamp(26px, 3vw, 42px);
      letter-spacing: -0.04em;
    }

    .risk-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }

    .risk {
      min-height: 230px;
      padding: 34px 28px;
      border: 1px solid rgba(255, 255, 255, 0.11);
      background: rgba(255, 255, 255, 0.045);
    }

    .risk h3 {
      margin: 0 0 14px;
      color: #fff;
      font-family: Archivo, sans-serif;
      font-size: 24px;
      letter-spacing: -0.04em;
    }

    .risk p {
      margin: 0;
      color: rgba(255, 255, 255, 0.68);
      line-height: 1.62;
    }

    .difference {
      padding-top: clamp(138px, 11vw, 210px);
      padding-bottom: clamp(96px, 10vw, 150px);
      color: var(--navy);
      background:
        linear-gradient(132deg, rgba(187, 244, 72, 0.98), rgba(64, 211, 205, 0.96) 58%, rgba(255, 255, 255, 0.92)),
        #b9f047;
      clip-path: polygon(0 0, 100% 0, 100% 88%, 70% 100%, 24% 100%, 0 90%);
    }

    .difference::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: 0.22;
      pointer-events: none;
      background-image:
        linear-gradient(35deg, transparent 0 49%, rgba(255,255,255,.55) 50%, transparent 51% 100%),
        linear-gradient(145deg, transparent 0 49%, rgba(14,30,78,.2) 50%, transparent 51% 100%);
      background-size: 310px 240px, 430px 320px;
    }

    .difference .section-head {
      position: relative;
      z-index: 2;
      text-align: center;
      margin-bottom: 92px;
    }

    .difference .section-title {
      max-width: 1120px;
      margin-inline: auto;
      color: var(--navy);
      font-size: clamp(48px, 5.4vw, 78px);
    }

    .difference .section-lede {
      color: rgba(11, 33, 73, 0.82);
      font-family: Archivo, sans-serif;
      font-weight: 800;
      letter-spacing: 0.02em;
      text-transform: uppercase;
    }

    .difference .section-head::after {
      content: "";
      display: block;
      width: 80px;
      height: 6px;
      margin: 34px auto 0;
      background: var(--purple);
    }

    .benefit-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .benefit {
      padding: 42px 34px 38px;
      border-top: 5px solid var(--lime);
      background: #fff;
      box-shadow: 0 22px 56px rgba(11, 33, 73, 0.08);
    }

    .benefit-icon {
      width: 72px;
      height: 72px;
      display: grid;
      place-items: center;
      margin-bottom: 34px;
      color: var(--lime);
      background: linear-gradient(180deg, var(--navy), var(--purple-2));
    }

    .benefit h3 {
      margin: 0;
      color: var(--lime);
      font-family: Archivo, sans-serif;
      font-size: 35px;
      font-weight: 900;
      letter-spacing: -0.06em;
      text-transform: uppercase;
    }

    .benefit h4 {
      margin: 4px 0 18px;
      color: var(--navy);
      font-family: Archivo, sans-serif;
      font-size: 21px;
      line-height: 1.05;
      text-transform: uppercase;
    }

    .benefit p {
      margin: 0;
      color: var(--muted);
      line-height: 1.72;
    }

    .refurbish-feature {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 34px;
      align-items: center;
      margin-top: 58px;
      padding: 34px;
      background: #f5f8fc;
      border-left: 6px solid var(--lime);
    }

    .compare-strip {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }

    .compare-card {
      position: relative;
      min-height: 280px;
      overflow: hidden;
      background: #d8e0ea;
    }

    .compare-card img {
      height: 100%;
      object-fit: cover;
    }

    .compare-card span {
      position: absolute;
      left: 16px;
      bottom: 16px;
      padding: 7px 10px;
      color: #fff;
      background: rgba(6, 16, 36, 0.8);
      font-family: Archivo, sans-serif;
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .refurbish-copy h3 {
      margin: 0 0 14px;
      color: var(--navy);
      font-family: Archivo, sans-serif;
      font-size: clamp(28px, 3vw, 42px);
      line-height: .98;
      letter-spacing: -0.045em;
      text-transform: uppercase;
    }

    .refurbish-copy p {
      margin: 0 0 22px;
      color: var(--muted);
      line-height: 1.7;
    }

    .portfolio {
      min-height: 2380px;
      padding-top: clamp(116px, 9vw, 150px);
      padding-bottom: 190px;
      background:
        linear-gradient(120deg, rgba(239, 245, 250, .96), rgba(255, 255, 255, .92)),
        #eef4fa;
    }

    .portfolio-wrap {
      position: relative;
      z-index: 2;
    }

    .portfolio .section-head {
      margin-bottom: 30px;
    }

    .portfolio .section-title {
      font-size: clamp(58px, 6vw, 92px);
      letter-spacing: -0.075em;
    }

    .portfolio-cascade {
      position: relative;
      left: 50%;
      width: min(1660px, calc(100vw - 36px));
      min-height: 1570px;
      display: grid;
      grid-template-columns: repeat(5, minmax(180px, 1fr));
      gap: clamp(20px, 2.1vw, 34px);
      margin-top: 96px;
      transform: translateX(-50%);
      perspective: 1400px;
      overflow: visible;
    }

    .portfolio-column {
      display: grid;
      gap: 22px;
      align-content: start;
      min-width: 0;
      transform-origin: top center;
    }

    .portfolio-column:nth-child(1) { transform: rotate(-4deg) translateY(178px); }
    .portfolio-column:nth-child(2) { transform: rotate(-3deg) translateY(78px); }
    .portfolio-column:nth-child(3) { transform: rotate(-2deg) translateY(0); }
    .portfolio-column:nth-child(4) { transform: rotate(-3deg) translateY(92px); }
    .portfolio-column:nth-child(5) { transform: rotate(-4deg) translateY(130px); }

    .cascade-tile,
    .portfolio-panel {
      position: relative;
      overflow: hidden;
      min-height: 170px;
      background: #dce5ef;
      box-shadow: 0 18px 42px rgba(11, 33, 73, 0.1);
      transition: transform 260ms ease, box-shadow 260ms ease, filter 260ms ease;
    }

    .cascade-tile img,
    .cascade-tile video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(1.05);
      transition: transform 260ms ease;
    }

    .cascade-tile.has-video::before {
      content: "";
      position: absolute;
      z-index: 3;
      left: 14px;
      top: 14px;
      width: 0;
      height: 0;
      border-left: 13px solid var(--lime);
      border-top: 9px solid transparent;
      border-bottom: 9px solid transparent;
      filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.55));
    }

    .cascade-tile:hover img {
      transform: scale(1.045);
    }

    .cascade-tile:hover,
    .portfolio-panel:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 52px rgba(11, 33, 73, 0.18);
    }

    .cascade-tile::after {
      content: attr(data-label);
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 8px 10px;
      color: #fff;
      background: linear-gradient(90deg, rgba(6, 16, 36, 0.88), rgba(6, 16, 36, 0.52));
      font-family: Archivo, sans-serif;
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .tile-sm { min-height: 185px; }
    .tile-md { min-height: 250px; }
    .tile-lg { min-height: 335px; }
    .tile-xl { min-height: 460px; }
    .tile-xxl { min-height: 650px; }

    .portfolio-panel {
      display: grid;
      align-content: end;
      padding: 42px 34px;
      color: var(--navy);
      background: var(--lime);
      font-family: Archivo, sans-serif;
      font-weight: 900;
      text-transform: uppercase;
    }

    .portfolio-panel strong {
      display: block;
      color: rgba(11, 33, 73, 0.72);
      font-size: clamp(22px, 2vw, 34px);
      line-height: .98;
      letter-spacing: -0.07em;
    }

    .portfolio-panel span {
      color: #fff;
      font-size: clamp(22px, 2vw, 31px);
      line-height: .96;
      letter-spacing: -0.06em;
    }

    .portfolio-panel.brand-panel {
      place-items: center;
      align-content: center;
      text-align: center;
    }

    .portfolio-panel.blue {
      background: #3b93f7;
    }

    .portfolio-panel.purple {
      background: var(--purple);
      color: #fff;
    }

    .portfolio-panel.purple strong,
    .portfolio-panel.purple span {
      color: #fff;
    }

    .process {
      color: #fff;
      background:
        radial-gradient(circle at 80% 18%, rgba(18, 58, 107, 0.64), transparent 34%),
        linear-gradient(135deg, #05122b, #10245a 48%, #05122b);
    }

    .process .section-head {
      text-align: center;
    }

    .process .kicker,
    .process .section-title span {
      color: var(--lime);
    }

    .process .section-title {
      margin-inline: auto;
      color: #fff;
    }

    .step-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .step {
      min-height: 290px;
      padding: 38px 32px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.045);
    }

    .step-number {
      display: block;
      margin-bottom: 28px;
      color: rgba(145, 189, 15, 0.32);
      font-family: Archivo, sans-serif;
      font-size: 76px;
      font-weight: 900;
      line-height: .75;
      letter-spacing: -0.06em;
    }

    .step h3 {
      margin: 0 0 14px;
      color: #fff;
      font-family: Archivo, sans-serif;
      font-size: 26px;
      line-height: 1;
      letter-spacing: -0.04em;
      text-transform: uppercase;
    }

    .step p {
      margin: 0;
      color: rgba(255, 255, 255, 0.68);
      line-height: 1.7;
    }

    .visit {
      padding: 0;
      color: #fff;
      background: var(--navy);
    }

    .visit-grid {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      min-height: 690px;
      align-items: stretch;
    }

    .visit-copy {
      display: grid;
      align-content: center;
      padding: clamp(72px, 8vw, 120px) 0;
      padding-right: clamp(36px, 6vw, 92px);
    }

    .visit-copy .kicker {
      color: var(--lime);
    }

    .visit-copy h2 {
      margin: 0 0 28px;
      font-family: Archivo, sans-serif;
      font-size: clamp(42px, 5vw, 70px);
      line-height: .92;
      letter-spacing: -0.055em;
      text-transform: uppercase;
    }

    .visit-copy p {
      max-width: 560px;
      margin: 0 0 26px;
      color: rgba(255, 255, 255, 0.72);
      font-size: 19px;
      line-height: 1.65;
    }

    .visit-copy p.visit-contact {
      border-left: 4px solid var(--lime);
      padding-left: 20px;
      color: #fff;
      font-size: 17px;
      line-height: 1.8;
    }

    .visit-copy p.visit-contact a {
      color: var(--lime);
      text-decoration: none;
    }

    .visit-copy p.visit-contact a:hover {
      text-decoration: underline;
    }

    .visit-media {
      min-height: 690px;
      background:
        linear-gradient(90deg, rgba(11, 33, 73, 0.18), transparent 42%),
        url("assets/img/visit-storefront.webp") center / cover;
      clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
    }

    .reveal-target {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity 680ms ease, transform 680ms ease;
    }

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

    .cta-band {
      position: relative;
      margin-top: 0;
      color: #fff;
      background:
        radial-gradient(circle at 78% 50%, rgba(18, 58, 107, .9), transparent 38%),
        var(--navy);
    }

    .cta-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      padding: 64px 0;
    }

    .cta-inner h2 {
      margin: 0 0 12px;
      font-family: Archivo, sans-serif;
      font-size: clamp(32px, 4vw, 54px);
      line-height: 0.95;
      letter-spacing: -0.05em;
    }

    .cta-inner p {
      margin: 0;
      color: rgba(255, 255, 255, 0.72);
      font-size: 18px;
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      align-items: center;
      justify-content: flex-end;
    }

    .cta-phone {
      color: #fff;
      font-family: Archivo, sans-serif;
      font-size: 18px;
      font-weight: 900;
      white-space: nowrap;
    }

    .about-section {
      padding-top: clamp(118px, 9vw, 152px);
      background:
        linear-gradient(115deg, rgba(255,255,255,.88), rgba(246,249,252,.94)),
        repeating-linear-gradient(120deg, rgba(14,30,78,.035) 0 1px, transparent 1px 9px),
        #f8fafc;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: clamp(62px, 7vw, 118px);
      align-items: start;
    }

    .about-copy .section-title {
      max-width: 720px;
      font-size: clamp(42px, 4.8vw, 72px);
      letter-spacing: -0.075em;
    }

    .about-copy .section-lede {
      max-width: 760px;
      margin-top: 66px;
      font-size: 20px;
      line-height: 1.65;
    }

    .about-note {
      margin: 30px 0 0;
      padding-left: 24px;
      border-left: 3px solid var(--lime);
      color: var(--ink);
      font-size: 20px;
      font-style: italic;
      font-weight: 900;
      line-height: 1.45;
    }

    .history-btn {
      margin-top: 38px;
      color: var(--navy);
      border-color: var(--navy);
    }

    .history-btn:hover {
      color: var(--navy);
      border-color: var(--lime);
      background: var(--lime);
    }

    .about-media {
      position: relative;
      min-height: 620px;
      padding-top: 34px;
    }

    .about-main-photo,
    .manager-card {
      position: relative;
      background: #fff;
      box-shadow: 0 26px 70px rgba(11, 33, 73, 0.12);
    }

    .about-main-photo {
      padding: 10px;
    }

    .about-main-photo::before,
    .manager-card::before {
      content: "";
      position: absolute;
      right: -10px;
      top: -10px;
      width: 38px;
      height: 38px;
      border-top: 5px solid var(--lime);
      border-right: 5px solid var(--lime);
    }

    .about-main-photo::after,
    .manager-card::after {
      content: "";
      position: absolute;
      left: -10px;
      bottom: -10px;
      width: 38px;
      height: 38px;
      border-left: 5px solid var(--lime);
      border-bottom: 5px solid var(--lime);
    }

    .about-main-photo img {
      aspect-ratio: 1.55 / 1;
      object-fit: cover;
    }

    .manager-card {
      position: absolute;
      right: -22px;
      bottom: 0;
      width: 280px;
      padding: 9px;
      transform: rotate(8deg);
      z-index: 2;
    }

    .manager-card img {
      aspect-ratio: .88 / 1;
      object-fit: cover;
    }

    .manager-card figcaption {
      position: absolute;
      left: 24px;
      bottom: 24px;
      color: #fff;
      font-family: Archivo, sans-serif;
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.03em;
      line-height: 1.25;
      text-transform: uppercase;
      text-shadow: 0 2px 8px rgba(0,0,0,.45);
    }

    .manager-card figcaption span {
      display: block;
      color: var(--lime);
      font-size: 10px;
    }

    .stat-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 34px;
      margin-top: 86px;
      background: transparent;
    }

    .stat {
      padding-top: 0;
      background: transparent;
      border-bottom: 1px solid #cbd5e1;
      text-align: left;
    }

    .stat strong {
      display: block;
      color: var(--navy);
      font-family: Archivo, sans-serif;
      font-size: 46px;
      line-height: 1;
      letter-spacing: -0.06em;
    }

    .stat span {
      display: block;
      margin: 14px 0 12px;
      color: var(--lime);
      font-family: Archivo, sans-serif;
      font-weight: 900;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .logo-strip {
      padding: 38px 0;
      color: #fff;
      background: var(--navy);
      overflow: hidden;
    }

    .logo-track {
      display: flex;
      gap: 58px;
      align-items: center;
      white-space: nowrap;
      animation: marquee 28s linear infinite;
    }

    .logo-track span {
      min-width: 142px;
      padding: 12px 18px;
      color: rgba(255, 255, 255, 0.74);
      border: 1px solid rgba(255, 255, 255, 0.16);
      font-family: Archivo, sans-serif;
      font-weight: 900;
      letter-spacing: -0.03em;
      text-align: center;
      text-transform: uppercase;
    }

    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    .reviews {
      background:
        linear-gradient(180deg, #f8fafc, #fff),
        #fff;
    }

    .review-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 58px;
      align-items: start;
    }

    .stars {
      color: #f2b600;
      font-size: 28px;
      letter-spacing: 2px;
      margin: 20px 0 18px;
    }

    .review-list {
      columns: 2;
      column-gap: 22px;
    }

    .review {
      break-inside: avoid;
      margin: 0 0 22px;
      padding: 26px;
      border-top: 4px solid var(--lime);
      background: #fff;
      box-shadow: 0 14px 38px rgba(11, 33, 73, 0.08);
    }

    .review p {
      margin: 0 0 18px;
      color: #33445e;
      line-height: 1.62;
    }

    .review strong {
      font-family: Archivo, sans-serif;
    }

    .review-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .review-avatar {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      color: var(--navy);
      background: var(--lime);
      font-family: Archivo, sans-serif;
      font-size: 13px;
      font-weight: 900;
    }

    .review-source {
      display: block;
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
      margin-top: 2px;
    }

    .quote {
      background:
        linear-gradient(rgba(11, 33, 73, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 33, 73, 0.04) 1px, transparent 1px),
        #eef5fc;
      background-size: 22px 22px;
    }

    .quote-head {
      max-width: 760px;
      margin: 0 auto 76px;
      text-align: center;
    }

    .quote-title {
      color: var(--navy);
      font-size: clamp(42px, 5vw, 66px);
    }

    .quote-head p {
      color: #65748b;
      font-family: Archivo, sans-serif;
      font-size: 15px;
      font-weight: 800;
      letter-spacing: 0.22em;
      line-height: 1.55;
      text-transform: uppercase;
    }

    .quote-form {
      width: min(900px, 100%);
      margin: 0 auto;
      padding: 72px 88px 82px;
      border-top: 6px solid var(--lime);
      background: #fff;
      box-shadow: 0 26px 70px rgba(11, 33, 73, 0.08);
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .field {
      display: grid;
      gap: 10px;
    }

    .field.full {
      grid-column: 1 / -1;
    }

    label {
      color: #263958;
      font-weight: 900;
      font-size: 13px;
    }

    input,
    select,
    textarea {
      width: 100%;
      min-height: 52px;
      border: 1px solid #d8e0ea;
      border-radius: 0;
      background: #fbfbfd;
      padding: 0 18px;
      color: var(--ink);
      outline: none;
    }

    textarea {
      min-height: 130px;
      padding-top: 16px;
      resize: vertical;
    }

    .upload-box {
      min-height: 92px;
      display: grid;
      place-items: center;
      padding: 18px;
      color: #60708a;
      border: 1px dashed #b8c4d3;
      background: #fbfbfd;
      text-align: center;
      font-weight: 700;
      cursor: pointer;
    }

    .upload-box input {
      display: none;
    }

    .form-success {
      display: none;
      margin-top: 22px;
      padding: 18px 20px;
      color: #123018;
      background: #e9f5d7;
      border-left: 5px solid var(--lime);
      font-weight: 800;
      line-height: 1.45;
    }

    .quote-form.is-sent .form-success {
      display: block;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: var(--lime);
      box-shadow: 0 0 0 3px rgba(145, 189, 15, 0.16);
    }

    .site-footer {
      color: #b9c5d7;
      background: #061024;
      padding: 72px 0 28px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.35fr repeat(4, 1fr);
      gap: 44px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .site-footer h3 {
      margin: 0 0 18px;
      color: #fff;
      font-family: Archivo, sans-serif;
      font-size: 14px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .site-footer p,
    .site-footer a {
      color: #aebbd0;
      font-size: 14px;
      line-height: 1.8;
    }

    .site-footer a:hover {
      color: var(--lime);
    }

    .footer-links {
      display: grid;
      gap: 8px;
    }

    .copyright {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      padding-top: 24px;
      font-size: 13px;
    }

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

      .menu-toggle {
        display: inline-grid;
        place-items: center;
      }

      .product-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .risk-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 760px) {
      .container {
        width: min(100% - 28px, var(--max));
      }

      .top-strip {
        font-size: 10px;
        line-height: 1.45;
      }

      .header-inner {
        min-height: 64px;
      }

      .brand {
        min-width: 168px;
      }

      .brand-logo {
        width: 160px;
        max-height: 58px;
      }

      .brand-text {
        display: none;
      }

      .header-actions {
        padding-left: 0;
        border-left: 0;
      }

      .phone-link {
        display: none;
      }

      .header-actions .btn {
        display: none;
      }

      .hero,
      .hero-inner {
        min-height: 690px;
      }

      .hero-inner {
        padding: 150px 0 70px;
      }

      .location {
        margin-bottom: 20px;
      }

      .eyebrow {
        font-size: 14px;
        letter-spacing: 0.18em;
      }

      .hero h1 {
        font-size: clamp(44px, 14vw, 58px);
      }

      .hero h2 {
        font-size: 31px;
        margin-bottom: 30px;
      }

      .hero p.statement {
        font-size: 17px;
        padding-left: 18px;
      }

      .section {
        padding: 74px 0;
      }

      .section-head {
        margin-bottom: 42px;
      }

      .section-title,
      .quote-title {
        font-size: clamp(38px, 12vw, 52px);
      }

      .product-grid,
      .service-grid,
      .benefit-grid,
      .risk-grid,
      .about-grid,
      .review-grid,
      .form-grid,
      .refurbish-feature,
      .step-grid,
      .visit-grid {
        grid-template-columns: 1fr;
      }

      .product-grid,
      .service-grid {
        gap: 38px;
      }

      .dark-band {
        padding: 72px 0;
      }

      .benefit {
        padding: 34px 26px;
      }

      .portfolio {
        min-height: auto;
      }

      .portfolio .section-title {
        font-size: clamp(44px, 14vw, 64px);
      }

      .portfolio-cascade {
        width: 100%;
        min-height: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 44px;
        transform: none;
        left: auto;
      }

      .portfolio-column {
        gap: 16px;
        transform: none !important;
      }

      .cascade-tile,
      .portfolio-panel,
      .tile-sm,
      .tile-md,
      .tile-lg,
      .tile-xl,
      .tile-xxl {
        min-height: 220px;
      }

      .portfolio-panel {
        padding: 28px;
      }

      .cta-band {
        margin-top: 0;
      }

      .cta-inner {
        display: grid;
      }

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

      .difference {
        clip-path: polygon(0 0, 100% 0, 100% 94%, 72% 100%, 20% 100%, 0 95%);
      }

      .difference .section-head {
        margin-bottom: 48px;
      }

      .step {
        min-height: auto;
      }

      .visit-copy {
        padding-right: 0;
      }

      .visit-media {
        min-height: 360px;
        clip-path: none;
      }

      .about-copy .section-lede {
        margin-top: 26px;
        font-size: 17px;
      }

      .about-media {
        min-height: 460px;
        padding-top: 10px;
      }

      .manager-card {
        right: 10px;
        width: 190px;
      }

      .team-card {
        right: 6px;
        width: 232px;
      }

      .stat-row {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 48px;
      }

      .review-list {
        columns: 1;
      }

      .quote-head {
        margin-bottom: 44px;
      }

      .quote-form {
        padding: 42px 22px 48px;
      }

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

      .copyright {
        display: grid;
      }
    }
    /* ============================================================
       Subpages: product / service detail, blog
       ============================================================ */

    .site-header.is-solid {
      background: #10245a;
      border-bottom-color: rgba(255, 255, 255, 0.12);
    }

    body.subpage {
      padding-top: 34px;
    }

    .pg-hero {
      position: relative;
      overflow: hidden;
      background: var(--navy);
      padding: clamp(150px, 16vw, 220px) 0 clamp(64px, 7vw, 108px);
      color: #fff;
    }

    .pg-hero-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: .3;
    }

    .pg-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(100deg, rgba(10, 41, 84, .92) 0%, rgba(11, 33, 73, .82) 52%, rgba(5, 18, 43, .58) 100%);
    }

    .pg-hero-plain {
      padding-top: clamp(140px, 14vw, 190px);
    }

    .pg-hero-inner {
      position: relative;
      z-index: 2;
      max-width: 940px;
    }

    .pg-crumb {
      font-family: Archivo, sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 22px;
      color: rgba(255, 255, 255, .66);
    }

    .pg-crumb a {
      color: var(--lime);
      text-decoration: none;
    }

    .pg-crumb span {
      margin: 0 8px;
      opacity: .5;
    }

    .pg-crumb em {
      font-style: normal;
      color: #fff;
    }

    .pg-hero h1 {
      margin: 0 0 20px;
      font-family: Archivo, sans-serif;
      font-weight: 900;
      font-size: clamp(38px, 5.4vw, 74px);
      line-height: .98;
      letter-spacing: -.035em;
      text-transform: uppercase;
    }

    .pg-lede {
      max-width: 720px;
      margin: 0 0 30px;
      font-size: clamp(17px, 1.5vw, 20px);
      line-height: 1.66;
      color: rgba(255, 255, 255, .82);
      border-left: 4px solid var(--lime);
      padding-left: 22px;
    }

    .pg-hero-actions {
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
    }

    .pg-call {
      font-family: Archivo, sans-serif;
      font-weight: 700;
      font-size: 14px;
      color: rgba(255, 255, 255, .8);
      text-decoration: none;
    }

    .pg-call:hover {
      color: var(--lime);
    }

    .pg-body {
      display: grid;
      gap: clamp(48px, 6vw, 92px);
    }

    .pg-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(28px, 4vw, 68px);
      align-items: center;
    }

    .pg-row-flip .pg-row-copy {
      order: 2;
    }

    .pg-row-copy h3 {
      margin: 0 0 16px;
      font-family: Archivo, sans-serif;
      font-weight: 900;
      font-size: clamp(23px, 2.3vw, 33px);
      line-height: 1.1;
      letter-spacing: -.02em;
      color: var(--navy);
    }

    .pg-row-copy p {
      margin: 0;
      color: #33445e;
      font-size: 17px;
      line-height: 1.72;
    }

    .pg-row-media {
      position: relative;
      margin: 0;
      padding: 10px;
      background: #fff;
      box-shadow: 0 26px 70px rgba(11, 33, 73, .12);
    }

    .pg-row-media::before {
      content: "";
      position: absolute;
      right: -10px;
      top: -10px;
      width: 38px;
      height: 38px;
      border-top: 5px solid var(--lime);
      border-right: 5px solid var(--lime);
    }

    .pg-row-media img {
      display: block;
      width: 100%;
      aspect-ratio: 1.4 / 1;
      object-fit: cover;
    }

    .pg-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 18px;
    }

    .pg-tile {
      position: relative;
      margin: 0;
      overflow: hidden;
      background: var(--navy);
    }

    .pg-tile img {
      display: block;
      width: 100%;
      aspect-ratio: 1.1 / 1;
      object-fit: cover;
      transition: transform 320ms ease;
    }

    .pg-tile:hover img {
      transform: scale(1.05);
    }

    .pg-faq-wrap {
      max-width: 860px;
    }

    .pg-faq {
      padding: 26px 0;
      border-top: 1px solid var(--line);
    }

    .pg-faq h4 {
      margin: 0 0 10px;
      font-family: Archivo, sans-serif;
      font-weight: 800;
      font-size: 19px;
      color: var(--navy);
    }

    .pg-faq p {
      margin: 0;
      color: #33445e;
      line-height: 1.7;
    }

    .pg-rel-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 16px;
    }

    .pg-rel {
      display: block;
      padding: 24px;
      background: #fff;
      border-top: 4px solid var(--lime);
      box-shadow: 0 14px 38px rgba(11, 33, 73, .08);
      text-decoration: none;
      transition: transform 220ms ease, box-shadow 220ms ease;
    }

    .pg-rel:hover {
      transform: translateY(-4px);
      box-shadow: 0 22px 52px rgba(11, 33, 73, .14);
    }

    .pg-rel span {
      display: block;
      font-family: Archivo, sans-serif;
      font-weight: 900;
      font-size: 17px;
      color: var(--navy);
      margin-bottom: 8px;
    }

    .pg-rel small {
      display: block;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.6;
    }

    /* ---- blog ---- */
    .post-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .post-card {
      display: block;
      text-decoration: none;
      background: #fff;
      padding-bottom: 26px;
      box-shadow: 0 14px 38px rgba(11, 33, 73, .08);
      transition: transform 220ms ease, box-shadow 220ms ease;
    }

    .post-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 26px 60px rgba(11, 33, 73, .16);
    }

    .post-card .media-frame {
      margin-bottom: 20px;
    }

    .post-card-meta,
    .post-meta {
      font-family: Archivo, sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--lime);
      margin: 0 26px 10px;
    }

    .post-card h3 {
      margin: 0 26px 12px;
      font-family: Archivo, sans-serif;
      font-weight: 900;
      font-size: 21px;
      line-height: 1.22;
      letter-spacing: -.02em;
      color: var(--navy);
    }

    .post-card p {
      margin: 0 26px 18px;
      color: #33445e;
      font-size: 15px;
      line-height: 1.66;
    }

    .post-card .learn {
      margin: 0 26px;
    }

    .post-head {
      max-width: 860px;
      padding-top: clamp(130px, 13vw, 176px);
      padding-bottom: 34px;
    }

    .post-head h1 {
      margin: 0 0 14px;
      font-family: Archivo, sans-serif;
      font-weight: 900;
      font-size: clamp(31px, 4.2vw, 55px);
      line-height: 1.04;
      letter-spacing: -.03em;
      color: var(--navy);
    }

    .post-head .pg-crumb {
      color: var(--muted);
    }

    .post-head .pg-crumb a {
      color: var(--purple);
    }

    .post-meta {
      margin-left: 0;
      color: var(--muted);
    }

    .post-hero {
      margin: 0 0 clamp(34px, 4vw, 60px);
    }

    .post-hero img {
      display: block;
      width: 100%;
      max-height: 540px;
      object-fit: cover;
    }

    .post-body {
      max-width: 760px;
      padding-bottom: clamp(60px, 7vw, 104px);
    }

    .post-excerpt {
      font-size: 20px;
      line-height: 1.62;
      color: var(--navy);
      font-weight: 500;
      border-left: 4px solid var(--lime);
      padding-left: 22px;
      margin: 0 0 38px;
    }

    .post-body h2 {
      margin: 40px 0 14px;
      font-family: Archivo, sans-serif;
      font-weight: 900;
      font-size: clamp(21px, 2vw, 28px);
      line-height: 1.18;
      letter-spacing: -.02em;
      color: var(--navy);
    }

    .post-body p {
      margin: 0 0 18px;
      color: #33445e;
      font-size: 17px;
      line-height: 1.76;
    }

    .pg-note {
      margin-top: 36px;
      padding: 20px 24px;
      background: var(--soft);
      border-left: 4px solid var(--blue);
      font-size: 15px !important;
      color: var(--muted) !important;
    }

    @media (max-width: 900px) {
      .pg-row,
      .pg-row-flip {
        grid-template-columns: 1fr;
      }

      .pg-row-flip .pg-row-copy {
        order: 0;
      }

      .pg-hero-actions {
        gap: 16px;
      }
    }

    /* ---- real Google reviews band ---- */
    .google-reviews {
      background: var(--soft);
    }

    .g-badge {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      margin: 22px 0 18px;
      padding: 12px 22px;
      background: #fff;
      border-top: 4px solid var(--lime);
      box-shadow: 0 14px 38px rgba(11, 33, 73, .1);
    }

    .g-badge strong {
      font-family: Archivo, sans-serif;
      font-size: 34px;
      font-weight: 900;
      line-height: 1;
      letter-spacing: -.04em;
      color: var(--navy);
    }

    .g-stars {
      color: #f2b600;
      font-size: 19px;
      letter-spacing: 2px;
    }

    .g-count {
      font-family: Archivo, sans-serif;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .g-list {
      columns: 3;
      column-gap: 22px;
    }

    .g-link {
      margin-top: 26px;
      text-align: center;
    }

    .g-link a {
      font-family: Archivo, sans-serif;
      font-weight: 800;
      font-size: 13px;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--purple);
    }

    @media (max-width: 900px) {
      .g-list {
        columns: 1;
      }
    }

    /* Nav gained a Blog link; keep the header CTA on one line at every width. */
    .btn {
      white-space: nowrap;
    }

    @media (max-width: 1360px) {
      .nav {
        gap: 24px;
      }

      .header-actions .phone-link {
        font-size: 17px;
      }
    }

    @media (max-width: 1180px) {
      .nav {
        gap: 18px;
      }
    }

    /* ============================================================
       Find-us map band (every page), FAQ, legal pages, before/after
       ============================================================ */

    .map-band {
      background: var(--navy);
      color: #fff;
      padding: clamp(56px, 6vw, 92px) 0;
    }

    .map-inner {
      display: grid;
      grid-template-columns: 1fr 1.15fr;
      gap: clamp(30px, 4vw, 64px);
      align-items: center;
    }

    .map-copy .kicker {
      color: var(--lime);
    }

    .map-copy h2 {
      margin: 8px 0 16px;
      font-family: Archivo, sans-serif;
      font-weight: 900;
      font-size: clamp(27px, 3vw, 42px);
      line-height: 1.04;
      letter-spacing: -.03em;
      text-transform: uppercase;
    }

    .map-copy h2 span {
      color: var(--lime);
    }

    .map-copy > p {
      margin: 0 0 22px;
      color: rgba(255, 255, 255, .74);
      line-height: 1.7;
      max-width: 48ch;
    }

    .map-facts {
      list-style: none;
      margin: 0 0 22px;
      padding: 0;
      display: grid;
      gap: 14px;
    }

    .map-facts li {
      padding-left: 16px;
      border-left: 3px solid var(--lime);
      font-size: 15px;
      line-height: 1.6;
      color: rgba(255, 255, 255, .74);
    }

    .map-facts strong {
      color: #fff;
    }

    .map-facts a {
      color: rgba(255, 255, 255, .74);
      text-decoration: none;
    }

    .map-facts a:hover {
      color: var(--lime);
    }

    .map-directions {
      font-family: Archivo, sans-serif;
      font-weight: 800;
      font-size: 13px;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--lime);
      text-decoration: none;
    }

    .map-frame {
      position: relative;
      padding: 10px;
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(255, 255, 255, .12);
    }

    .map-frame iframe {
      display: block;
      width: 100%;
      height: clamp(280px, 34vw, 420px);
      border: 0;
      filter: grayscale(.25) contrast(1.05);
    }

    .legal-links {
      display: inline-flex;
      gap: 20px;
    }

    .legal-links a {
      color: inherit;
      text-decoration: none;
    }

    .legal-links a:hover {
      color: var(--lime);
    }

    /* ---- FAQ ---- */
    .faq-wrap {
      display: grid;
      grid-template-columns: 250px 1fr;
      gap: clamp(30px, 4vw, 70px);
      align-items: start;
    }

    .faq-nav {
      position: sticky;
      top: 120px;
      display: grid;
      gap: 2px;
      border-left: 2px solid var(--line);
    }

    .faq-nav a {
      padding: 10px 0 10px 18px;
      margin-left: -2px;
      border-left: 2px solid transparent;
      font-family: Archivo, sans-serif;
      font-weight: 700;
      font-size: 13px;
      color: var(--muted);
      text-decoration: none;
      transition: color 180ms ease, border-color 180ms ease;
    }

    .faq-nav a:hover {
      color: var(--navy);
      border-left-color: var(--lime);
    }

    .faq-group + .faq-group {
      margin-top: 52px;
    }

    .faq-group h2 {
      margin: 0 0 18px;
      font-family: Archivo, sans-serif;
      font-weight: 900;
      font-size: clamp(21px, 2vw, 29px);
      letter-spacing: -.02em;
      color: var(--navy);
      scroll-margin-top: 120px;
    }

    .faq-item {
      border-top: 1px solid var(--line);
    }

    .faq-item summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 20px 0;
      cursor: pointer;
      list-style: none;
      font-family: Archivo, sans-serif;
      font-weight: 700;
      font-size: 17px;
      color: var(--navy);
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: "+";
      flex: none;
      width: 26px;
      height: 26px;
      display: grid;
      place-items: center;
      background: var(--soft);
      color: var(--purple);
      font-size: 19px;
      font-weight: 700;
      line-height: 1;
      transition: transform 200ms ease, background 200ms ease;
    }

    .faq-item[open] summary::after {
      content: "\2212";
      background: var(--lime);
      color: #fff;
    }

    .faq-answer p {
      margin: 0;
      padding: 0 46px 22px 0;
      color: #33445e;
      line-height: 1.74;
    }

    /* ---- legal ---- */
    .legal-body h2 {
      font-size: clamp(19px, 1.8vw, 24px);
      margin-top: 38px;
    }

    .legal-body ul {
      margin: 0 0 18px;
      padding-left: 22px;
      color: #33445e;
      line-height: 1.74;
    }

    .legal-body li {
      margin-bottom: 8px;
    }

    /* ---- before / after ---- */
    .ba-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
      gap: 26px;
    }

    .ba-card {
      background: #fff;
      box-shadow: 0 16px 46px rgba(11, 33, 73, .1);
    }

    .ba-pair {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3px;
      background: var(--navy);
    }

    .ba-shot {
      position: relative;
      margin: 0;
      overflow: hidden;
    }

    .ba-shot img {
      display: block;
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
    }

    .ba-shot figcaption {
      position: absolute;
      left: 0;
      bottom: 0;
      padding: 7px 14px;
      font-family: Archivo, sans-serif;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: #fff;
      background: rgba(11, 33, 73, .86);
    }

    .ba-shot.is-after figcaption {
      background: var(--lime);
      color: var(--navy);
    }

    .ba-body {
      padding: 22px 24px 26px;
    }

    .ba-kind {
      font-family: Archivo, sans-serif;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--purple);
      margin: 0 0 8px;
    }

    .ba-body h3 {
      margin: 0 0 10px;
      font-family: Archivo, sans-serif;
      font-weight: 900;
      font-size: 19px;
      letter-spacing: -.02em;
      color: var(--navy);
    }

    .ba-body p {
      margin: 0;
      color: #33445e;
      font-size: 14px;
      line-height: 1.68;
    }

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

      .faq-nav {
        position: static;
        display: flex;
        flex-wrap: wrap;
        border-left: 0;
        border-top: 2px solid var(--line);
        gap: 0 6px;
      }

      .faq-nav a {
        padding: 10px 12px;
        margin-left: 0;
        border-left: 0;
        border-top: 2px solid transparent;
        margin-top: -2px;
      }

      .faq-nav a:hover {
        border-left-color: transparent;
        border-top-color: var(--lime);
      }
    }

    /* ---- About: founder + next generation card ----
       The stock manager-card overlays its caption on the photo; this one needs a
       readable two-line credit under it, so the caption is taken out of the overlay. */
    .team-card {
      width: 288px;
      right: -26px;
      bottom: -22px;
      padding: 9px 9px 0;
      transform: rotate(5deg);
    }

    .team-card img {
      display: block;
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      object-position: 50% 32%;
    }

    .team-card figcaption {
      position: static;
      color: inherit;
      text-shadow: none;
      text-transform: none;
      letter-spacing: normal;
      font-family: Roboto, sans-serif;
      font-weight: 400;
      font-size: inherit;
      padding: 14px 6px 16px;
    }

    .team-kicker {
      margin: 0 0 6px;
      font-family: Archivo, sans-serif;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .13em;
      text-transform: uppercase;
      color: var(--purple);
    }

    .team-line {
      margin: 0;
      font-size: 14px;
      line-height: 1.6;
      color: var(--muted);
    }

    /* Breadcrumb on light pages: the hero variant is white, which disappears here. */
    .post-head .pg-crumb em {
      color: var(--navy);
    }

    /* ============================================================
       EMTA identity layer
       ------------------------------------------------------------
       The base design was inherited from a 3GM Signs clone. This block
       removes 3GM's visual signatures (purple/lime scheme, crossing-line
       pattern, diagonal wedge, lime corner brackets, Poppins) and puts
       EMTA's own motif in their place: a 45-degree cut corner, the way a
       routed sign panel is finished, plus a single amber accent rule.
       Everything here is additive, so reverting is deleting this block.
       ============================================================ */

    /* 1. Drop 3GM's crossing-line overlay. */
    .hero::before,
    .pattern::before {
      display: none;
    }

    /* 2. Hero: a straight bottom-anchored scrim instead of the purple diagonal wash. */
    .hero::after {
      background:
        linear-gradient(180deg, rgba(5, 18, 43, .72) 0%, rgba(5, 18, 43, .18) 38%, rgba(5, 18, 43, .55) 72%, rgba(5, 18, 43, .93) 100%),
        linear-gradient(90deg, rgba(11, 33, 73, .9) 0%, rgba(11, 33, 73, .3) 58%, transparent 100%);
    }

    /* 3. Drop the diagonal wedge that ends 3GM's sections. */
    .section.diagonal::after {
      display: none;
    }

    /* 4. Replace the lime corner brackets with a cut corner + accent rule. */
    .about-main-photo::before,
    .manager-card::before,
    .manager-card::after,
    .pg-row-media::before {
      display: none;
    }

    .about-main-photo,
    .manager-card,
    .pg-row-media,
    .media-frame,
    .pg-tile,
    .ba-card,
    .map-frame {
      clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
    }

    .pg-row-media,
    .about-main-photo {
      border-top: 3px solid var(--lime);
    }

    /* 5. Cards: an amber rule that starts short and runs on hover, rather than a
          full-width lime bar sitting on every card the way 3GM does it. */
    .product-card,
    .service-card,
    .pg-rel,
    .post-card,
    .review,
    .ba-card {
      position: relative;
      border-top: 0;
    }

    .product-card::after,
    .service-card::after,
    .pg-rel::after,
    .post-card::after,
    .ba-card::after {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      height: 4px;
      width: 62px;
      background: var(--lime);
      transition: width 320ms cubic-bezier(.2, .7, .3, 1);
    }

    .product-card:hover::after,
    .service-card:hover::after,
    .pg-rel:hover::after,
    .post-card:hover::after,
    .ba-card:hover::after {
      width: 100%;
    }

    /* 6. Kickers: a short rule and letter-spaced label instead of 3GM's bare lime caps. */
    .kicker {
      display: inline-flex;
      align-items: center;
      gap: 12px;
    }

    .kicker::before {
      content: "";
      width: 26px;
      height: 2px;
      background: currentColor;
      opacity: .55;
    }

    /* 7. Buttons: solid amber, cut corner. 3GM's is a lime outline. */
    .btn {
      background: var(--lime);
      border-color: var(--lime);
      color: var(--navy);
      clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 13px, 100% 100%, 13px 100%, 0 calc(100% - 13px));
    }

    .btn:hover {
      background: #ffb43a;
      border-color: #ffb43a;
      color: var(--navy);
    }

    .btn svg {
      stroke: var(--navy);
    }

    /* 8. Section titles: Archivo is squarer than Poppins, so tighten and let the
          accent word carry navy weight rather than shouting in the accent colour. */
    .section-title span,
    .map-copy h2 span {
      color: var(--blue);
    }

    .dark-band .section-title span,
    .pg-hero h1 span,
    .map-copy h2 span {
      color: var(--lime);
    }

    /* 9. Google star colour, kept distinct from the amber accent. */
    .g-stars {
      color: #e8b31c;
    }

    /* Archivo sets wider than Poppins, so the header row needs less air to keep the
       CTA inside the container at 1280-1440. */
    .header-inner {
      gap: 20px;
      min-width: 0;
    }

    .nav {
      gap: 26px;
    }

    .header-actions {
      gap: 14px;
      padding-left: 20px;
    }

    .phone-link {
      font-size: 19px;
    }

    .header-actions .btn {
      min-height: 46px;
      padding: 0 20px;
      font-size: 12px;
    }

    @media (max-width: 1400px) {
      .nav {
        gap: 18px;
        font-size: 13px;
      }

      .phone-link {
        font-size: 17px;
      }
    }

    @media (max-width: 1240px) {
      .nav {
        gap: 14px;
      }

      .header-actions .phone-link {
        display: none;
      }
    }

    /* Two full-bleed bands still carried the old scheme: a near-black magenta wash
       and a lime-to-teal panel. Re-tone both to navy and amber. */
    .dark-band {
      background:
        radial-gradient(circle at 74% 40%, rgba(47, 111, 184, .28), transparent 42%),
        linear-gradient(135deg, #050f24, #0b2149 46%, #04101f);
    }

    .difference {
      background:
        linear-gradient(122deg, rgba(242, 160, 26, .92) 0%, rgba(250, 197, 122, .72) 34%, rgba(255, 251, 244, .97) 72%),
        #fff7ea;
      clip-path: none;
    }

    /* The amber band fades to cream, so a white accent word loses contrast on the
       right side. The band is the accent here; keep the heading one solid navy. */
    .difference .section-title span {
      color: var(--navy);
    }

    /* The crossing-line overlay lived on this band too. */
    .difference::before {
      display: none;
    }

    /* ---- Visit us: shop details and the map side by side (the separate find-us
       band was saying the same thing twice on the homepage) ---- */
    .visit-map {
      position: relative;
      display: grid;
      align-content: center;
      gap: 14px;
      padding: clamp(48px, 5vw, 76px) 0 clamp(48px, 5vw, 76px) clamp(28px, 4vw, 56px);
    }

    .visit-map iframe {
      display: block;
      width: 100%;
      height: clamp(320px, 40vw, 480px);
      border: 0;
      filter: grayscale(.2) contrast(1.04);
      background: var(--soft);
      clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
      box-shadow: 0 22px 60px rgba(11, 33, 73, .16);
    }

    .visit-map .map-directions {
      justify-self: start;
      color: var(--purple);
    }

    /* The header logo is 78px tall in a 74px row, so it crowds the top strip. */
    .header-inner {
      min-height: 92px;
    }

    .brand-logo {
      width: 178px;
      max-height: 56px;
    }

    @media (max-width: 900px) {
      .visit-map {
        padding: 0 0 clamp(40px, 8vw, 64px);
      }

      .header-inner {
        min-height: 72px;
      }

      .brand-logo {
        width: 148px;
        max-height: 46px;
      }
    }

    /* Visit column: the CTA was stretching to the grid track, and the map link
       inherited a dark purple that vanishes on the navy panel. */
    .visit-copy .btn {
      justify-self: start;
    }

    .visit-map .map-directions {
      color: var(--lime);
    }

    .visit-copy h2 {
      max-width: 12ch;
    }

    .visit-copy h2 span {
      color: var(--lime);
    }

    /* ============================================================
       Before / after wipe: 2 x 2, drag the handle to compare
       ============================================================ */
    .ba-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 34px;
    }

    .ba-compare {
      position: relative;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      background: var(--navy);
      touch-action: pan-y;
      user-select: none;
    }

    .ba-compare img {
      position: absolute;
      inset: 0;
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      pointer-events: none;
    }

    .ba-top {
      position: absolute;
      inset: 0;
      clip-path: inset(0 calc(100% - var(--pos)) 0 0);
    }

    .ba-line {
      position: absolute;
      top: 0;
      bottom: 0;
      left: var(--pos);
      width: 3px;
      margin-left: -1.5px;
      background: var(--lime);
      pointer-events: none;
      box-shadow: 0 0 0 1px rgba(5, 18, 43, .28);
    }

    .ba-grip {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: var(--lime);
      box-shadow: 0 6px 20px rgba(5, 18, 43, .38);
      display: grid;
      place-items: center;
    }

    /* two small navy arrows pointing left and right */
    .ba-grip::before,
    .ba-grip::after {
      content: "";
      position: absolute;
      top: 50%;
      width: 0;
      height: 0;
      margin-top: -5px;
      border-top: 5px solid transparent;
      border-bottom: 5px solid transparent;
    }

    .ba-grip::before {
      left: 10px;
      border-right: 7px solid var(--navy);
    }

    .ba-grip::after {
      right: 10px;
      border-left: 7px solid var(--navy);
    }

    .ba-tag {
      position: absolute;
      bottom: 0;
      padding: 7px 14px;
      font-family: Archivo, sans-serif;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
      pointer-events: none;
      z-index: 3;
    }

    .ba-tag-before {
      left: 0;
      background: rgba(5, 18, 43, .88);
      color: #fff;
    }

    .ba-tag-after {
      right: 0;
      background: var(--lime);
      color: var(--navy);
    }

    .ba-range {
      position: absolute;
      inset: 0;
      z-index: 4;
      width: 100%;
      height: 100%;
      margin: 0;
      padding: 0;
      opacity: 0;
      cursor: ew-resize;
      -webkit-appearance: none;
      appearance: none;
      background: transparent;
    }

    .ba-range::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 46px;
      height: 100%;
    }

    .ba-range::-moz-range-thumb {
      width: 46px;
      height: 100%;
      border: 0;
      background: transparent;
    }

    .ba-range:focus-visible ~ .ba-line .ba-grip,
    .ba-compare:focus-within .ba-grip {
      outline: 3px solid #fff;
      outline-offset: 3px;
    }

    /* ---- products: a closing card so the last row is never a lone orphan ---- */
    .product-cta {
      grid-column: span 3;
      background: var(--navy);
      color: #fff;
      text-decoration: none;
      clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 0 100%);
      transition: transform 220ms ease;
    }

    .product-cta:hover {
      transform: translateY(-4px);
    }

    .product-cta::after {
      display: none;
    }

    .product-cta-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 34px;
      flex-wrap: wrap;
      padding: clamp(28px, 3vw, 42px);
      height: 100%;
    }

    .product-cta h3 {
      margin: 0 0 10px;
      font-family: Archivo, sans-serif;
      font-weight: 900;
      font-size: clamp(21px, 2vw, 29px);
      letter-spacing: -.02em;
      color: #fff;
      border: 0;
      padding: 0;
    }

    .product-cta p {
      margin: 0;
      max-width: 62ch;
      color: rgba(255, 255, 255, .76);
      line-height: 1.68;
    }

    .product-cta .learn {
      color: var(--lime);
      flex: none;
    }

    @media (max-width: 1120px) {
      .product-cta {
        grid-column: span 2;
      }
    }

    @media (max-width: 900px) {
      .ba-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 760px) {
      .product-cta {
        grid-column: span 1;
      }
    }

    /* Product cards hide their body copy; the closing CTA card needs its line back. */
    .product-cta p {
      display: block;
    }
