  :root {
    --blue: #007AC3;
    --blue-dark: #005f99;
    --yellow: #FBBE03;
    --charcoal: #2D2D2D;
    --mid: #5a5a5a;
    --rule: #e0e8f0;
    --bg: #f4f8fb;
    --white: #ffffff;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  body { font-family: 'Inter', Arial, sans-serif; color: var(--charcoal); background: var(--white); }

  /* Header */
  .site-header {
    background: var(--charcoal);
    padding: 16px 56px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .arg-logo {
    height:36px !important; 
    width:auto !important; 
    display:block !important;
  }

  /* Hero */
  .hero {
    background-color: var(--charcoal);
    position: relative;
    overflow: hidden;
    padding: 88px 56px 80px;
    text-align: center;
  }
  .hero-bg-40 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(320px, 55vw, 600px);
    line-height: 1;
    color: var(--yellow);
    opacity: 0.12;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -52%);
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
    user-select: none;
  }
  .hero-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 22px;
    position: relative;
  }
  .hero-headline {
    font-family: 'Anton', sans-serif;
    font-size: clamp(52px, 9vw, 104px);
    color: var(--white);
    line-height: 0.95;
    position: relative;
    letter-spacing: 0.01em;
  }
  .hero-headline .yel { color: var(--yellow); }
  .hero-sub {
    font-size: clamp(15px, 2.2vw, 20px);
    color: #9dbfd8;
    max-width: 560px;
    margin: 24px auto 0;
    line-height: 1.6;
    position: relative;
  }
  .hero-moving {
    font-family: 'Anton', sans-serif;
    font-size: clamp(48px, 10vw, 96px);
    color: var(--blue);
    letter-spacing: 0.04em;
    line-height: 1;
    margin-top: 28px;
    position: relative;
  }
  .hero-pills {
    display: block;
    text-align: center;
    line-height: 2;
    margin-top: 40px;
    position: relative;
  }
  .hero-detail-primary {
    font-size: 15px;
    font-weight: 700;
    color: var(--yellow);
    letter-spacing: 0.03em;
  }
  .hero-detail {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
  }

  /* Hill */
  .hill { display: block; width: 100%; margin-top: -2px; }

  /* Stats */
  .stats-strip {
    background-color: var(--blue);
    background-image: linear-gradient(rgba(0, 70, 150, 0.72), rgba(0, 55, 130, 0.75)), url('/ASSETS/IMAGES/CMS/STATIC_IMAGES/Pasco_Moving/stats-strip.jpg');
    background-size: cover;
    background-position: center 80%;
    padding: 44px 56px;
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 16px;
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
  }
  .stat-num {
    font-family: 'Anton', sans-serif;
    font-size: 44px;
    color: var(--yellow);
    line-height: 1;
    letter-spacing: -0.01em;
  }
  .stat-lbl {
    font-size: 10.5px;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 7px;
    font-weight: 600;
    line-height: 1.4;
  }

  /* Sections */
  .section { padding: 80px 56px; }
  .inner { max-width: 1080px; margin: 0 auto; }
  .eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
  }
  .sec-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(34px, 5vw, 56px);
    color: var(--charcoal);
    line-height: 1.0;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
  }
  .sec-body {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
  }

  /* Story */
  .story-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
  }
  .timeline { display: flex; flex-direction: column; }
  .t-item { display: flex; gap: 20px; position: relative; }
  .t-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 19px;
    top: 42px;
    bottom: 0;
    width: 2px;
    background: var(--rule);
  }
  .t-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .t-dot.yel { background: var(--yellow); color: var(--charcoal); }
  .t-body { padding-bottom: 36px; }
  .t-year { font-family: 'Anton', sans-serif; font-size: 22px; color: var(--charcoal); }
  .t-year.blue { color: var(--blue); }
  .t-text { font-size: 14px; color: var(--mid); line-height: 1.65; margin-top: 4px; }

  /* Capabilities */
  .bg-light { background: var(--bg); }
  .cap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    margin-top: 48px;
  }
  .cap-card {
    background: var(--white);
    border: 1px solid var(--rule);
    border-top: 4px solid var(--blue);
    border-radius: 4px;
    padding: 28px 22px;
  }
  .cap-card.new-cap { border-top-color: var(--yellow); }
  .cap-icon { display: none; }
  .cap-name {
    font-family: 'Anton', sans-serif;
    font-size: 18px;
    color: var(--charcoal);
    letter-spacing: 0.03em;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .new-cap .badge {
    background: var(--yellow);
    color: var(--charcoal);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 7px;
    border-radius: 3px;
  }
  .cap-rows { list-style: none; }
  .cap-rows li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding: 7px 0;
    border-bottom: 1px solid var(--rule);
    font-size: 13px;
  }
  .cap-rows li:last-child { border-bottom: none; }
  .cap-rows .k { color: var(--mid); flex-shrink: 0; }
  .cap-rows .v { font-weight: 600; color: var(--charcoal); text-align: right; line-height: 1.35; }
  .soon {
    display: inline-block;
    background: #e8f3fb;
    color: var(--blue);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 5px;
  }

  /* Services */
  .bg-dark {
    background-color: var(--charcoal);
    background-image: linear-gradient(rgba(20,20,20,0.82), rgba(20,20,20,0.82)), url('/ASSETS/IMAGES/CMS/STATIC_IMAGES/Pasco_Moving/services.jpg');
    background-size: cover;
    background-position: center;
  }
  .bg-dark .eyebrow { color: var(--yellow); }
  .bg-dark .sec-title { color: var(--white); }
  .svc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
    gap: 14px;
    margin-top: 44px;
  }
  .svc-chip {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 22px 16px;
    text-align: center;
  }
  .svc-chip .ico { display: none; }
  .svc-chip .lbl { font-size: 13px; font-weight: 600; color: var(--yellow); line-height: 1.35; }
  .svc-chip .det { font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 5px; line-height: 1.4; }

  /* Industries */
  .industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
  }
  .i-tag {
    background: var(--bg);
    border: 1px solid var(--rule);
    border-radius: 100px;
    padding: 7px 16px;
    font-size: 13px;
    color: var(--mid);
    font-weight: 500;
  }

  /* Building breakdown */
  .space-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-top: 40px;
  }
  .space-card {
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: 6px;
    padding: 20px 18px;
    text-align: center;
  }
  .space-num {
    font-family: 'Anton', sans-serif;
    font-size: 32px;
    color: var(--blue);
    letter-spacing: -0.01em;
  }
  .space-unit { font-size: 12px; color: var(--mid); font-weight: 600; }
  .space-lbl { font-size: 12px; color: var(--mid); margin-top: 6px; line-height: 1.4; }

  /* Grand opening */
  .opening {
    background: var(--yellow);
    padding: 72px 56px;
    text-align: center;
  }
  .opening .eyebrow { color: rgba(0,0,0,0.5); }
  .opening .sec-title { color: var(--charcoal); }
  .opening-detail { font-size: 18px; color: var(--charcoal); margin-top: 8px; line-height: 1.6; }
  .opening-addr {
    font-family: 'Anton', sans-serif;
    font-size: 20px;
    color: var(--charcoal);
    letter-spacing: 0.04em;
    margin-top: 24px;
  }
  .watch-tag {
    display: inline-block;
    margin-top: 24px;
    background: var(--charcoal);
    color: var(--white);
    padding: 11px 32px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  /* Hours + Contact */
  .hc-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }
  .hours-tbl { width: 100%; border-collapse: collapse; }
  .hours-tbl td { padding: 9px 0; border-bottom: 1px solid var(--rule); font-size: 14px; color: var(--mid); }
  .hours-tbl td:last-child { text-align: right; font-weight: 600; color: var(--charcoal); }
  .contact-block { margin-bottom: 22px; }
  .c-lbl { font-size: 10px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--blue); margin-bottom: 4px; }
  .c-val { font-size: 22px; font-weight: 700; color: var(--charcoal); line-height: 1.2; }
  .c-sub { font-size: 12px; color: var(--mid); margin-top: 3px; }

  .footer-container footer {
    background: #1a1a1a;
    padding: 24px 56px;
    text-align: center;
    font-size: 12px;
    color: #666;
  }

  .footer-container footer a {
    color: var(--blue);
    text-decoration: none;
  }

  @media (max-width: 760px) {
    .site-header, .hero, .stats-strip, .opening { padding-left: 24px; padding-right: 24px; }
    .story-cols, .hc-cols { grid-template-columns: 1fr; gap: 40px; }
    .hero { padding-top: 64px; padding-bottom: 80px; }
    .section {padding: 15px 24px;}
  }