/* ═══════════ ABOUT HERO ═══════════ */
body{
    background: #f8f7f4;
    height: 100%;
    margin: 0;
    padding: 0;
}
.hw {
    position: relative;
    height: 560px;
    overflow: hidden;
    border-radius: 16px;
font-family: 'Playfair Display', Georgia,  sans-serif;    width: calc(100% - 3.4rem); /* 1.2rem × 2 sides */
    margin: 7.5rem auto 3rem;
    box-sizing: border-box;
    justify-content:  center;
    align-items: center;
  }

  .hw-bg {
    position: absolute;
    inset: 0;
    background: #07080f;
    transition: background 1.2s ease;
    z-index: 0;
  }

  .hw-img {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    transition: opacity 1.2s ease;
    background-size: cover;
    background-position: center;
  }

  .hw-img.on {
    opacity: 1;
  }

  .hw-veil {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(4, 5, 12, 0.6) 0%, rgba(4, 5, 12, 0.25) 35%, rgba(4, 5, 12, 0.88) 100%);
  }

  .hw-body {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100% - 100px);
    text-align: center;
    padding: 0 48px;
    gap: 20px;
  }

  .hw-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 10.5px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
  }

  .hw-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #d93a2b;
    animation: blink 2.4s infinite;
  }

  @keyframes blink {

    0%,
    100% {
      opacity: 1;
    }

    50% {
      opacity: 0.2;
    }
  }

  .hw-heading {
font-family: 'Playfair Display', Georgia,  sans-serif;    font-size: clamp(38px, 6.5vw, 72px);
    font-weight: 900;
    color: #fff;
    line-height: 1.06;
    letter-spacing: -0.5px;
    overflow: hidden;
  }

  .hw-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(60px) skewY(4deg);
    transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1);
  }

  .hw-word.visible {
    opacity: 1;
    transform: translateY(0) skewY(0deg);
  }

  .hw-word.italic {
    font-style: italic;
    color: #d93a2b;
  }

  .hw-line-wrap {
    display: block;
    overflow: hidden;
    line-height: 1.12;
  }

  .hw-rule {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 4px 0;
  }

  .hw-rule-line {
    height: 1px;
    width: 60px;
    background: rgba(255, 255, 255, 0.2);
    transition: background .6s, width .6s;
  }

  .hw-rule-diamond {
    width: 6px;
    height: 6px;
    background: #d93a2b;
    transform: rotate(45deg);
    transition: background .5s;
    flex-shrink: 0;
  }

  .hw-rule-line.right {
    background: rgba(255, 255, 255, 0.2);
  }

  .hw-sub {
    font-size: clamp(13px, 1.5vw, 15px);
    color: rgba(255, 255, 255, 0.48);
    line-height: 1.8;
    max-width: 520px;
    font-weight: 300;
    transition: opacity .5s, transform .5s;
  }

  .hw-sub.fade {
    opacity: 0;
    transform: translateY(8px);
  }

  .hw-services {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
    display: flex;
    background: rgba(4, 5, 12, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }

  .hw-svc {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 6px 16px;
    cursor: pointer;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    transition: background .3s;
    overflow: hidden;
  }

  .hw-svc:last-child {
    border-right: none;
  }

  .hw-svc-glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .4s;
    background: radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.18) 0%, transparent 70%);
  }

  .hw-svc.active .hw-svc-glow,
  .hw-svc:hover .hw-svc-glow {
    opacity: 1;
  }

  .hw-svc-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c9a84c, transparent);
    transform: scaleX(0);
    transition: transform .4s cubic-bezier(.22, 1, .36, 1);
  }

  .hw-svc.active .hw-svc-top {
    transform: scaleX(1);
  }

  .hw-svc:hover:not(.active) .hw-svc-top {
    transform: scaleX(0.5);
    opacity: 0.5;
  }

  .hw-icon-wrap {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: border-color .3s, background .3s, transform .35s cubic-bezier(.22, 1, .36, 1);
  }
  .hw-icon-wrap i{
    color: #fff;
  }

  .hw-svc.active .hw-icon-wrap {
    border-color: rgba(201, 168, 76, 0.5);
    background: rgba(201, 168, 76, 0.12);
    transform: translateY(-3px);
  }

  .hw-svc:hover:not(.active) .hw-icon-wrap {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
  }

  .hw-svc-name {
    font-size: 9.5px;
    font-weight: 500;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    line-height: 1.4;
    transition: color .3s;
  }

  .hw-svc.active .hw-svc-name {
    color: #d93a2b;
  }

  .hw-svc:hover:not(.active) .hw-svc-name {
    color: rgba(255, 255, 255, 0.7);
  }

  .hw-svc-num {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.15);
    font-weight: 400;
    transition: color .3s;
    letter-spacing: 1px;
  }

  .hw-svc.active .hw-svc-num {
    color: rgba(201, 168, 76, 0.5);
  }

  .wwa {
    background: #f8f7f4;
    padding: 42px 24px;
  }

  .wwa-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #d93a2b;
    font-weight: 600;
    margin-bottom: 16px;
  }

  .tag-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #d93a2b;
    animation: blink 2s infinite;
  }

  @keyframes blink {

    0%,
    100% {
      opacity: 1
    }

    50% {
      opacity: .2
    }
  }

  .sec-h {
font-family: 'Playfair Display', Georgia,  sans-serif;    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    color: #0d0e1a;
    line-height: 1.1;
    margin-bottom: 20px;
  }

  .sec-h em {
    font-style: italic;
    color: #d93a2b;
  }

  .wwa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 40px;
  }

  @media(max-width:680px) {
    .wwa-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }
  }

  .wwa-text p {
    font-size: 14px;
    color: #4a4b5a;
    line-height: 1.9;
    font-weight: 400;
    margin-bottom: 14px;
  }

  .wwa-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
  }

  .badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #e8e6e0;
    border-radius: 30px;
    padding: 6px 14px;
    font-size: 11.5px;
    font-weight: 500;
    color: #0d0e1a;
  }

  .badge i {
    font-size: 12px;
    color: #d93a2b;
  }

  .wwa-img-box {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #0d0e1a;
    aspect-ratio: 4/3;
  }

  .wwa-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .85;
    transition: opacity .4s, transform .6s;
  }

  .wwa-img-box:hover img {
    opacity: 1;
    transform: scale(1.04);
  }

  .wwa-img-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: rgba(13, 14, 26, .82);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, .08);
  }

  .wwa-img-label-title {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .3px;
  }

  .wwa-img-label-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, .45);
    margin-top: 2px;
  }

   .stats {
    background: #f8f7f4;
    padding: 72px 24px;
  }

  .stats-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .stats-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 48px;
  }

  @media(max-width:680px) {
    .stats-head {
      grid-template-columns: 1fr;
      gap: 16px;
    }
  }

  .stats-head p {
    font-size: 13.5px;
    color: #4a4b5a;
    line-height: 1.9;
  }

  .counters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #e0ddd6;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 48px;
  }

  @media(max-width:600px) {
    .counters {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  .ctr {
    background: #f8f7f4;
    padding: 32px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background .3s;
  }

  .ctr:hover {
    background: #fff;
  }

  .ctr-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #d93a2b;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .6s cubic-bezier(.22, 1, .36, 1);
  }

  .ctr.vis .ctr-bar {
    transform: scaleX(1);
  }

  .ctr-num {
font-family: 'Playfair Display', Georgia,  sans-serif;     font-size: clamp(34px, 5vw, 52px);
    font-weight: 900;
    color: #0d0e1a;
    line-height: 1;
  }

  .ctr-suf {
    color: #d93a2b;
  }

  .ctr-label {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #888;
    margin-top: 8px;
    font-weight: 500;
  }

  /* ── PILLARS ── */
  .pillars {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  @media(max-width:760px) {
    .pillars {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media(max-width:400px) {
    .pillars {
      grid-template-columns: 1fr;
    }
  }

  .pill {
    background: #fff;
    border: 1px solid #ece9e2;
    border-radius: 14px;
    padding: 24px 18px;
    text-align: center;
    transition: border-color .3s, transform .3s;
  }

  .pill:hover {
    border-color: #d93a2b;
    transform: translateY(-4px);
  }

  .pill-icon {
    width: 46px;
    height: 46px;
    border-radius: 11px;
    background: #fef0ee;
    border: 1px solid #f9cfc9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #d93a2b;
    margin: 0 auto 14px;
    transition: background .3s;
  }

  .pill:hover .pill-icon {
    background: #d93a2b;
  }

  .pill:hover .pill-icon i {
    color: #fff;
  }

  .pill-title {
    font-size: 12.5px;
    font-weight: 600;
    color: #0d0e1a;
    margin-bottom: 6px;
  }

  .pill-text {
    font-size: 11.5px;
    color: #888;
    line-height: 1.7;
  }

  /* ── SERVICES STRIP (dark) ── */
  .svcstrip {
    background: #0d0e1a;
    padding: 64px 24px;
  }

  .svcstrip-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .svcstrip-head {
    text-align: center;
    margin-bottom: 40px;
  }

  .svcstrip-head .sec-h {
    color: #fff;
  }

  .svc-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  @media(max-width:760px) {
    .svc-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  .svc-item {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 12px;
    padding: 20px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: border-color .3s, background .3s, transform .3s;
  }

  .svc-item:hover {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(201, 168, 76, .3);
    transform: translateX(4px);
  }

  .svc-item-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: rgba(201, 168, 76, .1);
    border: 1px solid rgba(201, 168, 76, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #c9a84c;
    flex-shrink: 0;
  }

  .svc-item-name {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, .65);
    line-height: 1.4;
  }

  .svc-item:hover .svc-item-name {
    color: #fff;
  }