  /* =========================================================
    home.css — Homepage-only styles (template-matched layout)
    ========================================================= */

  /* ---- Shared tag / label --------------------------------- */
  .h-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
  }
  .h-tag--light {
    color: var(--accent-light);
  }

  /* =========================================================
    HERO — split layout, photo + dark block overlay
    ========================================================= */
  .h-hero {
    position: relative;
    height: 100vh;
    padding: 0;
    display: flex;
    align-items: stretch;
    overflow: hidden;
  }

  .h-hero__video {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -100;
  }

  .h-hero__content {
    position: relative;
    z-index: 1;
    margin-left: auto;
    width: 50%;
    min-height: 100vh;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.612), rgb(255, 255, 255));
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 64px 80px 64px;
  }

  .h-hero__title {
    font-size: clamp(2.4rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--dark);
    margin-bottom: 3.4rem;
  }

  .h-hero__title .accent {
    color: var(--accent);
    font-weight: 200;
  }

  .h-hero__desc {
    font-size: 1rem;
    color: var(--text-light, #64748b);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 480px;
  }

  .h-hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }

  .h-hero__badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .h-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary);
    background: rgba(86, 108, 131, 0.08);
    border: 1px solid rgba(86, 108, 131, 0.2);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
  }





  /* =========================================================
    ABOUT — photo collage left, numbered list right
    ========================================================= */
  .h-about {
    background: var(--white);
    position: relative;
    z-index: 1;
    padding: 100px 80px;
  }

  .h-about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
  }

  .h-about__left {
    position: relative;
    padding-right: 48px;
  }

  .h-about__collage {
    position: relative;
    height: 600px;
  }

  .h-about__img {
    position: absolute;
    border-radius: 100px 0 0 0;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  }

  .h-about__img--main {
    width: 75%;
    height: 75%;
    top: 0;
    left: 0;
  }

  .h-about__img--accent {
    width: 55%;
    height: 55%;
    bottom: 0;
    right: 0;
    border: 5px solid var(--white);
  }

  .h-about__badge {
    position: absolute;
    bottom: 32px;
    left: 32px;
    background: var(--accent);
    color: var(--white);
    padding: 1rem 1.4rem;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(201,135,102,0.35);
  }

  .h-about__badge-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
  }

  .h-about__badge-text {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.9;
  }

  .h-about__right {
    padding-left: 48px;
  }

  .h-about__right h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.25;
  }

  .h-about__right > p {
    color: var(--text-light, #64748b);
    line-height: 1.75;
    margin-bottom: 2rem;
  }

  .h-about__list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
  }

  .h-about__list li {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
  }

  .h-about__num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .h-about__list li div strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
  }

  .h-about__list li div p {
    font-size: 0.875rem;
    color: var(--text-light, #64748b);
    margin: 0;
    line-height: 1.6;
  }

  /* =========================================================
    SERVICES / STATS BAND — primary bg, text left, photos right
    ========================================================= */
  .h-band {
    background: var(--primary);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 100px 80px;
    max-width: 100%;
    gap: 64px;
  }

  .h-band__left h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 1rem;
  }

  .h-band__left > p {
    color: rgba(255,255,255,0.75);
    line-height: 1.75;
    margin-bottom: 2.5rem;
    max-width: 460px;
  }

  .h-band__stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
  }

  .h-band__stat {
    display: flex;
    flex-direction: column;
  }

  .h-band__stat-num {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--accent-light, #dba080);
    line-height: 1;
  }

  .h-band__stat-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    margin-top: 0.25rem;
  }

  .h-band__right {
    position: relative;
  }

  .h-band__photos {
    position: relative;
    height: 380px;

  }

  .h-band__photo {
    position: absolute;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  }

  .h-band__photo--top {
    width: 65%;
    height: 70%;
    top: 0;
    right: 0;
    border-radius: 100px 0 0 0;
  }

  .h-band__photo--bottom {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 100px 4px 4px 4px;
  }

  /* =========================================================
    PRODUCT PHOTO CARDS — full-bleed image cards grid
    ========================================================= */
  .h-products {
    padding: 100px 80px;
    max-width: 100%;
    background: var(--off-white);
    position: relative;
    z-index: 1;
  }

  .h-products__inner {
    max-width: 1400px;
    margin: 0 auto;
  }

  .h-products__header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 56px;
  }

  .h-products__header h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
  }

  .h-products__header p {
    color: var(--text-light, #64748b);
    line-height: 1.75;
  }

  .h-products__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
  }

  .h-pcard {
    position: relative;
    overflow: hidden;
    border-radius: 50px 50px 0 0;
    display: block;
    text-decoration: none;
    aspect-ratio: 3 / 4;
    cursor: pointer;
  }

  .h-pcard__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }

  .h-pcard:hover .h-pcard__img {
    transform: scale(1.06);
  }

  .h-pcard__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(30,42,56,0.92) 50%, rgba(30,42,56,0) 100%);
    color: var(--white);
    display: flex;
    flex-direction: column;
  }

  .h-pcard__cat {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-light, #dba080);
    margin-bottom: 0.4rem;
  }

  .h-pcard__title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
    color: var(--white);
  }

  .h-pcard__link {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s, gap 0.2s;
  }

  .h-pcard:hover .h-pcard__link {
    color: var(--accent-light, #dba080);
    gap: 0.7rem;
  }

  .h-products__cta {
    text-align: center;
  }

  /* =========================================================
    SERVICES CARDS — 3-up photo cards
    ========================================================= */
  .h-services {
    background: var(--off-white, #f8f9fc);
    padding: 100px 0;
  }

  .h-services__header {
    text-align: center;
    margin-bottom: 56px;
  }

  .h-services__header h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: var(--dark);
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
  }

  .h-services__header > p {
    color: var(--text-light, #6b7a8d);
    font-size: 0.95rem;
  }

  .h-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
  }

  .h-services__cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }

  .h-services__cta p {
    font-size: 0.9rem;
    color: var(--text-light, #6b7a8d);
  }

  .h-scard {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .h-scard:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  }

  .h-scard__img-wrap {
    height: 220px;
    overflow: hidden;
  }

  .h-scard__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .h-scard:hover .h-scard__img {
    transform: scale(1.05);
  }

  .h-scard__body {
    padding: 1.75rem;
  }

  .h-scard__icon {
    width: 44px;
    height: 44px;
    background: rgba(86, 108, 131, 0.1);
    color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .h-scard__body h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
  }

  .h-scard__body p {
    font-size: 0.875rem;
    color: var(--text-light, #64748b);
    line-height: 1.65;
    margin-bottom: 1.25rem;
  }

  .h-scard__link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: color 0.2s, gap 0.2s;
  }

  .h-scard__link:hover {
    color: var(--accent);
    gap: 0.6rem;
  }

  /* =========================================================
    CTA — full-width dark photo overlay
    ========================================================= */
  .h-cta {
    position: relative;
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1400&q=60') center/cover no-repeat;
    padding: 120px 80px;
    text-align: center;
  }

  .h-cta__overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 42, 56, 0.88);
  }

  .h-cta__content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    color: var(--white);
  }

  .h-cta__content h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
  }

  .h-cta__content > p {
    color: rgba(255,255,255,0.78);
    line-height: 1.8;
    margin-bottom: 2.5rem;
  }

  .h-cta__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
  }

  .h-cta__facts {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.15);
  }

  .h-cta__fact {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .h-cta__num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-light, #dba080);
    line-height: 1;
  }

  .h-cta__fact > span:last-child {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    margin-top: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  /* =========================================================
    NEWSLETTER — centered strip
    ========================================================= */
  .h-newsletter {
    background: var(--white);
    padding: 80px 20px;
    text-align: center;
  }

  .h-newsletter h2 {
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.6rem;
  }

  .h-newsletter > .container > p {
    color: var(--text-light, #64748b);
    margin-bottom: 2rem;
  }

  .h-newsletter__form {
    display: flex;
    gap: 0;
    max-width: 520px;
    margin: 0 auto;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  }

  .h-newsletter__form input[type="email"] {
    flex: 1;
    padding: 0.9rem 1.25rem;
    border: 1px solid var(--gray-light, #e8e9eb);
    border-right: none;
    font-family: var(--font);
    font-size: 0.9rem;
    outline: none;
    color: var(--dark);
  }

  .h-newsletter__form input[type="email"]:focus {
    border-color: var(--primary);
  }

  .h-newsletter__form .btn {
    border-radius: 0;
    white-space: nowrap;
  }

  /* =========================================================
    CLIENTS
    ========================================================= */
  .h-clients {
    padding: 80px 0;
    background: var(--white);
  }

  .h-clients__header {
    text-align: center;
    margin-bottom: 52px;
  }

  .h-clients__header h2 {
    margin-bottom: 12px;
  }

  .h-clients__header p {
    color: var(--text-light);
    max-width: 520px;
    margin: 0 auto;
    font-size: 0.95rem;
  }

  .h-clients__logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px 56px;
  }

  .h-client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .h-client-logo:hover {
    opacity: 0.8;
    transform: scale(1.05);
  }

  .h-client-logo img {
    max-height: 52px;
    max-width: 140px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.3s ease, opacity 0.3s ease;
  }

  .h-client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
  }

  .h-client-text {
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--primary);
    padding: 12px 24px;
    border: 2px solid var(--gray-light);
    border-radius: var(--border-radius-sm);
    text-transform: uppercase;
    white-space: nowrap;
  }

  /* =========================================================
    PARTNERS / CERTIFICATIONS bar
    ========================================================= */
  .h-partners {
    background: var(--off-white, #f8f9fc);
    border-top: 1px solid var(--gray-light, #e8e9eb);
    border-bottom: 1px solid var(--gray-light, #e8e9eb);
    padding: 32px 20px;
  }

  .h-partners .container {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .h-partners__label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray, #b9bbbf);
    white-space: nowrap;
  }

  .h-partners__logos {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    align-items: center;
  }

  .h-partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    color: var(--gray, #b9bbbf);
    transition: color 0.2s;
  }

  .h-partner-logo:hover {
    color: var(--primary);
  }

  .h-partner-logo i {
    font-size: 1.5rem;
  }

  .h-partner-logo span {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  /* =========================================================
    WHY CHOOSE US
    ========================================================= */
  .h-why {
    background: var(--primary);
    color: var(--white);
    padding: 96px 0;
  }

  .h-why__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .h-why__text h2 {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 1.25rem;
  }

  .h-why__text h2 .accent {
    color: var(--accent);
    font-weight: 200;
  }

  .h-why__text > p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    margin-bottom: 1rem;
  }

  .h-why__text .btn-primary {
    margin-top: 0.75rem;
  }

  .h-why__img-wrap {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border-radius: 16px;
    overflow: hidden;
  }

  .h-why__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* =========================================================
    RESPONSIVE
    ========================================================= */
  @media (max-width: 1100px) {
    .h-hero {
      min-height: 100vh;
    }
    .h-hero__content {
      width: 60%;
      padding: 100px 40px 60px;
    }
    .h-about {
      padding: 60px 40px;
    }
    .h-about__inner {
      grid-template-columns: 1fr;
    }
    .h-about__left { padding-right: 0; margin-bottom: 48px; }
    .h-about__right { padding-left: 0; }
    .h-band {
      grid-template-columns: 1fr;
      padding: 60px 40px;
      gap: 48px;
    }
    .h-products {
      padding: 60px 40px;
    }
    .h-products__grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .h-cta {
      padding: 80px 40px;
    }
    .h-why__grid {
      grid-template-columns: 1fr;
      gap: 48px;
      padding: 0 40px;
    }
  }

  @media (max-width: 768px) {
    .h-hero {
      align-items: flex-end;
    }
    .h-hero__content {
      width: 100%;
      padding: 40px 24px 48px;
      background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.38) 60%, transparent 100%);
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      min-height: auto;
      justify-content: flex-end;
    }
    .h-hero__title {
      font-size: clamp(2rem, 9vw, 3rem);
      line-height: 1.1;
      color: #fff;
    }
    .h-hero__title .accent {
      color: var(--accent-light, #e8b99a);
    }
    .h-hero .h-tag {
      color: var(--accent-light, #e8b99a);
    }
    .h-hero__actions {
      flex-direction: column;
      gap: 0.75rem;
    }
    .h-hero__actions .btn {
      width: 100%;
      text-align: center;
      justify-content: center;
    }
    .h-about {
      padding: 48px 24px;
    }
    .h-band {
      padding: 48px 24px;
    }
    .h-products {
      padding: 48px 24px;
    }
    .h-products__grid {
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .h-services__grid {
      grid-template-columns: 1fr;
    }
    .h-cta {
      padding: 60px 24px;
    }
    .h-why__grid {
      padding: 0 24px;
    }
    .h-why__stats {
      grid-template-columns: 1fr 1fr;
    }
    .h-cta__facts {
      gap: 1.5rem;
    }
    .h-band__photos {
      height: 280px;
    }
  }

  @media (max-width: 480px) {
    .h-products__grid {
      grid-template-columns: 1fr;
    }
    .h-cta__facts {
      flex-direction: column;
      gap: 1rem;
      align-items: center;
    }
    .h-newsletter__form {
      flex-direction: column;
      border-radius: 4px;
    }
    .h-newsletter__form input[type="email"] {
      border-right: 1px solid var(--gray-light, #e8e9eb);
      border-bottom: none;
      border-radius: 4px 4px 0 0;
    }
    .h-newsletter__form .btn {
      border-radius: 0 0 4px 4px;
    }
  }

  /* =========================================================
    SCROLL REVEAL — base states + transitions
    Elements start hidden; JS adds .is-visible on scroll
    ========================================================= */
  .reveal {
    opacity: 0;
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
  }

  .reveal--up    { transform: translateY(52px); }
  .reveal--left  { transform: translateX(-60px); }
  .reveal--right { transform: translateX(60px); }
  .reveal--fade  { transform: none; }
  .reveal--scale { transform: scale(0.90); }

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

  /* Staggered delays for grid children */
  .reveal[data-delay="1"] { transition-delay: 0.10s; }
  .reveal[data-delay="2"] { transition-delay: 0.20s; }
  .reveal[data-delay="3"] { transition-delay: 0.30s; }
  .reveal[data-delay="4"] { transition-delay: 0.40s; }
  .reveal[data-delay="5"] { transition-delay: 0.50s; }
  .reveal[data-delay="6"] { transition-delay: 0.60s; }

  /* Honour reduced-motion preference */
  @media (prefers-reduced-motion: reduce) {
    .reveal {
      opacity: 1;
      transform: none !important;
      transition: none;
    }
  }
