/* ==========================================================================
   TARJANI ENTERPRISES PRIVATE LIMITED — Corporate Website Stylesheet
   --------------------------------------------------------------------------
   Palette : deep forest green + warm gold on a cream base
   Rules   : flat colours only (no gradients), no blue / orange / brown
   Method  : mobile-first, CSS custom properties, Flexbox + Grid
   --------------------------------------------------------------------------
   TABLE OF CONTENTS
     01. Custom properties (design tokens)
     02. Reset & base elements
     03. Layout helpers & typography
     04. Buttons
     05. Section 1  — Header / navigation
     06. Section 2  — Hero
     07. Section 3  — About & statistics
     08. Section 4  — Product categories
     09. Section 5  — Why choose us
     10. Section 6  — Infrastructure
     11. Section 7  — Global reach
     12. Section 8  — Testimonials carousel
     13. Section 9  — Blog / insights
     14. Section 10 — Values / CSR
     15. Section 11 — Contact & inquiry form
     16. Section 12 — Footer
     17. Back-to-top button
     18. Scroll-reveal animations
     19. Responsive — tablet (768px+)
     20. Responsive — desktop (1024px / 1200px+)
     21. Reduced motion & print
   ========================================================================== */


/* ==========================================================================
   01. CUSTOM PROPERTIES
   ========================================================================== */

:root {
  /* Brand colours */
  --primary: #1E4D3A;          /* Deep forest green */
  --primary-dark: #15382A;     /* Darker green — hover / depth */
  --primary-soft: #2A6349;     /* Lighter green — subtle fills */
  --secondary: #C89B3C;        /* Warm gold */
  --secondary-light: #DCAE54;  /* Lighter gold — hover */
  --secondary-dark: #A87F28;   /* Deeper gold — active state */

  /* Neutrals */
  --bg-cream: #F8F6F0;
  --bg-cream-deep: #F1EDE3;
  --bg-white: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-muted: #4A4A4A;
  --text-light: #6B6B6B;
  --border-light: #E8E4DA;

  /* Muted accents (sage + warm grey — deliberately not brown) */
  --sage: #7E9481;
  --sage-light: #E4EAE3;
  --mauve: #9A8E96;

  /* Feedback */
  --error: #B23A3A;
  --success: #2E7D4F;

  /* Elevation */
  --shadow: 0 4px 20px rgba(0, 0, 0, .08);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, .06);
  --shadow-lg: 0 14px 40px rgba(30, 77, 58, .16);

  /* Shape */
  --radius: 8px;
  --radius-sm: 4px;

  /* Type */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --font-head: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, Arial, sans-serif;

  /* Rhythm */
  --section-y: 64px;
  --container: 1240px;
  --gutter: 20px;

  /* Motion */
  --t-fast: .18s ease;
  --t-med: .3s ease;

  /* Header height used for scroll offsets (kept in sync by JS) */
  --header-h: 74px;
}


/* ==========================================================================
   02. RESET & BASE ELEMENTS
   ========================================================================== */

*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 .6em;
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
  letter-spacing: -.01em;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--t-fast);
}
a:hover { color: var(--secondary-dark); }

ul, ol { margin: 0; padding: 0; list-style: none; }

img, svg { max-width: 100%; height: auto; display: block; }

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

button { cursor: pointer; border: none; background: none; }

strong { color: var(--text-dark); font-weight: 600; }

/* Selection + focus styling kept inside the palette (never the browser blue) */
::selection {
  background-color: var(--secondary);
  color: var(--primary-dark);
}

:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 12px 20px;
  background-color: var(--secondary);
  color: var(--primary-dark);
  font-weight: 600;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}


/* ==========================================================================
   03. LAYOUT HELPERS & TYPOGRAPHY
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: var(--section-y) 0; }
.section--cream { background-color: var(--bg-cream); }
.section--green {
  background-color: var(--primary);
  color: rgba(248, 246, 240, .82);
}

.txt-gold { color: var(--secondary); }

/* --- Section headings ---------------------------------------------------- */

.section-head { margin-bottom: 40px; max-width: 780px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--primary);          /* gold at this size fails AA on cream */
}
.section-head--center .section-eyebrow { justify-content: center; }

.eyebrow-rule {
  display: inline-block;
  width: 34px;
  height: 2px;
  background-color: var(--secondary);
  flex: none;
}

.section-title {
  font-size: 1.75rem;
  margin-bottom: 14px;
  color: var(--primary);
}

.section-lead {
  font-size: 1.02rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.section-head--on-dark .section-title { color: var(--bg-cream); }
.section-head--on-dark .section-lead { color: rgba(248, 246, 240, .78); }
.section-head--on-dark .section-eyebrow { color: var(--secondary); }

/* --- Generic grids ------------------------------------------------------- */

.grid { display: grid; gap: 20px; grid-template-columns: 1fr; }

/* Grid children default to min-width:auto, which lets wide content (SVGs,
   long words) push a track past the viewport — opt them out. */
.grid > *,
.about__grid > *,
.infra__grid > *,
.global__grid > *,
.contact__grid > *,
.footer__grid > *,
.stats > * { min-width: 0; }


/* ==========================================================================
   04. BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;               /* touch-friendly target */
  padding: 13px 26px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-align: center;
  cursor: pointer;
  transition: background-color var(--t-fast), color var(--t-fast),
              border-color var(--t-fast), transform var(--t-fast),
              box-shadow var(--t-fast);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--gold {
  background-color: var(--secondary);
  color: var(--primary-dark);
  border-color: var(--secondary);
}
.btn--gold:hover {
  background-color: var(--secondary-light);
  border-color: var(--secondary-light);
  color: var(--primary-dark);
  box-shadow: var(--shadow-sm);
}

.btn--green {
  background-color: var(--primary);
  color: var(--secondary);
  border-color: var(--primary);
}
.btn--green:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--secondary-light);
  box-shadow: var(--shadow-sm);
}

.btn--outline-gold {
  background-color: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
}
.btn--outline-gold:hover {
  background-color: var(--secondary);
  color: var(--primary-dark);
}

.btn--sm {
  min-height: 44px;
  padding: 10px 18px;
  font-size: .85rem;
}

.btn--block { width: 100%; }

/* Inline "read more" style link */
.link-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 600;
  color: var(--primary);
  padding: 6px 0;
}
.link-more i { transition: transform var(--t-fast); font-size: .8rem; }
.link-more:hover { color: var(--secondary-dark); }
.link-more:hover i { transform: translateX(5px); }


/* ==========================================================================
   05. SECTION 1 — HEADER / NAVIGATION
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--bg-white);
  transition: box-shadow var(--t-med);
}
.site-header.is-stuck { box-shadow: 0 2px 18px rgba(0, 0, 0, .1); }

/* --- Utility top bar ----------------------------------------------------- */

.topbar {
  display: none;                 /* hidden below 1024px */
  background-color: var(--primary-dark);
  color: rgba(248, 246, 240, .8);
  font-size: .8rem;
  overflow: hidden;
  max-height: 44px;
  transition: max-height var(--t-med), opacity var(--t-med);
}
.site-header.is-stuck .topbar {   /* collapses once the user scrolls */
  max-height: 0;
  opacity: 0;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 44px;
}

.topbar__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.topbar__contact i,
.topbar__note i { color: var(--secondary); margin-right: 6px; }
.topbar__contact a { color: inherit; }
.topbar__contact a:hover { color: var(--secondary-light); }

.topbar__note { margin: 0; white-space: nowrap; }

/* --- Main bar ------------------------------------------------------------ */

.navbar { background-color: var(--bg-white); border-bottom: 1px solid var(--border-light); }

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}

/* Brand ------------------------------------------------------------------- */

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 1 auto;      /* allowed to shrink so the tagline wraps on small phones */
  min-width: 0;
}

/* Logo: a sizing box holding the inline SVG monogram seal. */
.brand__mark {
  display: block;
  width: 46px;
  height: 46px;
  flex: none;
}

.logo { display: block; width: 100%; height: 100%; }
.logo__tile { fill: var(--primary); }
.logo__frame {
  fill: none;
  stroke: var(--secondary);
  stroke-width: 1.6;
  opacity: .8;
}
.logo__mark rect { fill: var(--secondary); }

/* Gold tile / dark monogram wherever the logo sits on a green field. */
.brand--footer .logo__tile { fill: var(--secondary); }
.brand--footer .logo__frame { stroke: var(--primary-dark); opacity: .5; }
.brand--footer .logo__mark rect { fill: var(--primary-dark); }

.brand__text { display: flex; flex-direction: column; min-width: 0; }

.brand__name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--primary);
  line-height: 1.2;
}

.brand__tagline {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--secondary-dark);
  font-weight: 600;
}

/* Hamburger --------------------------------------------------------------- */

.nav-toggle {
  display: grid;
  place-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  flex: none;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background-color: var(--bg-cream);
}
.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--primary);
  transition: transform var(--t-med), opacity var(--t-fast);
}
.site-header.nav-open .nav-toggle__bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.site-header.nav-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle__bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Navigation panel (mobile / tablet: collapsible dropdown) ----------------- */

.nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow);
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: max-height var(--t-med), visibility var(--t-med);
}
.site-header.nav-open .nav {
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
  visibility: visible;
}

.nav__list { padding: 8px var(--gutter) 0; }

.nav__link {
  display: block;
  width: 100%;
  padding: 13px 4px;
  border-bottom: 1px solid var(--border-light);
  font-family: var(--font-head);
  font-size: .92rem;
  font-weight: 600;
  text-align: left;
  color: var(--text-dark);
}
.nav__link:hover,
.nav__link.is-active { color: var(--primary); }

.nav__cta { margin: 16px var(--gutter) 22px; display: flex; }

/* --- Grouped sub-menus (accordion on mobile) ----------------------------- */

.nav__sub-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.nav__caret {
  font-size: .68rem;
  color: var(--secondary-dark);
  transition: transform var(--t-med);
}
.nav__item.is-open > .nav__sub-toggle .nav__caret { transform: rotate(180deg); }

.nav__dropdown {
  max-height: 0;
  overflow: hidden;
  background-color: var(--bg-cream);
  transition: max-height var(--t-med);
}
.nav__item.is-open > .nav__dropdown { max-height: 320px; }

.nav__sublink {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 10px 12px 16px;
  border-bottom: 1px solid var(--border-light);
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-muted);
}
.nav__sublink i { width: 18px; text-align: center; color: var(--secondary-dark); font-size: .88rem; }
.nav__sublink:hover,
.nav__sublink.is-active { color: var(--primary); }


/* ==========================================================================
   06. SECTION 2 — HERO
   ========================================================================== */

.hero {
  position: relative;
  overflow: hidden;
  background-color: var(--primary);
  color: rgba(248, 246, 240, .86);
  padding: 60px 0 66px;
}

/* Decorative gold geometry */
.hero__deco { position: absolute; opacity: .16; pointer-events: none; }
.hero__deco--rings {
  width: 340px;
  right: -110px;
  top: -80px;
}
.hero__deco--lines {
  width: 90px;
  left: -30px;
  bottom: -20px;
  opacity: .12;
}

.hero__inner { position: relative; z-index: 1; display: grid; gap: 40px; }

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--secondary);
}

.hero__title {
  font-size: 2rem;
  line-height: 1.2;
  color: var(--bg-cream);
  margin-bottom: 18px;
}

.hero__subtitle {
  font-size: 1rem;
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(248, 246, 240, .82);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(200, 155, 60, .35);
  font-size: .88rem;
  color: rgba(248, 246, 240, .8);
}
.hero__badges i { color: var(--secondary); margin-right: 8px; }

/* Hero visual: framed portfolio image with floating labels */
.hero__figure {
  position: relative;
  margin: 0 auto;
  padding: 14px;
  width: 100%;
  max-width: 480px;
  background-color: var(--bg-white);
  border: 1px solid rgba(200, 155, 60, .5);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.hero__figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  /* Portrait source framed from the top: 5:7 keeps all six category panels
     whole and trims only the logistics strip beneath them. */
  aspect-ratio: 5 / 7;
  object-fit: cover;
  object-position: center top;
}

/* --- Floating labels ----------------------------------------------------- */

.hero-label {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--secondary);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 26px rgba(21, 56, 42, .22);
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .01em;
  white-space: nowrap;
  color: var(--primary);
  animation: heroFloat 5.5s ease-in-out infinite;
}
.hero-label i { color: var(--secondary-dark); font-size: .8rem; }

/* Mobile: tucked inside the frame so nothing can overflow the gutter. */
.hero-label--a {
  top: 16px;
  left: 10px;
  background-color: var(--secondary);
  border-color: var(--secondary);
  border-left-color: var(--primary-dark);
  color: var(--primary-dark);
}
.hero-label--a i { color: var(--primary-dark); }

.hero-label--b { top: 53%; right: 10px; animation-delay: -1.8s; }
.hero-label--c { bottom: 16px; left: 10px; animation-delay: -3.6s; }

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}


/* ==========================================================================
   07. SECTION 3 — ABOUT & STATISTICS
   ========================================================================== */

.about__grid { display: grid; gap: 36px; }

.about__media {
  margin: 0 0 8px;
  padding: 12px;
  background-color: var(--bg-cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
}
.about__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}

.about__points { margin: 22px 0 28px; }
.about__points li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--text-muted);
}
.about__points i {
  position: absolute;
  left: 0;
  top: 6px;
  font-size: .78rem;
  color: var(--secondary-dark);
}

.stats {
  display: grid;
  grid-template-columns: 1fr;    /* two-up from 480px — see responsive section */
  gap: 16px;
  align-content: start;
}

/* Icon column in front of the figure and its label. */
.stat-card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  align-items: center;
  padding: 22px 20px;
  text-align: left;
  background-color: var(--bg-cream);
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--secondary);
  border-radius: var(--radius);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.stat-card__icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  font-size: 1.25rem;
  color: var(--secondary);
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 50%;
}

.stat-card__value {
  grid-column: 2;
  grid-row: 1;
  margin: 0 0 2px;
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
  color: var(--primary);
}
.stat-card__suffix { color: var(--secondary); }

.stat-card__label {
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
  margin: 0;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  overflow-wrap: anywhere;      /* long labels must never widen the card */
  color: var(--text-light);
}


/* ==========================================================================
   08. SECTION 4 — PRODUCT CATEGORIES
   ========================================================================== */

/* Two-column grid: icon in front, heading beside it, copy spanning below. */
.product-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  align-items: center;
  align-content: start;
  padding: 26px;
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.product-card::after {          /* gold rule that grows on hover */
  content: "";
  position: absolute;
  left: 26px;
  bottom: 0;
  width: 0;
  height: 3px;
  background-color: var(--secondary);
  border-radius: 3px 3px 0 0;
  transition: width var(--t-med);
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--secondary);
  box-shadow: var(--shadow-lg);
}
.product-card:hover::after { width: calc(100% - 52px); }

.product-card__icon {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  background-color: var(--primary);
  color: var(--secondary);
  border-radius: var(--radius);
  font-size: 1.3rem;
  transition: background-color var(--t-med), color var(--t-med);
}
.product-card:hover .product-card__icon {
  background-color: var(--secondary);
  color: var(--primary-dark);
}

.product-card__title {
  grid-column: 2;
  grid-row: 1;
  font-size: 1.18rem;
  color: var(--primary);
  margin: 0;
}

.product-card__desc {
  grid-column: 1 / -1;
  font-size: .94rem;
  margin: 18px 0 16px;
}

.product-card__tags {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product-card__tags li {
  padding: 5px 11px;
  background-color: var(--bg-cream);
  border: 1px solid var(--border-light);
  border-radius: 40px;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--text-light);
}

.products__note {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: 32px;
  padding: 22px 24px;
  background-color: var(--bg-white);
  border: 1px dashed var(--secondary);
  border-radius: var(--radius);
}
.products__note p { margin: 0; font-size: .94rem; }
.products__note i { color: var(--secondary-dark); margin-right: 8px; }


/* ==========================================================================
   09. SECTION 5 — WHY CHOOSE US
   ========================================================================== */

.usp-card {
  display: flex;
  gap: 18px;
  padding: 26px 24px;
  background-color: var(--bg-cream);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius);
  transition: border-left-color var(--t-med), transform var(--t-med), box-shadow var(--t-med);
}
.usp-card:hover {
  border-left-color: var(--secondary);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.usp-card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: none;
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  color: var(--secondary-dark);
  font-size: 1.15rem;
  transition: background-color var(--t-med), color var(--t-med), border-color var(--t-med);
}
.usp-card:hover .usp-card__icon {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--secondary);
}

.usp-card__title {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--primary);
}
.usp-card p { font-size: .92rem; margin: 0; }


/* ==========================================================================
   10. SECTION 6 — INFRASTRUCTURE
   ========================================================================== */

.infra__grid { display: grid; gap: 40px; align-items: start; }

.infra__intro {
  font-size: 1.02rem;
  padding-left: 18px;
  border-left: 3px solid var(--secondary);
  margin-bottom: 28px;
}

.infra__item { display: flex; gap: 18px; margin-bottom: 26px; }
.infra__item:last-child { margin-bottom: 0; }

.infra__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex: none;
  background-color: var(--primary);
  color: var(--secondary);
  border-radius: var(--radius);
  font-size: 1.2rem;
}

.infra__item h3 {
  font-size: 1.08rem;
  margin-bottom: 6px;
  color: var(--primary);
}
.infra__item p { font-size: .94rem; margin: 0; }

.infra__visual {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.infra-illustration { width: 100%; height: auto; border-radius: var(--radius-sm); display: block; }

.infra__facts {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}
.infra__facts li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
}
.infra__facts i { color: var(--secondary-dark); width: 20px; text-align: center; }


/* ==========================================================================
   11. SECTION 7 — GLOBAL REACH
   ========================================================================== */

.global__grid { display: grid; gap: 40px; align-items: start; }

.global__visual { text-align: center; }
.globe {
  display: block;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  border-radius: var(--radius);
  border: 1px solid rgba(200, 155, 60, .45);
}

.global__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(200, 155, 60, .3);
}
.global__meta div { display: flex; flex-direction: column; gap: 4px; }
.global__meta span:last-child {
  font-size: .74rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(248, 246, 240, .7);
}
.global__meta-num {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}

.global__block { margin-bottom: 30px; }

.global__block-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--bg-cream);
}
.global__block-title i { color: var(--secondary); }

.global__block-desc {
  font-size: .9rem;
  color: rgba(248, 246, 240, .7);
  margin-bottom: 16px;
}

.chip-list { display: flex; flex-wrap: wrap; gap: 10px; }
.chip-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background-color: var(--primary-dark);
  border: 1px solid rgba(200, 155, 60, .35);
  border-radius: 40px;
  font-size: .84rem;
  font-weight: 500;
  color: var(--bg-cream);
  transition: background-color var(--t-fast), border-color var(--t-fast);
}
.chip-list li:hover { background-color: var(--primary-soft); border-color: var(--secondary); }
.chip-list i { color: var(--secondary); font-size: .78rem; }

.global__modes {
  display: grid;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(200, 155, 60, .3);
}
.global__modes li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--bg-cream);
}
.global__modes i { color: var(--secondary); width: 22px; text-align: center; }


/* ==========================================================================
   12. SECTION 8 — TESTIMONIALS CAROUSEL
   ========================================================================== */

.carousel__viewport { overflow: hidden; padding: 4px; }

.carousel__track {
  display: flex;
  transition: transform .5s ease;
}

.carousel__slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.testimonial {
  height: 100%;
  position: relative;
  padding: 30px 26px 26px;
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.testimonial__quote {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 2rem;
  color: var(--secondary);
  opacity: .28;
}

.testimonial__stars { color: var(--secondary); margin-bottom: 14px; letter-spacing: 2px; }

.testimonial__text {
  font-size: .96rem;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
}

.testimonial__avatar {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: none;
  background-color: var(--primary);
  color: var(--secondary);
  border-radius: 50%;
  font-family: var(--font-head);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.testimonial__name {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .96rem;
  color: var(--primary);
}
.testimonial__biz { margin: 0; font-size: .82rem; color: var(--text-light); }

.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
}

.carousel__arrow {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: none;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  background-color: var(--bg-white);
  color: var(--primary);
  transition: background-color var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.carousel__arrow:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--secondary);
}

.carousel__dots { display: flex; align-items: center; gap: 10px; }

.carousel__dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border-radius: 50%;
  background-color: var(--border-light);
  border: 1px solid var(--border-light);
  transition: background-color var(--t-fast), width var(--t-fast), border-color var(--t-fast);
}
.carousel__dot.is-active {
  width: 30px;
  border-radius: 40px;
  background-color: var(--secondary);
  border-color: var(--secondary);
}


/* ==========================================================================
   13. SECTION 9 — BLOG / INSIGHTS
   ========================================================================== */

.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--secondary);
  box-shadow: var(--shadow-lg);
}

.blog-card__media {
  position: relative;
  background-color: var(--bg-cream);
  border-bottom: 1px solid var(--border-light);
}
.blog-card__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.blog-card__tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 6px 13px;
  background-color: var(--secondary);
  color: var(--primary-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.blog-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }

.blog-card__meta {
  margin-bottom: 10px;
  font-size: .78rem;
  letter-spacing: .04em;
  color: var(--mauve);          /* muted accent */
}
.blog-card__meta i { color: var(--secondary-dark); margin-right: 6px; }

.blog-card__title {
  font-size: 1.12rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.blog-card__excerpt { font-size: .92rem; margin-bottom: 18px; }
.blog-card .link-more { margin-top: auto; align-self: flex-start; }


/* ==========================================================================
   14. SECTION 10 — VALUES / CSR
   ========================================================================== */

/* Icon in front of the value name, description spanning beneath. */
.value-card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  align-items: center;
  align-content: start;
  padding: 26px 24px;
  text-align: left;
  background-color: var(--bg-cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary);
  box-shadow: var(--shadow);
}

.value-card__icon {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  background-color: var(--bg-white);
  border: 2px solid var(--secondary);
  border-radius: 50%;
  color: var(--primary);
  font-size: 1.25rem;
  transition: background-color var(--t-med), color var(--t-med);
}
.value-card:hover .value-card__icon {
  background-color: var(--primary);
  color: var(--secondary);
}

.value-card__title {
  grid-column: 2;
  grid-row: 1;
  font-size: 1.02rem;
  margin: 0;
  color: var(--primary);
}
.value-card p {
  grid-column: 1 / -1;
  font-size: .9rem;
  margin: 16px 0 0;
}


/* ==========================================================================
   15. SECTION 11 — CONTACT & INQUIRY FORM
   ========================================================================== */

.contact__grid { display: grid; gap: 32px; align-items: start; }

.contact__form-wrap,
.contact__info {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}

.contact__sub {
  font-size: 1.15rem;
  color: var(--primary);
  padding-bottom: 14px;
  margin-bottom: 22px;
  border-bottom: 2px solid var(--secondary);
  display: inline-block;
}

/* Form fields ------------------------------------------------------------- */

.field { margin-bottom: 18px; }
.field-row { display: grid; gap: 0; }

.field label {
  display: block;
  margin-bottom: 7px;
  font-family: var(--font-head);
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--text-dark);
}
.req { color: var(--error); }

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  background-color: var(--bg-cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: .94rem;
  color: var(--text-dark);
  transition: border-color var(--t-fast), background-color var(--t-fast), box-shadow var(--t-fast);
}
.field textarea { min-height: 130px; resize: vertical; line-height: 1.6; }

.field input::placeholder,
.field textarea::placeholder { color: #9A9A94; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background-color: var(--bg-white);
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(200, 155, 60, .22);
}

/* Custom gold caret for the select (keeps the control inside the palette) */
.field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23C89B3C' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
  cursor: pointer;
}

/* Neutralise the browser's default autofill tint */
.field input:-webkit-autofill,
.field textarea:-webkit-autofill,
.field select:-webkit-autofill {
  -webkit-text-fill-color: var(--text-dark);
  box-shadow: 0 0 0 1000px var(--bg-cream) inset;
}

/* Validation states */
.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--error);
  background-color: var(--bg-white);
}
.field.is-valid input,
.field.is-valid select,
.field.is-valid textarea { border-color: var(--sage); }

.field__error {
  margin: 6px 0 0;
  font-size: .8rem;
  font-weight: 500;
  color: var(--error);
  min-height: 0;
  display: none;
}
.field.has-error .field__error { display: block; }

.form-status {
  margin: 16px 0 0;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.is-success {
  background-color: var(--sage-light);
  border: 1px solid var(--sage);
  color: var(--success);
}
.form-status.is-error {
  background-color: #F7E9E9;
  border: 1px solid var(--error);
  color: var(--error);
}

.form-note {
  margin-top: 14px;
  font-size: .8rem;
  color: var(--text-light);
}
.form-note i { color: var(--secondary-dark); margin-right: 6px; }

/* Contact details --------------------------------------------------------- */

.contact__list { margin-bottom: 0; }
.contact__list li {
  display: flex;
  gap: 16px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border-light);
}
.contact__list li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.contact__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: none;
  background-color: var(--bg-cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--secondary-dark);
  font-size: 1rem;
}

.contact__label {
  margin: 0 0 2px;
  font-family: var(--font-head);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
}
.contact__list li > div { min-width: 0; }

/* Long email addresses must be able to break on very narrow phones. */
.contact__value,
.footer__contact li { overflow-wrap: anywhere; }

.contact__value { margin: 0; font-size: .94rem; color: var(--text-dark); }
.contact__value a { color: var(--primary); font-weight: 500; }
.contact__value a:hover { color: var(--secondary-dark); }


/* ==========================================================================
   16. SECTION 12 — FOOTER
   ========================================================================== */

.site-footer {
  background-color: var(--primary);
  color: rgba(248, 246, 240, .74);
  font-size: .92rem;
}

.footer__grid {
  display: grid;
  gap: 36px;
  padding-top: 56px;
  padding-bottom: 44px;
}

.brand--footer { margin-bottom: 18px; }
.brand--footer .brand__name { color: var(--bg-cream); }
.brand--footer .brand__tagline { color: var(--secondary); }

.footer__about { font-size: .9rem; margin-bottom: 22px; max-width: 420px; }

.footer__title {
  position: relative;
  margin-bottom: 22px;
  padding-bottom: 12px;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--bg-cream);
}
.footer__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  background-color: var(--secondary);
}

.footer__links li { margin-bottom: 10px; }
.footer__links a {
  color: rgba(248, 246, 240, .74);
  font-size: .9rem;
  display: inline-block;
  padding: 3px 0;
}
.footer__links a:hover { color: var(--secondary); padding-left: 6px; transition: padding-left var(--t-fast), color var(--t-fast); }

.footer__contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: .9rem;
  line-height: 1.6;
}
.footer__contact i { color: var(--secondary); margin-top: 5px; width: 16px; flex: none; }
.footer__contact a { color: rgba(248, 246, 240, .74); }
.footer__contact a:hover { color: var(--secondary); }

.footer__bar {
  background-color: var(--primary-dark);
  border-top: 1px solid rgba(200, 155, 60, .25);
}
.footer__bar-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
.footer__bar p { margin: 0; font-size: .84rem; color: rgba(248, 246, 240, .68); }
.footer__legal { letter-spacing: .04em; }


/* ==========================================================================
   17. BACK-TO-TOP BUTTON
   ========================================================================== */

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background-color: var(--secondary);
  color: var(--primary-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity var(--t-med), visibility var(--t-med),
              transform var(--t-med), background-color var(--t-fast);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background-color: var(--secondary-light); }


/* ==========================================================================
   18. SCROLL-REVEAL ANIMATIONS
   ========================================================================== */

[data-animate] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
[data-animate].is-visible { opacity: 1; transform: none; }

/* Staggered children inside a revealed grid */
[data-stagger] > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
[data-stagger].is-visible > * { opacity: 1; transform: none; }
[data-stagger].is-visible > *:nth-child(1) { transition-delay: .05s; }
[data-stagger].is-visible > *:nth-child(2) { transition-delay: .13s; }
[data-stagger].is-visible > *:nth-child(3) { transition-delay: .21s; }
[data-stagger].is-visible > *:nth-child(4) { transition-delay: .29s; }
[data-stagger].is-visible > *:nth-child(5) { transition-delay: .37s; }
[data-stagger].is-visible > *:nth-child(6) { transition-delay: .45s; }


/* ==========================================================================
   19. RESPONSIVE — LARGE PHONE (480px and up) / TABLET (768px and up)
   ========================================================================== */

@media (min-width: 480px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  :root { --section-y: 84px; --gutter: 32px; }

  .section-title { font-size: 2.1rem; }
  .hero { padding: 84px 0 90px; }
  .hero__title { font-size: 2.7rem; }
  .hero__subtitle { font-size: 1.08rem; }
  .hero__deco--rings { width: 460px; right: -140px; top: -110px; }
  .hero__deco--lines { width: 120px; left: -20px; }

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

  /* Two across at every size: each card is now a wide icon + text row. */
  .stat-card__value { font-size: 2rem; }

  .products__note {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .field-row { grid-template-columns: 1fr 1fr; gap: 18px; }

  .carousel__slide { flex-basis: 50%; }

  .contact__grid { grid-template-columns: 1fr; }
  .contact__form-wrap,
  .contact__info { padding: 34px 32px; }

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

  .footer__bar-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .back-to-top { right: 28px; bottom: 28px; width: 52px; height: 52px; }
}


/* ==========================================================================
   20. RESPONSIVE — DESKTOP
   ========================================================================== */

@media (min-width: 1024px) {
  :root { --section-y: 100px; }

  .topbar { display: block; }

  .section-title { font-size: 2.35rem; }
  .section-head { margin-bottom: 52px; }

  .hero { padding: 96px 0 104px; }
  .hero__title { font-size: 3.1rem; }
  .hero__inner { grid-template-columns: 1fr .92fr; align-items: center; gap: 56px; }

  /* Desktop: labels straddle the frame edge so they read as floating over
     the artwork rather than sitting on top of a panel heading. */
  .hero-label { font-size: .76rem; padding: 10px 16px; }
  .hero-label--a { top: 26px; left: -30px; }
  .hero-label--b { top: 53%; right: -30px; }
  .hero-label--c { bottom: 30px; left: -30px; }

  .about__grid { grid-template-columns: .95fr 1.05fr; gap: 56px; align-items: center; }
  .stats { grid-template-columns: repeat(4, 1fr); gap: 20px; }

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

  .infra__grid { grid-template-columns: 1fr 1fr; gap: 56px; }
  .global__grid { grid-template-columns: .8fr 1.2fr; gap: 56px; }
  .global__visual { position: sticky; top: 120px; }

  .carousel__slide { flex-basis: 33.3333%; }

  .contact__grid { grid-template-columns: 1.15fr .85fr; gap: 32px; }

  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; }
}

/* Full horizontal navigation from 1024px up — six top-level items fit
   comfortably now that Company and Insights are grouped. */
@media (min-width: 1024px) {
  .nav-toggle { display: none; }

  .brand { flex: none; }        /* never shrinks once there is room for the row */

  .nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 22px;
    max-height: none;
    overflow: visible;
    visibility: visible;
    box-shadow: none;
    border-bottom: none;
    background-color: transparent;
  }

  .nav__list {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 2px;
    padding: 0;
  }

  .nav__item { position: relative; }

  .nav__link {
    position: relative;
    width: auto;
    padding: 10px 14px;
    border-bottom: none;
    font-size: .88rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    white-space: nowrap;
    color: var(--text-dark);
  }
  .nav__link::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 2px;
    height: 2px;
    background-color: var(--secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-med);
  }

  /* --- Floating sub-menus ------------------------------------------------ */

  .nav__sub-toggle { gap: 8px; justify-content: flex-start; }
  .nav__item.is-open > .nav__sub-toggle .nav__caret { transform: none; }
  .nav__item:hover > .nav__sub-toggle .nav__caret,
  .nav__item:focus-within > .nav__sub-toggle .nav__caret { transform: rotate(180deg); }

  /* Invisible bridge so the pointer can travel from link to panel. */
  .has-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 18px;
  }

  .nav__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 30;
    min-width: 230px;
    margin-top: 16px;
    padding: 8px;
    max-height: none;
    overflow: visible;
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-top: 3px solid var(--secondary);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity var(--t-med), transform var(--t-med), visibility var(--t-med);
  }
  .nav__item:hover > .nav__dropdown,
  .nav__item:focus-within > .nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav__sublink {
    padding: 11px 14px;
    border-bottom: none;
    border-radius: var(--radius-sm);
    white-space: nowrap;
  }
  .nav__sublink:hover,
  .nav__sublink.is-active {
    background-color: var(--bg-cream);
    color: var(--primary);
  }
  .nav__link:hover::after,
  .nav__link.is-active::after { transform: scaleX(1); }
  .nav__link.is-active { color: var(--primary); }

  .nav__cta {
    margin: 0;
    flex: none;
    padding: 10px 16px;
    font-size: .82rem;
    white-space: nowrap;
  }

  .navbar__inner { min-height: 78px; }
  .brand__name { font-size: 1rem; }
  .brand__tagline { font-size: .62rem; letter-spacing: .08em; }
}

/* Small laptops / landscape tablets: same row, marginally tighter. */
@media (min-width: 1024px) and (max-width: 1199px) {
  .nav { gap: 14px; }
  .nav__link { font-size: .82rem; padding: 10px 10px; }
  .nav__link::after { left: 10px; right: 10px; }
  .nav__cta { padding: 10px 14px; font-size: .78rem; }
  .brand__mark { width: 42px; height: 42px; }
  .brand__name { font-size: .92rem; }
  .brand__tagline { font-size: .58rem; letter-spacing: .06em; }
}

/* Roomy on true desktops. */
@media (min-width: 1440px) {
  .nav { gap: 26px; }
  .nav__list { gap: 6px; }
  .nav__link { padding: 10px 16px; font-size: .9rem; }
  .nav__link::after { left: 16px; right: 16px; }
}


/* ==========================================================================
   21. REDUCED MOTION & PRINT
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  [data-animate],
  [data-stagger] > * { opacity: 1 !important; transform: none !important; }

  .btn:hover,
  .product-card:hover,
  .blog-card:hover,
  .value-card:hover,
  .usp-card:hover,
  .stat-card:hover { transform: none; }
}

@media print {
  .site-header,
  .back-to-top,
  .carousel__controls,
  .hero__deco { display: none !important; }

  body { color: #000; background: #fff; }
  [data-animate],
  [data-stagger] > * { opacity: 1 !important; transform: none !important; }
  .section { padding: 24px 0; page-break-inside: avoid; }
}
