@charset "UTF-8";
/* ==========================================================================
   clr-light TIGER NIGERIA LIMITED — DESIGN SYSTEM
   Palette drawn from the brand's own corporate profile:
   clr-prim red bars, clr-prim-light/parchment ground, deep clr-prim-clr-dark text, clr-sec seal accent.
   Signature motif: a "guilloché" security-clr-line divider + serialized seal
   badges, echoing the anti-counterfeit printing the company actually does.
   ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  /* Color */
  --clr-prim-light: #f6eec3;
  --clr-prim: #a6402a;
  --clr-prim-deep: #7a2a1a;
  --clr-prim-clr-dark: #2b1d12;
  --clr-brown: #5a4632;
  --clr-sec: #dc7a12;
  --clr-sec-light: #ffcc29;
  --clr-line: rgba(43, 29, 18, 0.14);
  --clr-line-strong: rgba(43, 29, 18, 0.28);
  --clr-light: #fffcf2;
  --clr-dark: #000;
  --clr-txt: #1d1d1d;
  --clr-grey: #868686;
  --clr-grey-light: #f1f1f1;
  /* Type */
  --f-display: 'Montserrat', sans-serif;
  --f-body: 'Poppins', sans-serif;
  --f-mono: 'Poppins', sans-serif;
  /* Scale */
  --step-0: clamp(1rem, 0.95rem + 0.2vw, 1.05rem);
  --step-1: clamp(1.25rem, 1.15rem + 0.4vw, 1.45rem);
  --step-2: clamp(1.75rem, 1.5rem + 1vw, 2.3rem);
  --step-3: clamp(2.4rem, 1.9rem + 2vw, 3.6rem);
  --step-4: clamp(3.2rem, 2.4rem + 3.5vw, 5.2rem);
  --radius: 8px;
  --max: 1180px;
}

/* ---- Reset --------------------------------------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--clr-prim-dark);
  font-family: var(--f-body);
  font-size: var(--step-0);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

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

ul {
  list-style: none;
  list-style-type: none;
}

button {
  font: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--clr-prim);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* ---- Layout helpers -------------------------------------------------- */
.wrap {
  max-width: var(--max);
  margin-inline: 1rem;
  padding-block: clamp(1rem, 4vw, 1rem);
}

.sections {
  padding-block: clamp(3rem, 8vw, 3rem);
  padding-inline: 1rem;
}

.section-title-con {
  text-align: center;
}
.section-title-con .section-title {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}
.section-title-con .section-title-tag {
  display: inline-flex;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  align-items: center;
  gap: 0.55em;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-prim);
}
.section-title-con .section-title-tag::before, .section-title-con .section-title-tag::after {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--clr-prim);
}

.tag-txt {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-prim);
}
.tag-txt::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--clr-prim);
}

/* Parent that hosts the overlay must be position: relative
   (and have some height — e.g. a hero image, a card, a media block) */
.overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: linear-gradient(180deg, rgba(120, 68, 27, 0.5) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.overlay-content {
  max-width: 100%;
  color: #fffcf2;
}

.overlay-content h2 {
  font-family: var(--f-display, "Fraunces", serif);
  font-size: clamp(1.4rem, 1.1rem + 1.5vw, 2.1rem);
  font-weight: 600;
  line-height: 1.15;
  color: #fffcf2;
  margin-bottom: 0.75rem;
}

.overlay-content p {
  font-size: 0.97rem;
  line-height: 1.6;
  color: rgba(255, 252, 242, 0.88);
  margin-bottom: 1.5rem;
}

h1,
h2,
h3,
h4 {
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--clr-prim);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

h1 {
  font-size: var(--step-4);
  font-weight: 500;
}

h2 {
  font-size: var(--step-3);
}

h3 {
  font-size: var(--step-2);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.9em 1.6em;
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--clr-prim-clr-dark);
  border-radius: var(--radius);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  position: relative;
  margin-top: 1rem;
}

.btn-primary {
  background: var(--clr-prim);
  border-color: var(--clr-prim);
  color: var(--clr-light);
}

.btn-primary:hover {
  background: var(--clr-prim-deep);
  border-color: var(--clr-prim-deep);
}

.btn-outline {
  background: transparent;
  border-color: var(--clr-prim);
  color: var(--clr-prim);
}

.btn-outline:hover {
  background: var(--clr-brown);
  border-color: var(--clr-brown);
  color: var(--clr-prim-light);
}

.btn-on-dark {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--clr-light);
}
.btn-on-dark:hover {
  background: var(--clr-light);
  color: var(--clr-prim-deep);
  border-color: var(--clr-light);
}

/* ---- Cards / grids ------------------------------------------------------ */
.grid {
  display: grid;
  gap: 1.75rem;
}

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

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

@media (max-width: 900px) {
  .grid--3 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .grid--3,
  .grid--2 {
    grid-template-columns: 1fr;
  }
}
.card {
  background: var(--clr-light);
  border-radius: var(--radius);
  padding: 1.9rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
  box-shadow: -5px 5px 8px rgba(0, 0, 0, 0.25);
}

.card:hover {
  border-color: var(--clr-prim);
  transform: translateY(-3px);
}

.card .tag {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--clr-sec);
  text-transform: uppercase;
}

.card h3 {
  font-size: 1.3rem;
  margin-block: 0.5rem 0.6rem;
}

.card p {
  color: var(--clr-brown);
  font-size: 0.94rem;
}

/* ---- Header ------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--clr-prim-light);
  padding-inline: 4rem;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
}
.site-header .wrap .brand-con {
  width: 80px;
  height: 50px;
}
.site-header .wrap .brand-con .logo {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.2rem);
}

.nav a {
  font-size: 0.88rem;
  font-weight: 500;
  padding-block: 0.3rem;
  border-bottom: 1px solid transparent;
}

.nav a:hover,
.nav a[aria-current=page] {
  border-color: var(--clr-prim);
  color: var(--clr-prim);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--clr-prim);
  width: 42px;
  height: 38px;
  border-radius: var(--radius);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--clr-prim);
  margin: 4px auto;
}

@media (max-width: 780px) {
  .nav-toggle {
    display: block;
  }
  .nav {
    position: absolute;
    inset: 100% 0 auto 0;
    background: var(--clr-light);
    border-bottom: 1px solid var(--clr-line);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem clamp(1.25rem, 4vw, 3rem) 1.75rem;
    gap: 1rem;
    display: none;
  }
  .nav.is-open {
    display: flex;
  }
  .nav a {
    border-bottom: none;
  }
}
/* ---- HOME PAGE STYLES --------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--clr-light);
  background: url("../assets/hero-img.png") center center/cover no-repeat;
  padding-inline: 2rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.45) 100%);
  z-index: 1;
}

.hero .wrap {
  position: relative;
  z-index: 2;
  padding-block: clamp(5rem, 10vw, 8rem);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero h1 {
  margin-block: 0.5rem 1.1rem;
  color: #fff;
  max-width: 12ch;
}

.hero .lede {
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-actions .btn-outline {
  color: #fff;
  border-color: #fff;
}
.hero-actions .btn-outline:hover {
  background: var(--clr-light);
  color: var(--clr-prim-deep);
  border-color: var(--clr-light);
}

.hero .tag-txt {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.hero .seal {
  position: relative;
  z-index: 2;
}

.seal {
  padding: 2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  position: relative;
}

.seal::before {
  content: "RC 735321";
  position: absolute;
  top: -0.7em;
  left: 1.4rem;
  background: var(--clr-prim-light);
  padding-inline: 0.5em;
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--clr-prim);
}

.seal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.seal-stat .num {
  font-family: var(--f-display);
  font-size: 2rem;
  color: var(--clr-light);
}

.seal-stat .label {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
}

#what-we-do-section {
  background: var(--clr-grey-light);
}
#what-we-do-section .wrap .section-title-con .section-title-tag {
  color: var(--clr-sec);
}
#what-we-do-section .wrap .section-title-con .section-title {
  color: var(--clr-dark);
}
#what-we-do-section .wrap .what-we-do-card h3 {
  color: var(--clr-dark);
}
#what-we-do-section .wrap .what-we-do-card p {
  color: var(--clr-grey);
}

#teaser-section {
  background-image: url(../assets/trusted-client.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--clr-prim-light);
  min-height: clamp(18rem, 36vw, 34rem);
  display: flex;
  align-items: center;
  padding-block: clamp(2.5rem, 6vw, 4rem) clamp(2rem, 5vw, 3rem);
  padding-inline: 1rem;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
#teaser-section h2 {
  color: var(--clr-light);
  font-size: var(--step-3);
  font-family: var(--f-display);
}

.brands-marquee {
  width: 100%;
  overflow: hidden;
  margin-top: 3rem;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.brands-marquee:hover .brands-track {
  animation-play-state: paused;
}

.brands-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: scrollBrands 28s linear infinite;
}

.brands-set {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
}

.brand-logo {
  flex: 0 0 auto;
  width: 180px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.35s ease;
}
.brand-logo img {
  width: 180px;
  max-width: 80%;
  max-height: 55px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: all 0.35s ease;
}
.brand-logo:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.brand-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.5);
}

@keyframes scrollBrands {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 1rem));
  }
}
@media (max-width: 860px) {
  .hero .wrap {
    grid-template-columns: 1fr;
  }
}
.stat-band {
  background: var(--clr-prim);
  color: var(--clr-prim-light);
}

.stat-band .grid {
  text-align: center;
}

.stat-band .num {
  font-family: var(--f-display);
  font-size: var(--step-2);
  color: #fff;
}

.stat-band .label {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  opacity: 0.85;
  text-transform: uppercase;
}

/* ---- Stepper (real sequential process — chain of custody) -------------- */
.stepper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.step {
  background: var(--clr-light);
  padding: 1.75rem 1.5rem;
  position: relative;
  border: 1px solid var(--clr-grey-light);
  border-radius: var(--radius);
}
.step:hover {
  border-color: var(--clr-prim);
  transform: translateY(-3px);
}

.step .serial {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: var(--clr-prim);
  letter-spacing: 0.06em;
}

.step h4 {
  font-size: 1.05rem;
  margin-block: 0.5rem 0.5rem;
  color: var(--clr-dark);
}

.step p {
  font-size: 0.87rem;
  color: var(--clr-txt);
}

@media (max-width: 900px) {
  .stepper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .stepper {
    grid-template-columns: 1fr;
  }
}
/* ---- Image / media block ------------------------------------------------ */
.media {
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
  color: var(--clr-brown);
  font-family: var(--f-mono);
  font-size: 0.72rem;
  text-align: center;
  border: 1px solid var(--clr-line);
  border-radius: var(--radius);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
.media img {
  height: 100%;
  width: 100%;
}

.contact-section .contact-item h4 {
  margin-bottom: 0.35rem;
}
.contact-section .contact-item p {
  color: var(--clr-dark);
}
.contact-section .contact-card .contact-dial-box {
  gap: 0.5rem;
  border: 1px solid var(--clr-line);
  padding: 0.5rem;
  margin-block: 1rem;
  border-radius: var(--radius);
  transition: box-shadow 0.3s ease;
}
.contact-section .contact-card .contact-dial-box:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.contact-section .contact-form {
  display: grid;
  background: #fff;
  padding: 1rem 1rem 2rem;
  border-radius: 16px;
  border: 1px solid var(--clr-line);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}
.contact-section .form-group {
  display: grid;
  gap: 0.5rem;
}
.contact-section .form-group label {
  font-weight: 600;
}
.contact-section .contact-form input,
.contact-section .contact-form select,
.contact-section .contact-form textarea {
  width: 100%;
  padding: 0.5rem 1rem;
  margin-block: none;
  border: 1px solid var(--clr-line-strong);
  border-radius: var(--radius);
  font: inherit;
  background: #fff;
  transition: 0.3s ease;
}
.contact-section .contact-form input:focus,
.contact-section .contact-form select:focus,
.contact-section .contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.08);
}
.contact-section .contact-form textarea {
  resize: vertical;
}

.map-section {
  background: var(--clr-light);
  border-block: 1px solid var(--clr-line);
}
.map-section .map-placeholder {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--clr-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.map-section .map-placeholder iframe {
  display: block;
  width: 100%;
  height: 500px;
  border: 0;
}

/* ---- Client list --------------------------------------------------------- */
.client-list {
  -moz-columns: 2;
       columns: 2;
  gap: 2.5rem;
}

.client-list li {
  border-bottom: 1px solid var(--clr-line);
  padding-block: 0.85rem;
  font-family: var(--f-display);
  font-size: 1.05rem;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}

@media (max-width: 640px) {
  .client-list {
    -moz-columns: 1;
         columns: 1;
  }
}
/* ---- CTA band ------------------------------------------------------------ */
.cta {
  background: var(--clr-prim-clr-dark);
  color: var(--clr-prim-light);
}

.cta .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta h2 {
  color: var(--clr-prim-light);
  font-size: var(--step-2);
}

/* ---- Footer --------------------------------------------------------------- */
.site-footer {
  background: var(--clr-prim-deep);
  color: rgba(255, 255, 255, 0.85);
  padding-block: 3rem 1.75rem;
  padding-inline: 1rem;
  text-align: center;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-grid h5 {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-sec-light);
  margin-bottom: 0.9rem;
}

.footer-grid li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1.5rem;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 780px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* ---- Reveal on scroll (progressive enhancement) --------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ---- Page header (interior pages) ------------------------------------------ */
.page-header {
  padding-block: clamp(2.5rem, 6vw, 4rem) clamp(2rem, 5vw, 3rem);
  padding-inline: 1rem;
}

.page-header {
  /* background image can be set via the CSS variable --page-header-image
     Example: <div class="page-header" style="--page-header-image: url(images/about-hero.jpg)">
  */
  position: relative;
  background-image: var(--page-header-image, linear-gradient(180deg, var(--clr-prim-light), var(--clr-prim-light)));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--clr-prim-light);
  min-height: clamp(18rem, 36vw, 34rem);
  display: flex;
  align-items: center;
  padding-block: clamp(2.5rem, 6vw, 4rem) clamp(2rem, 5vw, 3rem);
  padding-inline: 1rem;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  /* subtle dark overlay to improve text contrast */
  background: linear-gradient(rgba(1, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  z-index: 0;
}

.page-header .wrap {
  position: relative;
  z-index: 1;
}

.page-header .tag-txt {
  margin-bottom: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.page-header h1,
.page-header p.lede {
  color: var(--clr-prim-light);
}

.page-header .tag-txt {
  margin-bottom: 0.9rem;
}

/* ---- Directional scroll-reveal (left / right / bottom) --------------------
   Extends the existing [data-reveal] rule already in styles.scss. Same
   IntersectionObserver in main.js drives it — this only teaches the
   attribute selector about a *direction* via the attribute's value. */
[data-reveal=left] {
  transform: translateX(-64px);
}

[data-reveal=right] {
  transform: translateX(64px);
}

[data-reveal=bottom] {
  transform: translateY(56px);
}

[data-reveal=left].is-visible,
[data-reveal=right].is-visible,
[data-reveal=bottom].is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger helper — put data-reveal-group on a parent, its data-reveal
   children fade in one after another instead of all at once. */
[data-reveal-group] > [data-reveal]:nth-child(1) {
  transition-delay: 0s;
}
[data-reveal-group] > [data-reveal]:nth-child(2) {
  transition-delay: 0.08s;
}
[data-reveal-group] > [data-reveal]:nth-child(3) {
  transition-delay: 0.16s;
}
[data-reveal-group] > [data-reveal]:nth-child(4) {
  transition-delay: 0.24s;
}
[data-reveal-group] > [data-reveal]:nth-child(5) {
  transition-delay: 0.32s;
}
[data-reveal-group] > [data-reveal]:nth-child(6) {
  transition-delay: 0.4s;
}
[data-reveal-group] > [data-reveal]:nth-child(7) {
  transition-delay: 0.48s;
}
[data-reveal-group] > [data-reveal]:nth-child(8) {
  transition-delay: 0.56s;
}

/* ---- Machinery page ---------------------------------------------------- */
.machinery-page .page-header {
  background-image: url("../assets/image4.png");
}
.machinery-page .media {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 3px solid var(--clr-prim);
  background: none;
}
.machinery-page .media::before {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
}
.machinery-page .media::after {
  bottom: 10px;
  right: 10px;
  border-left: none;
  border-top: none;
}
.machinery-page .media__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--clr-prim);
  color: var(--clr-light);
  font-family: var(--f-mono);
  font-size: 0.64rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3em 0.7em;
  border-radius: 999px;
}
.machinery-page {
  /* Capacity stat strip */
}
.machinery-page .machinery-stats {
  background: var(--clr-prim);
  color: var(--clr-light);
  padding-block: clamp(2.25rem, 6vw, 3.75rem);
}
.machinery-page .machinery-stats .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 780px) {
  .machinery-page .machinery-stats .wrap {
    grid-template-columns: 1fr;
  }
}
.machinery-page .stat {
  text-align: center;
  padding-inline: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.machinery-page .stat:last-child {
  border-right: none;
}
@media (max-width: 780px) {
  .machinery-page .stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-block: 1.25rem;
  }
  .machinery-page .stat:last-child {
    border-bottom: none;
  }
}
.machinery-page .stat__num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2rem, 1.6rem + 2vw, 3rem);
  color: #fff;
  line-height: 1;
}
.machinery-page .stat__label {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
}
.machinery-page {
  /* Press cards. */
}
.machinery-page .press-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
}
.machinery-page .press-card .media {
  border-bottom: 1px solid var(--clr-line);
  border-radius: 0;
  aspect-ratio: 16/10;
}
.machinery-page .press-card__body {
  padding: 1.6rem 1.75rem 1.9rem;
}
.machinery-page .press-card__spec {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--clr-line-strong);
}
.machinery-page .press-card__num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.55rem;
  color: var(--clr-prim);
}
.machinery-page .press-card__unit {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--clr-brown);
}
.machinery-page .beyond-section .card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  isolation: isolate;
}
.machinery-page .beyond-section .card .card-content {
  position: relative;
  z-index: 2;
  transition: color 0.45s ease;
}
.machinery-page .beyond-section .card:hover .card-overlay {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transform: scale(1);
}
.machinery-page .beyond-section .card:hover .card-content {
  color: #fff;
}
.machinery-page .beyond-section .card:hover .tag {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.machinery-page .beyond-section .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.15);
  /* Hidden from the top-right corner */
  clip-path: polygon(100% 0, 100% 0, 100% 0, 100% 0);
  transition: clip-path 0.65s cubic-bezier(0.77, 0, 0.175, 1), transform 0.8s ease;
}
.machinery-page .beyond-section .card-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}
@media (max-width: 780px) {
  .machinery-page .beyond-section .card:hover {
    min-height: 350px;
    transform: scale(1.1);
  }
}
.machinery-page {
  /* Fleet ledger */
}
.machinery-page .fleet-list {
  counter-reset: fleet;
  display: flex;
  flex-direction: column;
}
.machinery-page .fleet-list li {
  counter-increment: fleet;
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding-block: 0.9rem;
  border-bottom: 1px solid var(--clr-line);
  font-size: 0.95rem;
  color: var(--clr-prim);
}
.machinery-page .fleet-list li::before {
  content: "N°" counter(fleet, decimal-leading-zero);
  flex-shrink: 0;
  width: 4.25rem;
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: var(--clr-prim);
}
.machinery-page .fleet-list li:last-child {
  border-bottom: none;
}/*# sourceMappingURL=style.css.map */