/* ==========================================================================
   ARPAN EXPORTS — MAIN STYLESHEET
   Layout & interaction patterns inspired by the Garlon theme, rebuilt with
   the Arpan Exports brand system (Brand Guidelines, section 3 & 4).

   CONTENTS
   01. Brand tokens & base
   02. Header, sticky header & mobile menu
   03. Footer & footer call-to-action
   04. Home sections
   05. Inner pages (page header, about, products, contact, gallery, legal)
   ========================================================================== */
/* ---------- Font fallbacks ----------
   Google Fonts load without blocking the first paint. Until they arrive, Arial is resized to the
   measured proportions of Montserrat and Inter, so text does not reflow when the brand fonts swap in. */
@font-face { font-family: "Montserrat Fallback"; src: local("Arial Bold"), local("Arial-BoldMT"); font-weight: 800; size-adjust: 112.35%; ascent-override: 86.34%; descent-override: 22.25%; line-gap-override: 0%; }
@font-face { font-family: "Montserrat Fallback"; src: local("Arial Bold"), local("Arial-BoldMT"); font-weight: 600 700; size-adjust: 110.14%; ascent-override: 88.07%; descent-override: 22.7%; line-gap-override: 0%; }
/* Large uppercase titles: capitals are narrower relative to Arial Bold than mixed-case text */
@font-face { font-family: "Montserrat Caps Fallback"; src: local("Arial Bold"), local("Arial-BoldMT"); font-weight: 800; size-adjust: 105.83%; ascent-override: 91.66%; descent-override: 23.62%; line-gap-override: 0%; }
@font-face { font-family: "Montserrat Caps Fallback"; src: local("Arial Bold"), local("Arial-BoldMT"); font-weight: 600 700; size-adjust: 104.61%; ascent-override: 92.73%; descent-override: 23.9%; line-gap-override: 0%; }
@font-face { font-family: "Inter Fallback"; src: local("Arial"), local("ArialMT"); font-weight: 400 500; size-adjust: 107.13%; ascent-override: 90.54%; descent-override: 22.4%; line-gap-override: 0%; }
@font-face { font-family: "Inter Fallback"; src: local("Arial Bold"), local("Arial-BoldMT"); font-weight: 600 700; size-adjust: 101.71%; ascent-override: 95.37%; descent-override: 23.6%; line-gap-override: 0%; }
/* ---------- 01. Brand tokens ---------- */
:root {
  /* Brand palette — do not add other colours */
  --arpan-green: #285430;   /* primary: buttons, active states, strong CTAs */
  --leaf-green: #5f8d4e;    /* secondary: hover states, accents on light backgrounds */
  --light-green: #a4be7b;   /* light accent: accents on dark backgrounds, soft highlights */
  --warm-beige: #e5d9b6;    /* warm neutral: background panels and premium surfaces */
  --deep-shade: #1f4226;    /* darker shade of the primary, used only for hover depth */
  --white: #ffffff;
  --silver: #d9d9d9;
  --charcoal: #222222;

  /* Tints derived from Charcoal / Silver */
  --text: #555555;
  --text-light: #6e6e6e;
  --text-muted: #8a8a8a;   /* large decorative text only (3:1 contrast on white) */
  --light-bg: #f4f4f4;
  --border: #e6e6e6;
  --dark-2: #1a1a1a;
  --on-dark: rgba(255, 255, 255, 0.78);
  --on-dark-muted: rgba(255, 255, 255, 0.58);
  --line-dark: rgba(255, 255, 255, 0.15);

  /* Typography (max two families) */
  --font-heading: "Montserrat", "Montserrat Fallback", Arial, Helvetica, sans-serif;
  --font-body: "Inter", "Inter Fallback", Arial, Helvetica, sans-serif;
  --font-heading-caps: "Montserrat", "Montserrat Caps Fallback", Arial, Helvetica, sans-serif;

  /* Layout */
  --container: 1200px;
  --section-space: 120px;
  --radius-sm: 10px;
  --radius: 20px;
  --radius-lg: 30px;
  --radius-pill: 90px;
  --shadow: 0 10px 40px rgba(34, 34, 34, 0.08);
  --shadow-lg: 0 25px 60px rgba(34, 34, 34, 0.16);
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  /* Header: the master logo sits on a solid Arpan Red plate at the 180 px minimum digital width,
     with clear space equal to the height of the "A" in ARPAN (17.9% of the logo width). */
  --header-bar: 110px;
  --topbar-h: 44px;
  --logo-w: 180px;
  --logo-pad: 32px;
  --header-offset: calc(var(--topbar-h) + var(--logo-w) * 0.789 + var(--logo-pad) * 2);
}
@media (max-width: 1199px) {
:root { --header-bar: 100px; }
}
@media (max-width: 767px) {
:root { --section-space: 80px; --header-bar: 84px; --topbar-h: 0px; }
}
/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
}
h1, h2, h3 { text-wrap: balance; }
p, ul, ol, figure, blockquote, dl, dd { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
a:hover { color: var(--arpan-green); }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
::selection { background: var(--arpan-green); color: var(--white); }
:focus-visible {
  outline: 2px solid var(--leaf-green);
  outline-offset: 3px;
}
.container {
  width: 100%;
  max-width: calc(var(--container) + 30px);
  margin: 0 auto;
  padding: 0 15px;
}
.section-space { padding: var(--section-space) 0; }
.bg-light { background-color: var(--light-bg); }
.text-center { text-align: center; }
.red-stop { color: var(--arpan-green); }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: -100px; left: 16px;
  z-index: 10000;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  background: var(--charcoal);
  color: var(--white);
  font-weight: 600;
}
.skip-link:focus { top: 16px; color: var(--white); }
.icon { width: 1em; height: 1em; flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.icon--fill { fill: currentColor; stroke: none; }
/* ---------- Buttons (Garlon-style pill with swoosh corner) ---------- */
/* White "orbit" corner — echoes the swoosh in the logo */
/* ---------- Section title ---------- */
.sec-title { margin-bottom: 50px; }
.sec-title.text-center { max-width: 760px; margin-left: auto; margin-right: auto; }
.sec-title__title {
  font-size: clamp(28px, 1.6vw + 20px, 44px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.sec-title__text { margin-top: 18px; font-size: 17px; }
.sec-title--light .sec-title__title { color: var(--white); }
.sec-title--light .sec-title__text { color: var(--on-dark); }
@keyframes planeBob {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(3px, -3px); }
  50% { transform: translate(0, -5px); }
  75% { transform: translate(-3px, -3px); }
}
/* ---------- Scroll reveal & split text ---------- */
[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  transition-delay: var(--delay, 0ms);
}
[data-reveal="left"] { transform: translate3d(-50px, 0, 0); }
[data-reveal="right"] { transform: translate3d(50px, 0, 0); }
[data-reveal="zoom"] { transform: scale(0.92); }
[data-reveal].is-visible { opacity: 1; transform: none; }
.split-word {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 0.6em, 0) rotateX(-40deg);
  transform-origin: 0 100%;
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.is-split.is-visible .split-word { opacity: 1; transform: none; }
.no-js [data-reveal], .no-js .split-word { opacity: 1; transform: none; }
/* ---------- Back to top (vertical, with scroll progress) ---------- */
.scroll-to-top {
  position: fixed;
  right: -14px;
  bottom: 60px;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 35px;
  color: var(--charcoal);
  opacity: 0;
  visibility: hidden;
  transform: rotate(-90deg);
  transition: all 0.4s var(--ease);
}
.scroll-to-top.is-shown { opacity: 1; visibility: visible; bottom: 90px; }
.scroll-to-top__text { font-family: var(--font-heading); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.scroll-to-top__wrapper { position: relative; width: 34px; height: 4px; overflow: hidden; background: var(--silver); }
.scroll-to-top__inner { position: absolute; inset: 0 auto 0 0; width: 0; background: var(--arpan-green); }
.scroll-to-top:hover { color: var(--arpan-green); }
/* Phones: a compact round button instead of the vertical label, so it never covers content */
@media (max-width: 767px) {
.scroll-to-top { right: 14px; bottom: 18px; justify-content: center; width: 46px; height: 46px; border-radius: 50%; background: var(--arpan-green); color: var(--white); box-shadow: var(--shadow-lg); transform: none; }
.scroll-to-top.is-shown { bottom: 18px; }
.scroll-to-top::before { content: ""; width: 11px; height: 11px; margin-top: 5px; border-top: 2.5px solid currentColor; border-left: 2.5px solid currentColor; transform: rotate(45deg); }
.scroll-to-top__text, .scroll-to-top__wrapper { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.scroll-to-top:hover { background: var(--leaf-green); color: var(--white); }
}
/* ---------- Social links ---------- */
@media (prefers-reduced-motion: reduce) {
html { scroll-behavior: auto; }
*, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; transition-delay: 0ms !important; }
[data-reveal], .split-word { opacity: 1 !important; transform: none !important; }
}
/* ---------- 02. Header ---------- */
/* Sticky state */
/* The sticky bar is exactly as tall as the compact logo plate, so the plate never covers content */
/* Compact sticky state (below the 180 px guideline minimum): replace with the client's approved
   simplified / horizontal web logo when it is supplied — see README, "Logo". */
@keyframes stickySlide { from { transform: translateY(-100%); } to { transform: none; } }
/* ---------- Mobile menu (off-canvas drawer) ---------- */
/* ---------- 03. Footer call-to-action bar ---------- */
.footer-cta {
  position: relative;
  z-index: 2;
  margin-bottom: -76px;
}
.footer-cta__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 38px 50px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--arpan-green);
  color: var(--white);
  box-shadow: 0 30px 60px -30px rgba(40, 84, 48, 0.72);
}
.footer-cta__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1.2px, transparent 1.2px);
  background-size: 18px 18px;
  -webkit-mask: linear-gradient(90deg, transparent 30%, #000 100%);
  mask: linear-gradient(90deg, transparent 30%, #000 100%);
  pointer-events: none;
}
.footer-cta__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 76px; height: 76px;
  padding-right: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
  box-sizing: content-box;
}
.footer-cta__icon .icon { width: 60px; height: 60px; stroke-width: 1.3; }
.footer-cta__content { position: relative; flex: 1; }
.footer-cta__title { color: var(--white); font-size: clamp(20px, 1vw + 14px, 26px); font-weight: 800; }
.footer-cta__text { margin-top: 6px; color: rgba(255, 255, 255, 0.88); font-size: 15px; line-height: 1.6; }
@media (max-width: 991px) {
.footer-cta__inner { flex-direction: column; align-items: flex-start; gap: 20px; padding: 34px 28px; }
.footer-cta__icon { width: 56px; height: 56px; padding: 0; border: 0; }
.footer-cta__icon .icon { width: 50px; height: 50px; }
}
/* ---------- Footer ---------- */
@keyframes floatY { 50% { transform: translateY(-14px); } }
/* ---------- 04. Home — hero slider ---------- */
.main-slider {
  position: relative;
  overflow: hidden;
  background: var(--dark-2);
  color: var(--white);
}
.main-slider__track { display: grid; }
.main-slider__slide {
  position: relative;
  grid-area: 1 / 1;
  display: flex;
  align-items: center;
  min-height: min(100svh, 960px);
  padding: calc(var(--header-offset) + 60px) 0 230px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s var(--ease), visibility 1.2s;
}
.main-slider__slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
.main-slider__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  transition: transform 7s linear;
}
.main-slider__slide.is-active .main-slider__bg { transform: scale(1); }
.main-slider__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(26, 26, 26, 0.94) 0%, rgba(26, 26, 26, 0.72) 45%, rgba(26, 26, 26, 0.25) 100%),
    linear-gradient(0deg, rgba(26, 26, 26, 0.55) 0%, transparent 40%);
}
.main-slider__content { position: relative; max-width: 780px; }
.main-slider__content > * {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.main-slider__slide.is-active .main-slider__content > * { opacity: 1; transform: none; }
.main-slider__slide.is-active .main-slider__content > :nth-child(2) { transition-delay: 0.15s; }
.main-slider__slide.is-active .main-slider__content > :nth-child(3) { transition-delay: 0.3s; }
.main-slider__slide.is-active .main-slider__content > :nth-child(4) { transition-delay: 0.45s; }
.main-slider__title {
  font-family: var(--font-heading-caps);
  color: var(--white);
  font-size: clamp(38px, 3.8vw + 14px, 78px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.main-slider__title > span { display: block; }
.main-slider__title .is-silver { color: var(--silver); }
.main-slider__text {
  max-width: 600px;
  margin-top: 22px;
  color: var(--on-dark);
  font-size: 18px;
  line-height: 1.7;
}
.main-slider__btns { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 40px; }
.main-slider__route {
  position: absolute;
  right: 5%; top: 50%;
  z-index: 1;
  width: min(520px, 36vw);
  transform: translateY(-40%);
  pointer-events: none;
}
.main-slider__shape {
  position: absolute;
  right: 0; bottom: 0;
  z-index: 2;
  pointer-events: none;
}
.main-slider__shape--one { width: 42%; height: 250px; background: var(--leaf-green); clip-path: polygon(100% 0, 100% 100%, 0 100%); }
.main-slider__shape--two { width: 28%; height: 330px; background: var(--arpan-green); clip-path: polygon(100% 0, 100% 100%, 22% 100%); opacity: 0.92; }
.main-slider__nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 64px; height: 64px;
  padding: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  transform: translateY(-50%);
  transition: background-color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.main-slider__nav:hover { background: var(--arpan-green); border-color: var(--arpan-green); }
.main-slider__nav .icon { width: 24px; height: 24px; stroke-width: 2; }
.main-slider__nav--prev { left: 30px; }
.main-slider__nav--next { right: 30px; }
.main-slider__dots {
  position: absolute;
  left: 50%; bottom: 150px;
  z-index: 5;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}
.main-slider__dot {
  width: 14px; height: 6px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.4);
  transition: width 0.5s var(--ease), background-color 0.5s var(--ease);
}
.main-slider__dot.is-active { width: 42px; background: var(--light-green); }
@keyframes spin { to { transform: rotate(360deg); } }
@media (max-width: 1399px) {
.main-slider__nav { top: auto; bottom: 140px; transform: none; }
.main-slider__nav--prev { left: auto; right: 104px; }
}
@media (max-width: 991px) {
.main-slider__route { display: none; }
.main-slider__shape--one { width: 60%; height: 150px; }
.main-slider__shape--two { width: 42%; height: 200px; }
}
@media (max-width: 767px) {
.main-slider__slide { padding: calc(var(--header-offset) + 36px) 0 220px; min-height: 0; }
.main-slider__text { font-size: 16px; }
.main-slider__nav { width: 52px; height: 52px; bottom: 130px; }
.main-slider__nav--next { right: 15px; }
.main-slider__nav--prev { right: 77px; }
.main-slider__dots { left: 15px; bottom: 150px; transform: none; }
}
/* ---------- Home — feature cards overlapping the hero ---------- */
/* ---------- Home — about ---------- */
.about-one { position: relative; overflow: hidden; }
.about-one__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}
.about-one__media { position: relative; padding: 0 70px 100px 0; }
.about-one__img-one {
  width: 100%;
  aspect-ratio: 4 / 4.3;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-one__img-two {
  position: absolute;
  right: 0; bottom: 0;
  width: 56%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 10px solid var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-one__badge {
  position: absolute;
  top: 36%; right: 8px;
  display: grid;
  place-items: center;
  width: 150px; height: 150px;
  border: 6px solid var(--white);
  border-radius: 50%;
  background: var(--arpan-green);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.about-one__badge-ring {
  position: absolute;
  inset: 6px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  animation: spin 18s linear infinite;
}
.about-one__badge-ring text { fill: var(--white); font-family: var(--font-heading); font-size: 6.9px; font-weight: 700; letter-spacing: 1.05px; text-transform: uppercase; }
.about-one__badge-center { position: relative; display: grid; justify-items: center; line-height: 1; }
.about-one__badge-center strong { font-family: var(--font-heading); font-size: 34px; font-weight: 800; }
.about-one__badge-center span { margin-top: 4px; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.about-one__text p + p { margin-top: 14px; }
.check-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 24px; margin: 28px 0 34px; padding-top: 28px; border-top: 1px solid var(--border); }
.check-list li { display: flex; align-items: center; gap: 12px; color: var(--charcoal); font-weight: 600; font-size: 15px; }
.check-list .icon {
  width: 26px; height: 26px;
  padding: 6px;
  border-radius: 50%;
  background: rgba(40, 84, 48, 0.1);
  color: var(--arpan-green);
  stroke-width: 2.6;
}
.about-one__bottom { display: flex; flex-wrap: wrap; align-items: center; gap: 24px 36px; }
.call-box { display: flex; align-items: center; gap: 14px; }
.call-box__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--white);
}
.call-box__icon::before {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid var(--arpan-green);
  border-radius: 50%;
  animation: ripple 2.2s ease-out infinite;
}
.call-box__icon .icon { width: 22px; height: 22px; }
.call-box small { display: block; color: var(--text-light); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; line-height: 1.3; }
.call-box a { color: var(--charcoal); font-family: var(--font-heading); font-size: 19px; font-weight: 800; }
.call-box a:hover { color: var(--arpan-green); }
@keyframes ripple { from { transform: scale(0.85); opacity: 1; } to { transform: scale(1.35); opacity: 0; } }
@media (max-width: 991px) {
.about-one__grid { grid-template-columns: 1fr; gap: 50px; }
.about-one__media { max-width: 600px; }
}
@media (max-width: 575px) {
.about-one__media { padding: 0 30px 70px 0; }
.about-one__badge { width: 116px; height: 116px; right: 0; top: 30%; }
.about-one__badge-center strong { font-size: 26px; }
.check-list { grid-template-columns: 1fr; }
}
/* ---------- Home — products carousel (service cards) ---------- */
/* ---------- Home — why choose ---------- */
.why-choose { position: relative; overflow: hidden; }
.why-choose__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.why-choose__content { padding: var(--section-space) 0; }
.why-choose__content > p { font-size: 16px; }
.highlight-card {
  position: relative;
  display: flex;
  margin: 30px 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--light-bg);
}
.highlight-card::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 46px; height: 46px;
  background: var(--arpan-green);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.highlight-card__img { width: 170px; flex-shrink: 0; object-fit: cover; }
.highlight-card__body { padding: 22px 50px 22px 24px; }
.highlight-card__title { font-size: 18px; font-weight: 800; }
.highlight-card__text { margin-top: 6px; font-size: 15px; line-height: 1.65; }
.pillar-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 30px; margin-bottom: 38px; }
.pillar-list li { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; }
.pillar-list .icon {
  width: 44px; height: 44px;
  padding: 10px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--white);
  transition: background-color 0.4s var(--ease);
}
.pillar-list li:hover .icon { background: var(--arpan-green); }
.pillar-list strong { display: block; color: var(--charcoal); font-family: var(--font-heading); font-size: 15px; font-weight: 800; line-height: 1.3; }
.pillar-list span { display: block; margin-top: 3px; font-size: 14px; line-height: 1.55; }
.why-choose__media {
  position: absolute;
  top: 0; bottom: 0; right: 0;
  width: calc(50% - 30px);
}
.why-choose__image { position: absolute; inset: 0 70px 0 0; width: calc(100% - 70px); height: 100%; object-fit: cover; }
.why-choose__chevrons { position: absolute; top: 50%; right: 0; display: grid; gap: 14px; transform: translateY(-50%); }
.why-choose__chevrons span { display: block; width: 140px; height: 110px; background: var(--arpan-green); clip-path: polygon(50% 0, 100% 30%, 100% 100%, 50% 70%, 0 100%, 0 30%); }
.why-choose__chevrons span:nth-child(2) { background: var(--charcoal); }
@media (max-width: 991px) {
.why-choose__grid { grid-template-columns: 1fr; }
.why-choose__content { padding-bottom: 50px; }
.why-choose__media { position: relative; width: 100%; height: 420px; }
.why-choose__image { inset: 0; width: 100%; }
.why-choose__chevrons { display: none; }
}
@media (max-width: 575px) {
.pillar-list { grid-template-columns: 1fr; }
.highlight-card { flex-direction: column; }
.highlight-card__img { width: 100%; height: 180px; }
.why-choose__media { height: 300px; }
}
/* ---------- Home — call-to-action strip ---------- */
.cta-one { position: relative; overflow: hidden; background: var(--charcoal); color: var(--on-dark); }
.cta-one__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.16; filter: grayscale(1); }
.cta-one__shape {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: max(300px, calc((100vw - 1200px) / 2 + 250px));
  background: var(--arpan-green);
  clip-path: polygon(0 0, 100% 0, calc(100% - 90px) 100%, 0 100%);
}
.cta-one__inner { position: relative; display: grid; grid-template-columns: 220px 1fr auto; align-items: center; gap: 40px; min-height: 230px; padding: 40px 15px; }
.cta-one__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--white);
  color: var(--arpan-green);
}
.cta-one__icon::after { content: ""; position: absolute; inset: 9px; border: 1.5px dashed var(--arpan-green); border-radius: 50%; animation: spin 16s linear infinite; }
.cta-one__icon .icon { width: 42px; height: 42px; }
.cta-one__title { color: var(--white); font-size: clamp(22px, 1vw + 16px, 30px); font-weight: 800; line-height: 1.25; }
.cta-one__meta { display: flex; flex-wrap: wrap; gap: 8px 26px; margin-top: 12px; color: var(--white); font-weight: 600; }
.cta-one__meta a { display: inline-flex; align-items: center; gap: 8px; }
.cta-one__meta a:hover { color: var(--silver); }
.cta-one__meta .icon { width: 17px; height: 17px; color: var(--leaf-green); }
.cta-one__text { margin-top: 10px; max-width: 620px; }
.cta-one__btns { display: flex; flex-wrap: wrap; gap: 14px; }
@media (max-width: 991px) {
.cta-one__shape { width: 100%; height: 150px; bottom: auto; clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%); }
.cta-one__inner { grid-template-columns: 1fr; gap: 26px; padding: 30px 15px 60px; }
.cta-one__icon { width: 96px; height: 96px; }
}
/* ---------- Home — highlights band (verified catalogue facts) ---------- */
.funfact { position: relative; overflow: hidden; background: var(--arpan-green); color: var(--white); }
.funfact__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.12; mix-blend-mode: luminosity; }
.funfact__grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); padding: 58px 0; }
.funfact__item { display: flex; align-items: center; justify-content: center; gap: 18px; padding: 8px 20px; border-right: 1px solid rgba(255, 255, 255, 0.3); }
.funfact__item:last-child { border-right: 0; }
.funfact__icon { width: 54px; height: 54px; stroke-width: 1.2; }
.funfact__count { display: block; color: var(--white); font-family: var(--font-heading); font-size: 38px; font-weight: 800; line-height: 1; }
.funfact__label { display: block; margin-top: 6px; color: rgba(255, 255, 255, 0.9); font-size: 14px; line-height: 1.35; }
@media (max-width: 991px) {
.funfact__grid { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
.funfact__item:nth-child(2) { border-right: 0; }
.funfact__item { justify-content: flex-start; }
}
@media (max-width: 575px) {
.funfact__grid { grid-template-columns: 1fr; }
.funfact__item { border-right: 0; }
}
/* ---------- Filter tabs + showcase grid ---------- */
.showcase__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px 40px; margin-bottom: 46px; }
.showcase__head .sec-title { margin-bottom: 0; }
.filter-tabs { display: flex; flex-wrap: wrap; gap: 4px; }
.filter-tabs__btn {
  padding: 12px 22px;
  border: 0;
  background: var(--light-bg);
  color: var(--charcoal);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}
.filter-tabs__btn:first-child { border-radius: 10px 0 0 10px; }
.filter-tabs__btn:last-child { border-radius: 0 10px 10px 0; }
.filter-tabs__btn:hover { background: var(--silver); }
.filter-tabs__btn.is-active { background: var(--arpan-green); color: var(--white); }
.showcase__grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 260px; grid-auto-flow: dense; gap: 24px; }
.showcase__item { position: relative; overflow: hidden; border-radius: 16px; background: var(--charcoal); }
.showcase__item.is-wide { grid-column: span 2; }
.showcase__item.is-tall { grid-row: span 2; }
.showcase__item.is-hidden { display: none; }
.showcase__item.is-entering { animation: zoomIn 0.6s var(--ease) both; }
.showcase__link { display: block; width: 100%; height: 100%; color: var(--white); cursor: zoom-in; }
.showcase__link img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.showcase__link::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 45%, rgba(26, 26, 26, 0.85) 100%); opacity: 0.6; transition: opacity 0.5s var(--ease); }
.showcase__caption { position: absolute; left: 22px; right: 22px; bottom: 20px; z-index: 2; transform: translateY(10px); transition: transform 0.5s var(--ease); }
.showcase__cat { display: inline-block; margin-bottom: 8px; padding: 3px 12px; border-radius: 30px; background: var(--arpan-green); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.showcase__title { display: block; color: var(--white); font-family: var(--font-heading); font-size: 18px; font-weight: 800; line-height: 1.3; }
.showcase__zoom { position: absolute; top: 18px; right: 18px; z-index: 2; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--white); color: var(--arpan-green); opacity: 0; transform: scale(0.6); transition: all 0.5s var(--ease); }
.showcase__zoom .icon { width: 18px; height: 18px; stroke-width: 2.2; }
.showcase__link:hover img, .showcase__link:focus-visible img { transform: scale(1.08); }
.showcase__link:hover::before, .showcase__link:focus-visible::before { opacity: 1; }
.showcase__link:hover .showcase__caption, .showcase__link:focus-visible .showcase__caption { transform: none; }
.showcase__link:hover .showcase__zoom, .showcase__link:focus-visible .showcase__zoom { opacity: 1; transform: none; }
@keyframes zoomIn { from { opacity: 0; transform: scale(0.92); } to { opacity: 1; transform: none; } }
@media (max-width: 991px) {
.showcase__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
}
@media (max-width: 575px) {
.showcase__grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
.showcase__item.is-wide, .showcase__item.is-tall { grid-column: auto; grid-row: auto; }
.filter-tabs__btn { padding: 10px 14px; font-size: 12px; border-radius: 8px !important; }
}
/* ---------- Lightbox ---------- */
.lightbox { width: 100vw; max-width: 100vw; height: 100vh; max-height: 100vh; margin: 0; padding: 0; border: 0; background: transparent; color: var(--white); }
.lightbox::backdrop { background: rgba(20, 20, 20, 0.94); }
.lightbox[open] { display: grid; place-items: center; animation: fadeIn 0.3s var(--ease); }
.lightbox__figure { display: grid; justify-items: center; gap: 14px; max-width: min(1200px, 88vw); }
.lightbox__img { max-height: calc(100vh - 170px); width: auto; border-radius: 10px; object-fit: contain; }
.lightbox__caption { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 16px; font-size: 15px; text-align: center; }
.lightbox__counter { color: var(--on-dark-muted); }
.lightbox__btn { position: absolute; display: grid; place-items: center; width: 54px; height: 54px; padding: 0; border: 1px solid var(--line-dark); border-radius: 50%; background: rgba(34, 34, 34, 0.7); color: var(--white); transition: background-color 0.3s var(--ease); }
.lightbox__btn:hover { background: var(--arpan-green); border-color: var(--arpan-green); }
.lightbox__btn .icon { width: 22px; height: 22px; stroke-width: 2.2; }
.lightbox__btn--prev { left: 3vw; top: 50%; transform: translateY(-50%); }
.lightbox__btn--next { right: 3vw; top: 50%; transform: translateY(-50%); }
.lightbox__btn--close { top: 20px; right: 3vw; }
@keyframes fadeIn { from { opacity: 0; } }
@media (max-width: 575px) {
.lightbox__btn--prev, .lightbox__btn--next { top: auto; bottom: 20px; transform: none; }
}
/* ---------- Home — heritage (dark rounded panel) ---------- */
.heritage__box {
  position: relative;
  display: grid;
  grid-template-columns: 400px 1fr;
  align-items: center;
  gap: 70px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 90px;
  overflow: hidden;
  border-radius: 240px 0 0 240px;
  background: var(--charcoal);
  color: var(--on-dark);
}
.heritage__image { position: relative; width: 400px; height: 400px; }
.heritage__image::before { content: ""; position: absolute; inset: -16px; border: 2px dashed var(--arpan-green); border-radius: 50%; animation: spin 40s linear infinite; }
.heritage__image img { width: 100%; height: 100%; object-fit: cover; border: 10px solid var(--arpan-green); border-radius: 50%; }
.heritage__content { position: relative; }
.heritage__content .sec-title { margin-bottom: 26px; }
.heritage__content p + p { margin-top: 14px; }
.heritage__place { display: flex; align-items: center; gap: 10px; margin: 24px 0 32px; color: var(--silver); font-family: var(--font-heading); font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.heritage__place .icon { width: 18px; height: 18px; color: var(--leaf-green); }
@media (max-width: 1199px) {
.heritage__box { grid-template-columns: 300px 1fr; padding: 70px 50px; gap: 50px; }
.heritage__image { width: 300px; height: 300px; }
}
@media (max-width: 991px) {
.heritage { padding-left: 15px; padding-right: 15px; }
.heritage__box { grid-template-columns: 1fr; border-radius: var(--radius-lg); padding: 60px 30px; }
.heritage__image { width: 260px; height: 260px; margin: 16px auto 0; }
}
/* ---------- Marquee (product names) ---------- */
.marquee { overflow: hidden; padding: 46px 0; border-bottom: 1px solid var(--border); }
.marquee__track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__list { display: flex; align-items: center; }
.marquee__item { display: flex; align-items: center; gap: 34px; padding-right: 34px; color: var(--text-muted); font-family: var(--font-heading); font-size: clamp(28px, 2vw + 16px, 46px); font-weight: 800; text-transform: uppercase; white-space: nowrap; transition: color 0.4s var(--ease); }
.marquee__item:hover { color: var(--arpan-green); }
.marquee__item .icon { width: 34px; height: 34px; color: var(--arpan-green); }
@keyframes marquee { to { transform: translateX(-50%); } }
/* ---------- Trade process cards ---------- */
/* ---------- Red band (buyer requirements / vision & mission) ---------- */
.cta-two { position: relative; overflow: hidden; background: var(--arpan-green); color: var(--white); }
.cta-two__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.14; mix-blend-mode: luminosity; }
.cta-two::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 90% at 50% 50%, rgba(95, 141, 78, 0.62), transparent 75%); }
.cta-two__inner { position: relative; max-width: 840px; margin: 0 auto; text-align: center; }
.cta-two__icon { position: relative; display: grid; place-items: center; width: 96px; height: 96px; margin: 0 auto 26px; border: 2px solid rgba(255, 255, 255, 0.55); border-radius: 50%; }
.cta-two__icon::before, .cta-two__icon::after { content: ""; position: absolute; inset: -2px; border: 1px solid rgba(255, 255, 255, 0.5); border-radius: 50%; animation: ripple 2.6s ease-out infinite; }
.cta-two__icon::after { animation-delay: 1.3s; }
.cta-two__icon .icon { width: 38px; height: 38px; }
.cta-two__tagline { color: var(--silver); font-family: var(--font-heading); font-size: 14px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; }
.cta-two__title { margin-top: 12px; color: var(--white); font-size: clamp(28px, 2vw + 16px, 46px); font-weight: 800; }
.cta-two__text { margin-top: 16px; color: rgba(255, 255, 255, 0.9); font-size: 17px; }
.cta-two__list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; margin: 24px 0 34px; }
.cta-two__list li { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; }
.cta-two__list .icon { width: 18px; height: 18px; stroke-width: 2.6; }
.cta-two__btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
/* ---------- Inquiry form split section ---------- */
.contact-one { position: relative; overflow: hidden; border-bottom: 1px solid var(--border); }
.contact-one__grid { display: grid; grid-template-columns: 1fr 1fr; }
.contact-one__content { position: relative; padding: 100px 70px 110px max(15px, calc((100vw - 1200px) / 2 + 15px)); }
.contact-one__content .sec-title { margin-bottom: 20px; }
.contact-one__intro { margin-bottom: 30px; }
.contact-one__media { position: relative; min-height: 560px; background: var(--charcoal); }
.contact-one__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.form-one__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-one__field { display: flex; flex-direction: column; min-width: 0; }
.form-one__field--full { grid-column: 1 / -1; }
.form-one__label { margin: 0 0 6px 22px; color: var(--charcoal); font-size: 13px; font-weight: 600; }
.form-one__label span { color: var(--arpan-green); }
.form-one__control {
  width: 100%;
  height: 56px;
  padding: 0 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--charcoal);
  font-size: 15px;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  appearance: none;
}
.form-one__control::placeholder { color: var(--text-muted); }
.form-one__control:focus { outline: none; border-color: var(--charcoal); box-shadow: 0 0 0 4px rgba(34, 34, 34, 0.08); }
select.form-one__control { padding-right: 48px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23222222' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 20px center; background-size: 18px; cursor: pointer; }
textarea.form-one__control { height: 150px; padding: 18px 24px; border-radius: var(--radius); resize: vertical; }
.form-one__field.is-invalid .form-one__control { border-color: var(--arpan-green); box-shadow: 0 0 0 4px rgba(40, 84, 48, 0.08); }
.form-one__error { margin: 6px 0 0 22px; color: var(--arpan-green); font-size: 13px; font-weight: 500; }
.form-one__trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-one__footer { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px; margin-top: 24px; }
.form-one__required { color: var(--text-light); font-size: 13px; }
.form-status { display: none; grid-template-columns: 24px 1fr; gap: 12px; margin-bottom: 22px; padding: 16px 20px; border-radius: var(--radius-sm); font-size: 15px; line-height: 1.6; }
.form-status.is-shown { display: grid; }
.form-status .icon { width: 22px; height: 22px; margin-top: 1px; }
.form-status--error { border-left: 4px solid var(--arpan-green); background: rgba(40, 84, 48, 0.06); color: var(--charcoal); }
.form-status--error .icon { color: var(--arpan-green); }
.form-status--success { border-left: 4px solid var(--charcoal); background: var(--light-bg); color: var(--charcoal); }
.form-status--success .icon { color: var(--charcoal); }
.form-status a { font-weight: 700; text-decoration: underline; }
@media (max-width: 991px) {
.contact-one__grid { grid-template-columns: 1fr; }
.contact-one__content { padding: 80px 15px; max-width: 790px; }
.contact-one__media { min-height: 380px; }
}
@media (max-width: 575px) {
.form-one__grid { grid-template-columns: 1fr; }
.contact-one__media { min-height: 280px; }
}
/* ---------- Documentation cards (blog-card layout) ---------- */
/* ---------- 05. Inner pages — page header ---------- */
.page-header {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-offset) + 70px) 0 150px;
  background: var(--dark-2);
  color: var(--white);
}
.page-header--overlap { padding-bottom: 240px; }
.page-header__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(26, 26, 26, 0.94) 0%, rgba(26, 26, 26, 0.72) 50%, rgba(26, 26, 26, 0.38) 100%);
}
.page-header__swoosh { position: absolute; right: 0; bottom: -1px; z-index: 2; width: clamp(200px, 32vw, 470px); height: clamp(90px, 14vw, 210px); pointer-events: none; }
.page-header__inner { position: relative; z-index: 3; }
.page-header__title { max-width: 900px; font-family: var(--font-heading-caps); color: var(--white); font-size: clamp(36px, 3vw + 18px, 66px); font-weight: 800; line-height: 1.08; text-transform: uppercase; }
.page-header__title .is-silver { display: block; color: var(--silver); }
.page-header__text { max-width: 640px; margin-top: 16px; color: var(--on-dark); font-size: 17px; }
.page-header__btns { margin-top: 32px; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 22px; color: var(--on-dark); font-size: 14px; }
.breadcrumb li { display: inline-flex; align-items: center; gap: 10px; }
.breadcrumb li + li::before { content: "/"; color: var(--light-green); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb [aria-current="page"] { color: var(--white); font-weight: 600; }
@media (max-width: 767px) {
.page-header { padding: calc(var(--header-offset) + 40px) 0 110px; }
.page-header--overlap { padding-bottom: 200px; }
}
/* ---------- About page ---------- */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 80px; }
.stat-card { display: flex; align-items: center; gap: 18px; padding: 26px 24px; border: 1px solid var(--border); border-radius: 16px; background: var(--white); transition: box-shadow 0.4s var(--ease), border-color 0.4s var(--ease); }
.stat-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); }
.stat-card__icon { width: 48px; height: 48px; padding-right: 18px; border-right: 1px solid var(--border); box-sizing: content-box; color: var(--arpan-green); stroke-width: 1.3; }
.stat-card__count { display: block; color: var(--charcoal); font-family: var(--font-heading); font-size: 30px; font-weight: 800; line-height: 1; }
.stat-card__label { display: block; margin-top: 6px; font-size: 14px; line-height: 1.35; }
@media (max-width: 991px) {
.stat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
.stat-grid { grid-template-columns: 1fr; }
}
.milestones__track { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; margin-top: 20px; }
.milestones__track::before { content: ""; position: absolute; top: 38px; left: 10%; right: 10%; border-top: 2px dashed rgba(255, 255, 255, 0.25); }
.milestone { position: relative; text-align: center; }
.milestone__node { display: grid; place-items: center; width: 78px; height: 78px; margin: 0 auto 22px; border: 2px solid var(--line-dark); border-radius: 50%; background: var(--charcoal); color: var(--silver); box-shadow: 0 0 0 10px var(--charcoal); transition: all 0.4s var(--ease); }
.milestone:hover .milestone__node { border-color: var(--arpan-green); background: var(--arpan-green); color: var(--white); }
.milestone__node .icon { width: 30px; height: 30px; }
.milestone__title { color: var(--white); font-size: 16px; font-weight: 800; letter-spacing: 0.03em; text-transform: uppercase; }
.milestone__text { margin-top: 8px; font-size: 14px; line-height: 1.65; }
@media (max-width: 991px) {
.milestones__track { grid-template-columns: 1fr; gap: 0; }
.milestones__track::before { top: 40px; bottom: 40px; left: 38px; right: auto; border-top: 0; border-left: 2px dashed rgba(255, 255, 255, 0.25); }
.milestone { display: grid; grid-template-columns: 78px 1fr; gap: 0 22px; padding-bottom: 30px; text-align: left; }
.milestone__node { grid-row: span 2; margin: 0; }
.milestone__title { align-self: end; margin-top: 12px; }
}
.faq-one__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.accordion__item { margin-bottom: 16px; overflow: hidden; border: 1px solid var(--border); border-radius: 16px; background: var(--white); }
.accordion__button { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; padding: 18px 22px; border: 0; background: transparent; color: var(--charcoal); font-family: var(--font-heading); font-size: 16px; font-weight: 700; line-height: 1.4; text-align: left; transition: background-color 0.4s var(--ease), color 0.4s var(--ease); }
.accordion__button .icon { width: 32px; height: 32px; padding: 7px; border-radius: 50%; background: var(--light-bg); color: var(--charcoal); stroke-width: 2.4; transition: transform 0.4s var(--ease), background-color 0.4s var(--ease); }
.accordion__button[aria-expanded="true"] { background: var(--arpan-green); color: var(--white); }
.accordion__button[aria-expanded="true"] .icon { background: var(--white); color: var(--arpan-green); transform: rotate(180deg); }
.accordion__panel { height: 0; overflow: hidden; transition: height 0.45s var(--ease); }
.accordion__panel-inner { padding: 18px 22px 22px; font-size: 15px; line-height: 1.75; }
.accordion__panel-inner p + p, .accordion__panel-inner p + ul { margin-top: 10px; }
.accordion__panel-inner ul { display: grid; gap: 4px; padding-left: 18px; list-style: disc; }
@media (max-width: 991px) {
.faq-one__grid { grid-template-columns: 1fr; }
}
/* ---------- Products page ---------- */
/* Category index: cards overlapping the page header */
/* One section per product; image and content alternate sides */
/* ---------- Contact page ---------- */
.contact-info { position: relative; z-index: 5; margin-top: -150px; }
.contact-info__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.contact-info__card { padding: 30px 26px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-lg); transition: transform 0.5s var(--ease); }
.contact-info__card:hover { transform: translateY(-6px); }
.contact-info__head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.contact-info__icon { display: grid; place-items: center; flex-shrink: 0; width: 54px; height: 54px; border-radius: 50%; background: var(--charcoal); color: var(--white); transition: background-color 0.4s var(--ease); }
.contact-info__card:hover .contact-info__icon { background: var(--arpan-green); }
.contact-info__icon .icon { width: 22px; height: 22px; }
.contact-info__title { padding-bottom: 6px; border-bottom: 2px dashed var(--arpan-green); font-size: 15px; font-weight: 800; letter-spacing: 0.03em; text-transform: uppercase; }
.contact-info__card a { color: var(--charcoal); font-weight: 600; overflow-wrap: anywhere; }
.contact-info__card a:hover { color: var(--arpan-green); }
.contact-info__card address { font-size: 14px; font-style: normal; line-height: 1.7; }
@media (max-width: 1199px) {
.contact-info__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
.contact-info__grid { grid-template-columns: 1fr; }
}
/* ---------- Gallery (unpublished preview) ---------- */
.preview-notice { background: var(--charcoal); border-bottom: 3px solid var(--arpan-green); color: var(--white); font-size: 14px; }
.preview-notice .container { display: flex; align-items: center; gap: 10px; padding-top: 12px; padding-bottom: 12px; }
.preview-notice .icon { width: 18px; height: 18px; }
.preview-notice code { padding: 1px 6px; border-radius: 4px; background: rgba(255, 255, 255, 0.14); }
.gallery-page .showcase__grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 230px; }
@media (max-width: 991px) {
.gallery-page .showcase__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
.gallery-page .showcase__grid { grid-template-columns: 1fr; }
}
/* ---------- Legal placeholders & 404 ---------- */
.error-page { position: relative; display: flex; align-items: center; min-height: 100svh; padding: calc(var(--header-offset) + 40px) 0 80px; overflow: hidden; background: var(--dark-2); color: var(--on-dark); }
.error-page::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(26, 26, 26, 0.94), rgba(26, 26, 26, 0.55)); }
.error-page .container { position: relative; z-index: 2; }
.error-page__code { color: transparent; font-family: var(--font-heading); font-size: clamp(110px, 16vw, 220px); font-weight: 800; line-height: 0.9; -webkit-text-stroke: 2px rgba(255, 255, 255, 0.45); }
.error-page__title { margin-top: 10px; font-family: var(--font-heading-caps); color: var(--white); font-size: clamp(30px, 2vw + 18px, 50px); font-weight: 800; text-transform: uppercase; }
.error-page__text { max-width: 520px; margin: 14px 0 34px; font-size: 17px; }
.error-page__btns { display: flex; flex-wrap: wrap; gap: 15px; }
/* ---------- JavaScript-driven states ---------- */
.js .accordion__item:not(.is-open) .accordion__panel { visibility: hidden; transition: height 0.45s var(--ease), visibility 0s linear 0.45s; }
.js .accordion__item.is-open .accordion__panel { visibility: visible; transition: height 0.45s var(--ease), visibility 0s; }
.no-js .accordion__panel { height: auto; }
.no-js .accordion__button .icon { display: none; }
.no-js .main-slider__slide:first-child { opacity: 1; visibility: visible; }
.no-js .main-slider__slide:first-child .main-slider__content > * { opacity: 1; transform: none; }
.no-js .carousel__controls, .no-js .main-slider__nav { display: none; }
.form-status:focus { outline: none; }
/* Decorative route line draws itself in */
.route-draw { stroke-dasharray: 1; stroke-dashoffset: 1; animation: routeDraw 2.8s var(--ease) 0.5s forwards; }
@keyframes routeDraw { to { stroke-dashoffset: 0; } }
.about-one__badge-center span { letter-spacing: 0.1em; }
/* Page-level adjustments */
.heritage__box--wide { display: block; border-radius: 60px; padding: 90px 60px; }
.heritage__box--wide .sec-title { position: relative; }
.contact-info + .contact-one { margin-top: 100px; border-top: 1px solid var(--border); }
/* Heritage panel bleeds to the right edge (Garlon testimonial panel) */
@media (min-width: 992px) {
.heritage__box:not(.heritage__box--wide) { max-width: none; margin-left: max(15px, calc((100% - 1400px) / 2)); margin-right: 0; }
}
/* Keep the rotating badge text clear of the centre label on phones */
@media (max-width: 575px) {
.about-one__badge { width: 132px; height: 132px; }
.about-one__badge-center strong { font-size: 24px; }
.about-one__badge-center span { font-size: 7.5px; }
}
.faq-one .accordion { margin-top: 30px; }
.faq-one__intro p + p { margin-top: 12px; }
@media (max-width: 991px) {
/* Side-slide reveals become fade-up on small screens (prevents sideways wobble) */
[data-reveal="left"], [data-reveal="right"] { transform: translate3d(0, 40px, 0); }
.heritage__box--wide { padding: 60px 26px; border-radius: var(--radius-lg); }
}
@media print {
.main-header, .mobile-nav, .scroll-to-top, .footer-cta, .main-slider__nav, .carousel__controls { display: none !important; }
[data-reveal], .split-word { opacity: 1 !important; transform: none !important; }
}

/* ==========================================================================
   STAGE 3 DESIGN SYSTEM — header, buttons, product catalogue & product pages
   (appended last so these rules define the current look)
   ========================================================================== */

:root {
  --topbar-h: 40px;
  --header-bar: 104px;
  --header-offset: calc(var(--topbar-h) + var(--header-bar));
  --radius-btn: 6px;
  --radius-card: 14px;
}
@media (max-width: 1199px) { :root { --header-bar: 92px; } }
@media (max-width: 767px) { :root { --topbar-h: 0px; --header-bar: 78px; } }

html { scroll-padding-top: 104px; }

/* ---------- Buttons: one system — primary (.btn), secondary (.btn--dark), outline, light, text link ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 26px;
  border: 1.5px solid var(--arpan-green);
  border-radius: var(--radius-btn);
  background: var(--arpan-green);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.btn:hover { border-color: var(--deep-shade); background: var(--deep-shade); color: var(--white); }
.btn:focus-visible { outline: 2px solid var(--leaf-green); outline-offset: 3px; }
.btn .icon { width: 16px; height: 16px; stroke-width: 2; transition: transform 0.25s ease; }
.btn:hover .icon:last-child:not(:first-child) { transform: translateX(3px); }
.btn:hover .icon:first-child:not(:last-child) { transform: translateX(-3px); }
.btn--sm { min-height: 42px; padding: 0 18px; font-size: 12.5px; }
.btn--block { width: 100%; }
.btn--dark { border-color: var(--charcoal); background: var(--charcoal); }
.btn--dark:hover { border-color: var(--arpan-green); background: var(--arpan-green); }
.btn--outline { border-color: var(--silver); background: transparent; color: var(--charcoal); }
.btn--outline .icon { color: var(--arpan-green); }
.btn--outline:hover { border-color: var(--charcoal); background: var(--charcoal); color: var(--white); }
.btn--outline:hover .icon { color: var(--white); }
.btn--outline-light { border-color: rgba(255, 255, 255, 0.55); background: transparent; color: var(--white); }
.btn--outline-light:hover { border-color: var(--white); background: var(--white); color: var(--charcoal); }
.btn--white { border-color: var(--white); background: var(--white); color: var(--charcoal); }
.btn--white .icon { color: var(--arpan-green); }
.btn--white:hover { border-color: var(--charcoal); background: var(--charcoal); color: var(--white); }
.btn--white:hover .icon { color: var(--white); }
.btn--link { min-height: 0; padding: 0; border: 0; background: none; color: var(--arpan-green); }
.btn--link:hover { background: none; color: var(--leaf-green); }
.btn[aria-busy="true"] { opacity: 0.8; pointer-events: none; }

/* Icon buttons share the same radius */
.main-slider__nav, .lightbox__btn, .carousel__arrow, .carousel__toggle { border-radius: var(--radius-btn); }
.main-slider__nav { width: 52px; height: 52px; }

/* ---------- Eyebrow labels (no decorative icons) ---------- */
.sec-title__tagline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--arpan-green);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.sec-title__tagline::before { content: ""; flex-shrink: 0; width: 28px; height: 2px; background: currentColor; }
.sec-title.text-center .sec-title__tagline::after { content: ""; flex-shrink: 0; width: 28px; height: 2px; background: currentColor; }
.sec-title--light .sec-title__tagline, .page-header .sec-title__tagline { color: var(--silver); }
.sec-title--light .sec-title__tagline::before, .sec-title--light .sec-title__tagline::after, .page-header .sec-title__tagline::before { background: var(--light-green); }
.main-slider__tagline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  color: var(--silver);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.main-slider__tagline::before { content: ""; flex-shrink: 0; width: 40px; height: 2px; background: var(--light-green); }
.section-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: end; gap: 20px 60px; margin-bottom: 46px; }
.section-head .sec-title { margin-bottom: 0; }
.section-head__side { display: grid; justify-items: start; gap: 18px; }
.section-head__side .sec-title__text { margin-top: 0; }

/* ---------- Header ---------- */
.main-header { position: absolute; top: 0; right: 0; left: 0; z-index: 100; }
.topbar { position: relative; border-bottom: 1px solid rgba(255, 255, 255, 0.08); background: rgba(17, 17, 17, 0.78); color: var(--silver); font-size: 13px; line-height: 1.4; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: var(--topbar-h); }
.topbar__text { color: var(--silver); font-family: var(--font-heading); font-size: 11.5px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; }
.topbar__info { display: flex; align-items: center; gap: 26px; }
.topbar__info a { display: inline-flex; align-items: center; gap: 8px; color: var(--white); }
.topbar__info a:hover { color: var(--silver); }
.topbar__info .icon { width: 14px; height: 14px; color: var(--light-green); }
.main-header__bar { border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.main-header__inner { display: flex; align-items: center; gap: 36px; height: var(--header-bar); }
.main-header__logo { display: block; flex-shrink: 0; line-height: 0; }
.main-header__logo img { width: 164px; height: auto; transition: width 0.35s var(--ease); }
.main-menu { margin-left: auto; }
.main-menu__list { display: flex; align-items: center; gap: 34px; }
.main-menu__list a { position: relative; display: block; padding: 10px 0; color: var(--white); font-family: var(--font-heading); font-size: 13.5px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; }
.main-menu__list a::after { content: ""; position: absolute; right: 0; bottom: 2px; left: 0; height: 2px; background: var(--light-green); transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease); }
.main-menu__list a:hover { color: var(--white); }
.main-menu__list a:hover::after, .main-menu__list a[aria-current="page"]::after { transform: scaleX(1); }
.main-header__right { display: flex; align-items: center; gap: 14px; }
.mobile-nav__toggler { display: none; place-items: center; width: 46px; height: 46px; padding: 0; border: 1px solid rgba(255, 255, 255, 0.35); border-radius: var(--radius-btn); background: transparent; color: var(--white); transition: background-color 0.25s ease, border-color 0.25s ease; }
.mobile-nav__toggler:hover { border-color: var(--arpan-green); background: var(--arpan-green); }
.mobile-nav__toggler .icon { width: 22px; height: 22px; stroke-width: 2; }

/* Sticky header: compact solid bar with the logo at a readable size */
.main-header__bar.is-sticky { position: fixed; top: 0; right: 0; left: 0; z-index: 100; border-bottom: 0; background: rgba(28, 28, 28, 0.97); box-shadow: 0 12px 30px -12px rgba(0, 0, 0, 0.45); animation: headerIn 0.45s var(--ease) both; transition: translate 0.4s var(--ease); }
.main-header__bar.is-sticky::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 2px; background: linear-gradient(90deg, var(--light-green), var(--leaf-green) 45%, var(--light-green)); }
.main-header__bar.is-sticky .main-header__inner { height: 80px; }
.main-header__bar.is-sticky .main-header__logo img { width: 132px; }
.main-header__bar.is-sticky.is-tucked { translate: 0 -100%; }
@supports (backdrop-filter: blur(1px)) {
  .topbar { backdrop-filter: blur(8px); }
  .main-header__bar.is-sticky { background: rgba(28, 28, 28, 0.9); backdrop-filter: blur(12px); }
}
@keyframes headerIn { from { transform: translateY(-100%); } to { transform: none; } }

@media (max-width: 1199px) {
  .main-header__inner { gap: 24px; }
  .main-menu__list { gap: 24px; }
  .main-menu__list a { font-size: 12.5px; letter-spacing: 0.07em; }
  .main-header__logo img { width: 150px; }
  .main-header__bar.is-sticky .main-header__logo img { width: 124px; }
}
/* Full navigation down to 992px; hamburger menu below */
@media (max-width: 991px) {
  .main-menu, .main-header__btn { display: none; }
  .mobile-nav__toggler { display: grid; }
  .main-header__right { margin-left: auto; }
}
@media (max-width: 991px) {
  .topbar__text { display: none; }
  .topbar__inner { justify-content: center; }
}
@media (max-width: 767px) {
  .topbar { display: none; }
  .main-header__logo img { width: 120px; }
  .main-header__bar.is-sticky .main-header__inner { height: 66px; }
  .main-header__bar.is-sticky .main-header__logo img { width: 100px; }
  .main-slider__tagline { gap: 10px; font-size: 12px; }
  .main-slider__tagline::before { width: 26px; }
  .main-slider__nav { width: 46px; height: 46px; }
}

/* ---------- Mobile menu ---------- */
.mobile-nav { position: fixed; inset: 0; z-index: 1000; visibility: hidden; transition: visibility 0.45s; }
.mobile-nav.is-open { visibility: visible; }
.mobile-nav__overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.6); opacity: 0; transition: opacity 0.45s var(--ease); }
.mobile-nav.is-open .mobile-nav__overlay { opacity: 1; }
.mobile-nav__content { position: relative; display: flex; flex-direction: column; gap: 24px; width: min(360px, 88vw); height: 100%; padding: 20px 24px 32px; overflow-y: auto; background: var(--dark-2); color: var(--on-dark); transform: translateX(-100%); transition: transform 0.45s var(--ease); }
.mobile-nav.is-open .mobile-nav__content { transform: none; }
.mobile-nav__top { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 18px; border-bottom: 1px solid var(--line-dark); }
.mobile-nav__logo { line-height: 0; }
.mobile-nav__logo img { width: 148px; height: auto; }
.mobile-nav__close { display: grid; place-items: center; width: 42px; height: 42px; padding: 0; border: 1px solid var(--line-dark); border-radius: var(--radius-btn); background: transparent; color: var(--white); }
.mobile-nav__close:hover { border-color: var(--arpan-green); background: var(--arpan-green); }
.mobile-nav__close .icon { width: 20px; height: 20px; stroke-width: 2; }
.mobile-nav__list a { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--line-dark); color: var(--white); font-family: var(--font-heading); font-size: 14px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.mobile-nav__list a .icon { width: 18px; height: 18px; color: var(--silver); stroke-width: 2; }
.mobile-nav__list a[aria-current="page"], .mobile-nav__list a:hover { color: var(--light-green); }
.mobile-nav__list a[aria-current="page"] .icon { color: var(--light-green); }
.mobile-nav__contact { display: grid; gap: 12px; font-size: 14.5px; }
.mobile-nav__contact li { display: flex; align-items: center; gap: 12px; }
.mobile-nav__contact .icon { width: 18px; height: 18px; color: var(--light-green); }
.mobile-nav__contact a { color: var(--white); overflow-wrap: anywhere; }

/* ---------- Social links ---------- */
.social-links { display: flex; flex-wrap: wrap; gap: 8px; }
.social-links a { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--line-dark); border-radius: var(--radius-btn); color: var(--white); transition: background-color 0.25s ease, border-color 0.25s ease; }
.social-links a:hover { border-color: var(--arpan-green); background: var(--arpan-green); color: var(--white); }
.social-links .icon { width: 17px; height: 17px; }

/* ---------- Home: key points (heritage → quality → global → trade) ---------- */
.keypoints { position: relative; z-index: 6; margin-top: -96px; }
.keypoints__panel { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); overflow: hidden; border-radius: var(--radius-card); background: var(--white); box-shadow: 0 30px 70px -30px rgba(34, 34, 34, 0.35); }
.keypoints__panel::before { content: ""; position: absolute; top: 0; right: 0; left: 0; z-index: 1; height: 3px; background: linear-gradient(90deg, var(--light-green), var(--arpan-green) 50%, var(--light-green)); }
.keypoint { position: relative; padding: 38px 30px 34px; }
.keypoint + .keypoint { border-left: 1px solid var(--border); }
.keypoint__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.keypoint__icon { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 12px; background: var(--light-bg); color: var(--arpan-green); transition: background-color 0.3s ease, color 0.3s ease; }
.keypoint__icon .icon { width: 26px; height: 26px; stroke-width: 1.6; }
.keypoint:hover .keypoint__icon { background: var(--arpan-green); color: var(--white); }
.keypoint__num { color: var(--text-light); font-family: var(--font-heading); font-size: 13px; font-weight: 800; letter-spacing: 0.14em; }
.keypoint__title { font-size: 16px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; }
.keypoint__text { margin-top: 8px; font-size: 14.5px; line-height: 1.65; }
.keypoint__next { position: absolute; top: 52px; right: -13px; z-index: 2; display: grid; place-items: center; width: 26px; height: 26px; border: 1px solid var(--border); border-radius: 50%; background: var(--white); color: var(--arpan-green); }
.keypoint__next .icon { width: 14px; height: 14px; stroke-width: 2.4; }
@media (max-width: 991px) {
  .keypoints__panel { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .keypoint:nth-child(3) { border-left: 0; }
  .keypoint:nth-child(n + 3) { border-top: 1px solid var(--border); }
  .keypoint__next { display: none; }
}
@media (max-width: 575px) {
  .keypoints { margin-top: -70px; }
  .keypoints__panel { grid-template-columns: minmax(0, 1fr); }
  .keypoint { display: grid; grid-template-columns: 54px minmax(0, 1fr); column-gap: 18px; padding: 24px 22px; }
  .keypoint + .keypoint { border-top: 1px solid var(--border); border-left: 0; }
  .keypoint__top { grid-row: span 2; flex-direction: column; align-items: flex-start; gap: 8px; margin: 0; }
  .keypoint__text { margin-top: 4px; }
}

/* ---------- Product cards (identical on Home and Products) ---------- */
.product-group + .product-group { margin-top: 56px; }
.product-group__head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 18px; margin-bottom: 22px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.product-group__title { font-size: 20px; font-weight: 800; }
.product-group__text { flex: 1 1 320px; color: var(--text-light); font-size: 14.5px; line-height: 1.6; }
.product-group__count { color: var(--arpan-green); font-family: var(--font-heading); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.product-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 20px; }
.product-grid > li { min-width: 0; }
.product-card { position: relative; display: flex; flex-direction: column; height: 100%; overflow: hidden; border: 1px solid var(--border); border-radius: 12px; background: var(--white); transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease; }
.product-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.product-card:has(.product-card__cta:focus-visible) { outline: 2px solid var(--leaf-green); outline-offset: 3px; }
.product-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--light-bg); }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.product-card:hover .product-card__media img { transform: scale(1.05); }
.product-card__num { position: absolute; top: 12px; left: 12px; padding: 4px 9px; border-radius: 4px; background: rgba(34, 34, 34, 0.85); color: var(--white); font-family: var(--font-heading); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; }
.product-card__body { display: flex; flex: 1; flex-direction: column; padding: 18px 18px 16px; }
.product-card__title { font-size: 17px; font-weight: 800; line-height: 1.3; }
.product-card__text { margin-top: 8px; color: var(--text); font-size: 13.5px; line-height: 1.6; }
.product-card__text { margin-bottom: 14px; }
.product-card__fact { margin-top: auto; padding-top: 12px; border-top: 1px dashed var(--border); color: var(--charcoal); font-size: 13.5px; font-weight: 600; line-height: 1.4; }
.product-card__fact span { display: block; margin-bottom: 2px; color: var(--text-light); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.product-card__cta { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 14px; color: var(--arpan-green); font-family: var(--font-heading); font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.product-card__cta::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.product-card__cta:hover { color: var(--leaf-green); }
.product-card__cta:focus-visible { outline: none; }
.product-card__cta .icon { width: 15px; height: 15px; stroke-width: 2.2; transition: transform 0.25s ease; }
.product-card:hover .product-card__cta .icon { transform: translateX(3px); }
@media (max-width: 1199px) { .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 767px) {
  .section-head { grid-template-columns: minmax(0, 1fr); margin-bottom: 34px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .product-card__body { padding: 14px 14px 12px; }
  .product-card__title { font-size: 15.5px; }
  .product-card__text { font-size: 13px; }
}

/* ---------- Carousels ---------- */
.carousel { position: relative; }
.carousel__track { display: flex; gap: 24px; overflow-x: auto; overscroll-behavior-x: contain; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; }
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__slide { flex-shrink: 0; scroll-snap-align: start; }
.carousel__controls { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 26px; }
.carousel__arrow, .carousel__toggle { display: grid; place-items: center; width: 44px; height: 44px; padding: 0; border: 1px solid var(--silver); background: var(--white); color: var(--charcoal); transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease; }
.carousel__arrow:hover, .carousel__toggle:hover { border-color: var(--arpan-green); background: var(--arpan-green); color: var(--white); }
.carousel__arrow:disabled { opacity: 0.35; pointer-events: none; }
.carousel__arrow .icon, .carousel__toggle .icon { width: 18px; height: 18px; stroke-width: 2.2; }
.carousel__toggle .icon--play { display: none; }
.carousel__toggle[aria-pressed="true"] .icon--pause { display: none; }
.carousel__toggle[aria-pressed="true"] .icon--play { display: block; }
.carousel__counter { min-width: 76px; color: var(--charcoal); font-family: var(--font-heading); font-size: 14px; font-weight: 700; letter-spacing: 0.08em; text-align: center; }
.carousel__counter span { color: var(--arpan-green); }

/* ---------- Home: Product in Focus ---------- */
.focus__slide { flex-basis: 100%; }
.focus-item { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); min-height: 520px; overflow: hidden; border-radius: 16px; background: var(--charcoal); color: var(--on-dark); }
.focus-item__media { position: relative; min-height: 300px; background: var(--dark-2); }
.focus-item__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.focus-item__body { display: flex; flex-direction: column; justify-content: center; padding: 48px 54px; }
.focus-item__num { color: var(--leaf-green); font-family: var(--font-heading); font-size: 40px; font-weight: 800; line-height: 1; }
.focus-item__num span { color: var(--on-dark-muted); font-size: 16px; font-weight: 700; }
.focus-item__title { margin-top: 12px; color: var(--white); font-family: var(--font-heading-caps); font-size: clamp(28px, 1.6vw + 16px, 42px); font-weight: 800; line-height: 1.1; text-transform: uppercase; }
.focus-item__text { margin-top: 14px; font-size: 15px; line-height: 1.7; }
.focus-item__facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin: 24px 0 28px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 10px; background: rgba(255, 255, 255, 0.12); }
.focus-item__facts > div { padding: 12px 16px; background: var(--charcoal); }
.focus-item__facts dt { color: var(--silver); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.focus-item__facts dd { margin-top: 2px; color: var(--white); font-size: 14px; font-weight: 600; line-height: 1.45; }
.focus-item .btn { align-self: flex-start; }
@media (max-width: 991px) {
  .focus-item { grid-template-columns: minmax(0, 1fr); min-height: 0; }
  .focus-item__media { aspect-ratio: 16 / 9; min-height: 0; }
  .focus-item__body { padding: 32px 26px; }
}
@media (max-width: 575px) {
  .focus-item__facts { grid-template-columns: minmax(0, 1fr); }
  .focus-item .btn { align-self: stretch; }
}

/* ---------- Home: How We Work ---------- */
.workflow__steps { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 30px; }
.workflow__steps::before { content: ""; position: absolute; top: 36px; right: 12.5%; left: 12.5%; border-top: 2px dashed var(--silver); }
.workflow__step { position: relative; padding: 0 10px; text-align: center; }
.workflow__icon { position: relative; z-index: 1; display: grid; place-items: center; width: 72px; height: 72px; margin: 0 auto 18px; border: 1.5px solid var(--border); border-radius: 50%; background: var(--white); color: var(--arpan-green); box-shadow: 0 0 0 10px var(--white); transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease; }
.workflow__icon .icon { width: 28px; height: 28px; stroke-width: 1.6; }
.workflow__step:hover .workflow__icon { border-color: var(--arpan-green); background: var(--arpan-green); color: var(--white); }
.workflow__num { display: block; margin-bottom: 6px; color: var(--arpan-green); font-family: var(--font-heading); font-size: 12px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.workflow__title { font-size: 17px; font-weight: 800; }
.workflow__text { margin-top: 8px; font-size: 14.5px; line-height: 1.65; }
.workflow__cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 20px; margin-top: 48px; padding: 18px 24px; border: 1px solid var(--border); border-radius: 10px; color: var(--charcoal); font-weight: 600; }
@media (max-width: 991px) {
  .workflow__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 40px; }
  .workflow__steps::before { display: none; }
}
@media (max-width: 575px) {
  .workflow__steps { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .workflow__step { display: grid; grid-template-columns: 56px minmax(0, 1fr); column-gap: 16px; padding: 0 0 26px; text-align: left; }
  .workflow__step:not(:last-child)::after { content: ""; position: absolute; top: 60px; bottom: 4px; left: 27px; border-left: 2px dashed var(--silver); }
  .workflow__icon { grid-row: span 3; width: 56px; height: 56px; margin: 0; box-shadow: none; }
  .workflow__icon .icon { width: 24px; height: 24px; }
}

/* ---------- Home: Certifications & Registrations ---------- */
.certs__head { margin-bottom: 50px; }
.certs__head .sec-title { margin-bottom: 16px; }
.certs__lead { max-width: 660px; margin: 0 auto; text-align: center; }
.certs__list { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.cred { position: relative; display: flex; flex: 0 1 calc((100% - 100px) / 6); flex-direction: column; align-items: center; overflow: hidden; padding: 30px 20px 26px; border: 1px solid var(--border); border-radius: var(--radius-card); background: var(--white); text-align: center; transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease; }
.cred::before { content: ""; position: absolute; top: 0; right: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--light-green), var(--arpan-green), var(--light-green)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.cred:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.cred:hover::before { transform: scaleX(1); }
.cred__badge { position: absolute; top: 14px; right: 14px; width: 20px; height: 20px; color: var(--arpan-green); stroke-width: 2; }
.cred__logo { display: grid; place-items: center; width: 100%; height: 128px; margin-bottom: 18px; padding-bottom: 22px; border-bottom: 1px dashed var(--border); }
.cred__logo img { width: auto; max-width: min(150px, 100%); height: auto; max-height: 100px; object-fit: contain; }
.cred__name { font-size: 16px; font-weight: 800; line-height: 1.3; }
.cred__text { margin-top: 8px; color: var(--text-light); font-size: 13px; line-height: 1.55; }
@media (max-width: 1199px) {
  .cred { padding: 26px 14px 22px; }
  .cred__text { font-size: 12.5px; }
}
@media (max-width: 991px) { .cred { flex-basis: calc((100% - 40px) / 3); } }
@media (max-width: 575px) {
  .certs__head { margin-bottom: 36px; }
  .certs__list { gap: 14px; }
  .cred { flex-basis: calc((100% - 14px) / 2); padding: 22px 12px 18px; }
  .cred__badge { top: 10px; right: 10px; width: 18px; height: 18px; }
  .cred__logo { height: 100px; margin-bottom: 14px; padding-bottom: 16px; }
  .cred__logo img { max-width: 118px; max-height: 78px; }
  .cred__name { font-size: 14.5px; }
}

/* ---------- Product name strip ---------- */
.marquee__item { gap: 0; padding-right: 0; }
.marquee__item::after { content: ""; display: inline-block; flex-shrink: 0; width: 10px; height: 10px; margin: 0 34px; background: var(--arpan-green); transform: rotate(45deg); }

/* ---------- About: Our Values (editorial) ---------- */
.values__grid { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); align-items: start; gap: 50px 80px; }
.values__intro { position: sticky; top: 120px; }
.values__statement { margin-bottom: 16px; color: var(--charcoal); font-family: var(--font-heading); font-size: clamp(20px, 1vw + 14px, 26px); font-weight: 700; line-height: 1.45; }
.values__list { border-top: 1px solid var(--silver); }
.value { display: grid; grid-template-columns: 52px 56px minmax(0, 1fr); align-items: start; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--silver); }
.value__num { padding-top: 12px; color: var(--arpan-green); font-family: var(--font-heading); font-size: 26px; font-weight: 800; line-height: 1; }
.value__icon { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 12px; background: var(--white); color: var(--charcoal); box-shadow: var(--shadow); transition: background-color 0.3s ease, color 0.3s ease; }
.value__icon .icon { width: 26px; height: 26px; stroke-width: 1.6; }
.value:hover .value__icon { background: var(--arpan-green); color: var(--white); }
.value__title { font-size: 20px; font-weight: 800; }
.value__text { margin-top: 6px; font-size: 15px; line-height: 1.7; }
@media (max-width: 991px) {
  .values__grid { grid-template-columns: minmax(0, 1fr); }
  .values__intro { position: static; }
}
@media (max-width: 575px) {
  .value { grid-template-columns: 48px minmax(0, 1fr); column-gap: 16px; row-gap: 6px; }
  .value__num { grid-column: 1 / -1; padding-top: 0; font-size: 20px; }
  .value__icon { width: 48px; height: 48px; }
}

/* ---------- About: Vision & Mission ---------- */
.purpose { position: relative; overflow: hidden; background: var(--charcoal); color: var(--on-dark); }
.purpose::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px); background-size: 22px 22px; -webkit-mask-image: radial-gradient(ellipse at 75% 45%, #000 15%, transparent 70%); mask-image: radial-gradient(ellipse at 75% 45%, #000 15%, transparent 70%); pointer-events: none; }
.purpose__route { position: absolute; top: 50%; right: -80px; width: 560px; color: var(--white); opacity: 0.45; transform: translateY(-50%); pointer-events: none; }
.purpose .container { position: relative; }
.purpose__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; max-width: 1040px; margin: 0 auto; }
.purpose__block { padding: 40px 44px; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: var(--radius-card); background: #272727; }
.purpose__block::before { content: ""; display: block; width: 40px; height: 3px; margin-bottom: 22px; background: var(--leaf-green); }
.purpose__label { color: var(--silver); font-family: var(--font-heading); font-size: 13px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; }
.purpose__text { margin-top: 14px; color: var(--white); font-family: var(--font-heading); font-size: clamp(19px, 1vw + 13px, 25px); font-weight: 700; line-height: 1.45; }
@media (max-width: 991px) { .purpose__route { display: none; } }
/* Stacked button pairs share one width on phones */
@media (max-width: 575px) {
  .main-slider__btns .btn, .cta-one__btns .btn, .cta-two__btns .btn, .page-header__btns .btn { width: 100%; justify-content: center; }
}
@media (max-width: 767px) {
  .purpose__grid { grid-template-columns: minmax(0, 1fr); }
  .purpose__block { padding: 30px 24px; }
}

/* ---------- About: Our Approach ---------- */
.approach__steps { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-card); background: var(--white); }
.approach__step { position: relative; padding: 30px 22px 28px; }
.approach__step + .approach__step { border-left: 1px solid var(--border); }
.approach__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.approach__icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 10px; background: var(--light-bg); color: var(--arpan-green); transition: background-color 0.3s ease, color 0.3s ease; }
.approach__icon .icon { width: 24px; height: 24px; stroke-width: 1.7; }
.approach__step:hover .approach__icon { background: var(--arpan-green); color: var(--white); }
.approach__num { color: var(--text-light); font-family: var(--font-heading); font-size: 13px; font-weight: 800; letter-spacing: 0.12em; }
.approach__title { font-size: 15px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.approach__text { margin-top: 8px; font-size: 14px; line-height: 1.65; }
@media (max-width: 1199px) {
  .approach__steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .approach__step:nth-child(4) { border-left: 0; }
  .approach__step:nth-child(n + 4) { border-top: 1px solid var(--border); }
}
@media (max-width: 767px) {
  .approach__steps { grid-template-columns: minmax(0, 1fr); }
  .approach__step { display: grid; grid-template-columns: 48px minmax(0, 1fr); column-gap: 16px; padding: 22px 20px; }
  .approach__step + .approach__step { border-top: 1px solid var(--border); border-left: 0; }
  .approach__head { grid-row: span 2; flex-direction: column; align-items: flex-start; gap: 8px; margin: 0; }
  .approach__text { margin-top: 4px; }
}

/* ---------- Contact ---------- */
.contact-info__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 991px) { .contact-info__grid { grid-template-columns: minmax(0, 1fr); } }
.form-one__label { margin-left: 0; }
.form-one__error { margin-left: 0; }
.form-one__control { height: 52px; padding: 0 18px; border-radius: var(--radius-btn); }
select.form-one__control { padding-right: 44px; background-position: right 16px center; }
textarea.form-one__control { height: 150px; padding: 14px 18px; border-radius: var(--radius-btn); }
@media (max-width: 575px) { .form-one__footer .btn { width: 100%; } }
.contact-one__media { position: relative; min-height: 560px; background: var(--charcoal); }
.contact-one__panel { position: absolute; right: 40px; bottom: 40px; left: 40px; padding: 24px 28px; border-radius: 12px; background: rgba(28, 28, 28, 0.92); color: var(--white); }
.contact-one__panel-label { margin-bottom: 10px; color: var(--silver); font-family: var(--font-heading); font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.contact-one__line { display: flex; align-items: center; gap: 12px; padding: 8px 0; color: var(--white); font-family: var(--font-heading); font-size: 17px; font-weight: 700; overflow-wrap: anywhere; }
.contact-one__line:hover { color: var(--silver); }
.contact-one__line .icon { flex-shrink: 0; width: 20px; height: 20px; color: var(--leaf-green); }
@media (max-width: 991px) { .contact-one__media { min-height: 380px; } }
@media (max-width: 575px) {
  .contact-one__media { min-height: 300px; }
  .contact-one__panel { right: 16px; bottom: 16px; left: 16px; padding: 18px 20px; }
  .contact-one__line { font-size: 15px; }
}

/* ---------- Footer ---------- */
.footer-cta__inner { border-radius: var(--radius-card); }
.footer-cta .btn { position: relative; flex-shrink: 0; }
.main-footer { position: relative; overflow: hidden; padding-top: 90px; background: var(--charcoal); color: var(--on-dark); }
.footer-cta + .main-footer { padding-top: 160px; }
.main-footer__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.06; filter: grayscale(1); pointer-events: none; }
.main-footer__top { position: relative; display: grid; grid-template-columns: 1.35fr 0.75fr 1.15fr 1.15fr; gap: 40px 48px; padding-bottom: 60px; }
.footer-widget__logo { display: inline-block; margin-bottom: 20px; line-height: 0; }
.footer-widget__logo img { width: 196px; height: auto; }
.footer-widget__text { max-width: 340px; margin-bottom: 22px; font-size: 14.5px; line-height: 1.8; }
.footer-widget__title { position: relative; margin-bottom: 22px; padding-bottom: 12px; color: var(--white); font-size: 15px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-widget__title::after { content: ""; position: absolute; bottom: 0; left: 0; width: 32px; height: 2px; background: var(--light-green); }
.footer-widget__links { display: grid; gap: 10px; font-size: 14.5px; }
.footer-widget__links--split { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 20px; }
.footer-widget__links a { color: var(--on-dark); transition: color 0.25s ease; }
.footer-widget__links a::before { content: ""; display: inline-block; width: 6px; height: 6px; margin-right: 10px; border-radius: 1px; background: var(--arpan-green); vertical-align: middle; transform: translateY(-1px); }
.footer-widget__links a:hover { color: var(--white); }
.footer-widget__contact { display: grid; gap: 16px; font-size: 14.5px; line-height: 1.6; }
.footer-widget__contact li { display: grid; grid-template-columns: 36px minmax(0, 1fr); align-items: start; gap: 12px; }
.footer-widget__contact .icon { width: 36px; height: 36px; padding: 9px; border-radius: var(--radius-btn); background: rgba(255, 255, 255, 0.07); color: var(--light-green); }
.footer-widget__contact small { display: block; color: var(--on-dark-muted); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-widget__contact a, .footer-widget__contact address { color: var(--white); font-style: normal; overflow-wrap: anywhere; }
.footer-widget__contact a:hover { color: var(--silver); }
.main-footer__bottom { position: relative; border-top: 1px solid var(--line-dark); }
.main-footer__bottom::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 4px; background: linear-gradient(90deg, var(--light-green), var(--leaf-green), var(--light-green)); }
.main-footer__bottom-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px 30px; padding: 22px 15px 28px; color: var(--on-dark-muted); font-size: 13.5px; }
@media (max-width: 1199px) { .main-footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 575px) {
  .main-footer__top { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .footer-cta + .main-footer { padding-top: 150px; }
}

/* ==========================================================================
   PRODUCT DETAIL PAGES (templates/product.html)
   ========================================================================== */
.page-product main section[id] { scroll-margin-top: 160px; }

/* ---------- Hero: full-bleed split with photo ---------- */
.pdx-hero { position: relative; overflow: hidden; background: var(--dark-2); color: var(--on-dark); }
.pdx-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 8% 105%, rgba(40, 84, 48, 0.28), transparent 45%); pointer-events: none; }
.pdx-hero__media { position: absolute; top: 0; right: 0; bottom: 0; width: 50%; }
.pdx-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.pdx-hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--dark-2), transparent 30%), linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 32%); pointer-events: none; }
.pdx-hero__inner { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; width: 50%; min-height: 780px; padding: calc(var(--header-offset) + 40px) 64px 64px 0; }
.pdx-hero__watermark { position: absolute; top: calc(var(--header-offset) + 18px); right: 56px; z-index: -1; color: transparent; font-family: var(--font-heading-caps); font-size: 200px; font-weight: 800; line-height: 1; -webkit-text-stroke: 1px rgba(255, 255, 255, 0.09); pointer-events: none; user-select: none; }
.pdx-hero .breadcrumb { margin-bottom: 0; }
.pdx-eyebrow { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px; margin: 26px 0 16px; color: var(--silver); font-family: var(--font-heading); font-size: 12.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.pdx-eyebrow__num { padding: 6px 10px; border-radius: var(--radius-btn); background: var(--arpan-green); color: var(--white); letter-spacing: 0.08em; }
.pdx-hero__title { color: var(--white); font-family: var(--font-heading-caps); font-size: clamp(40px, 3.4vw + 14px, 72px); font-weight: 800; line-height: 1.02; text-transform: uppercase; overflow-wrap: anywhere; }
.pdx-hero__tagline { max-width: 520px; margin-top: 18px; color: var(--on-dark); font-size: 18px; line-height: 1.6; }
.pdx-hero__btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.pdx-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 44px; border-top: 1px solid rgba(255, 255, 255, 0.14); }
.pdx-facts > div { display: grid; grid-template-columns: 20px minmax(0, 1fr); align-content: start; column-gap: 12px; padding: 18px 20px 18px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
.pdx-facts > div:nth-child(even) { padding: 18px 0 18px 20px; border-left: 1px solid rgba(255, 255, 255, 0.14); }
.pdx-facts .icon { grid-row: span 2; width: 20px; height: 20px; margin-top: 2px; color: var(--leaf-green); }
.pdx-facts dt { color: var(--on-dark-muted); font-size: 11.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.pdx-facts dd { margin-top: 4px; color: var(--white); font-family: var(--font-heading); font-size: 15px; font-weight: 700; line-height: 1.4; overflow-wrap: anywhere; }
.pdx-facts dd small { display: block; margin-top: 4px; color: var(--on-dark-muted); font-family: var(--font-body); font-size: 12.5px; font-weight: 500; line-height: 1.45; }

/* ---------- Sticky section navigation ---------- */
.pdx-nav { position: sticky; top: 80px; z-index: 90; border-bottom: 1px solid var(--border); background: rgba(255, 255, 255, 0.97); box-shadow: 0 14px 30px -26px rgba(0, 0, 0, 0.4); transition: top 0.4s var(--ease); }
@supports (backdrop-filter: blur(1px)) { .pdx-nav { background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(12px); } }
.pdx-nav__inner { display: flex; align-items: center; gap: 24px; }
.pdx-nav__links { display: flex; flex: 1; gap: 4px; min-width: 0; overflow-x: auto; scrollbar-width: none; }
.pdx-nav__links::-webkit-scrollbar { display: none; }
.pdx-nav__links a { position: relative; flex-shrink: 0; padding: 22px 14px; color: var(--charcoal); font-family: var(--font-heading); font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; transition: color 0.25s ease; }
.pdx-nav__links a::after { content: ""; position: absolute; right: 14px; bottom: 0; left: 14px; height: 3px; border-radius: 3px 3px 0 0; background: var(--arpan-green); transform: scaleX(0); transition: transform 0.3s var(--ease); }
.pdx-nav__links a:hover, .pdx-nav__links a.is-active { color: var(--arpan-green); }
.pdx-nav__links a.is-active::after { transform: scaleX(1); }
.pdx-nav__btn { flex-shrink: 0; }

/* ---------- Sections and headings ---------- */
.pdx-section { padding: 100px 0; }
.pdx-section--tint { background: var(--light-bg); }
.pdx-section--dark { position: relative; overflow: hidden; background: var(--dark-2); color: var(--on-dark); }
.pdx-section--dark::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px); background-size: 22px 22px; -webkit-mask-image: radial-gradient(ellipse at 85% 15%, #000 10%, transparent 60%); mask-image: radial-gradient(ellipse at 85% 15%, #000 10%, transparent 60%); pointer-events: none; }
.pdx-section--dark .container { position: relative; }
.pdx-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 16px 40px; margin-bottom: 44px; }
.pdx-kicker { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; color: var(--arpan-green); font-family: var(--font-heading); font-size: 12.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.pdx-kicker span { display: inline-grid; place-items: center; width: 34px; height: 34px; border: 1px solid currentColor; border-radius: 50%; font-size: 11.5px; letter-spacing: 0.04em; }
.pdx-title { font-size: clamp(28px, 1.3vw + 20px, 42px); font-weight: 800; line-height: 1.15; }
.pdx-section--dark .pdx-kicker { color: var(--silver); }
.pdx-section--dark .pdx-kicker span { border-color: var(--arpan-green); color: var(--white); }
.pdx-section--dark .pdx-title { color: var(--white); }
.pdx-head__meta { color: var(--text); font-size: 15px; }
.pdx-head__meta strong { margin-right: 6px; color: var(--arpan-green); font-family: var(--font-heading); font-size: 30px; font-weight: 800; vertical-align: -3px; }
.pdx-label { margin-bottom: 16px; color: var(--text-light); font-family: var(--font-heading); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.pdx-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.pdx-chips li { padding: 6px 12px; border: 1px solid var(--silver); border-radius: var(--radius-btn); background: var(--white); color: var(--charcoal); font-size: 13.5px; font-weight: 600; line-height: 1.35; }
.pdx-chips--dark li { border-color: rgba(255, 255, 255, 0.25); background: rgba(255, 255, 255, 0.04); color: var(--white); }
.pdx-checks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 24px; }
.pdx-checks li { display: flex; align-items: flex-start; gap: 10px; color: var(--charcoal); font-size: 15px; line-height: 1.45; }
.pdx-checks .icon { flex-shrink: 0; width: 20px; height: 20px; padding: 3px; border-radius: 50%; background: rgba(40, 84, 48, 0.1); color: var(--arpan-green); stroke-width: 2.8; }
.pdx-checks--dark li { color: var(--white); }
.pdx-checks--dark .icon { background: var(--arpan-green); color: var(--white); }

/* ---------- 01 Overview ---------- */
.pdx-overview { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.88fr); align-items: center; gap: 80px; }
.pdx-lead { margin-top: 22px; color: var(--charcoal); font-size: 18px; line-height: 1.8; }
.pdx-attrs { margin-top: 28px; }
.pdx-attrs > div, .pdx-origin__list > div { display: grid; grid-template-columns: 170px minmax(0, 1fr); gap: 16px; }
.pdx-attrs > div { padding: 14px 0; border-top: 1px solid var(--border); }
.pdx-attrs > div:last-child { border-bottom: 1px solid var(--border); }
.pdx-attrs dt, .pdx-origin__list dt { padding-top: 2px; color: var(--text-light); font-size: 12.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.pdx-attrs dd { color: var(--charcoal); font-size: 15.5px; }
.pdx-origin { margin-top: 32px; padding: 24px 26px; border-left: 4px solid var(--arpan-green); border-radius: 0 var(--radius-card) var(--radius-card) 0; background: var(--light-bg); }
.pdx-origin__title { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; font-size: 17px; font-weight: 800; }
.pdx-origin__title .icon { width: 22px; height: 22px; color: var(--arpan-green); }
.pdx-origin__list > div + div { margin-top: 12px; padding-top: 12px; border-top: 1px dashed var(--silver); }
.pdx-origin__list dd { color: var(--charcoal); font-size: 15.5px; font-weight: 600; }
.pdx-overview__media { position: relative; padding: 0 0 28px 28px; }
.pdx-overview__media::before { content: ""; position: absolute; bottom: 0; left: 0; width: 62%; height: 72%; border-radius: var(--radius-card); background: var(--arpan-green); }
.pdx-overview__media img { position: relative; width: 100%; aspect-ratio: 4 / 5; border-radius: var(--radius-card); object-fit: cover; box-shadow: var(--shadow-lg); }

/* ---------- 02 Varieties ---------- */
.pdx-groups { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); gap: 24px; }
.pdx-group { padding: 28px; border: 1px solid var(--border); border-radius: var(--radius-card); background: var(--white); }
.pdx-group__title { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); font-size: 18px; font-weight: 800; }
.pdx-group__title span { color: var(--arpan-green); font-size: 13px; letter-spacing: 0.08em; }
.pdx-tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 10px; }
.pdx-tiles li { display: flex; align-items: center; gap: 12px; min-height: 58px; padding: 12px 16px; border-radius: 10px; background: var(--light-bg); color: var(--charcoal); font-size: 15px; font-weight: 600; line-height: 1.35; transition: background-color 0.25s ease, color 0.25s ease; }
.pdx-tiles li:hover { background: var(--charcoal); color: var(--white); }
.pdx-tiles__num { flex-shrink: 0; color: var(--arpan-green); font-family: var(--font-heading); font-size: 12px; font-weight: 800; letter-spacing: 0.06em; }

/* ---------- 03 Specifications ---------- */
.pdx-spec { display: grid; grid-template-columns: minmax(0, 0.36fr) minmax(0, 1fr); align-items: start; gap: 60px; }
.pdx-spec__aside { position: sticky; top: 176px; }
.pdx-spec__text { margin-top: 16px; color: var(--text); font-size: 16px; }
.pdx-spec__aside .btn { margin-top: 26px; }
.spec-list { display: flex; flex-wrap: wrap; row-gap: 2px; }
.spec-list li { position: relative; margin-right: 12px; padding-right: 14px; }
.spec-list li:not(:last-child)::after { content: ""; position: absolute; top: 0.68em; right: 0; width: 4px; height: 4px; border-radius: 50%; background: var(--arpan-green); }
.page-product .spec-table-wrap { overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-card); background: var(--white); box-shadow: 0 30px 60px -44px rgba(0, 0, 0, 0.35); }
.page-product .spec-table { width: 100%; border-collapse: collapse; font-size: 15px; counter-reset: spec; }
.page-product .spec-table thead th { padding: 16px 24px; border-bottom: 2px solid var(--arpan-green); color: var(--text-light); font-family: var(--font-heading); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-align: left; text-transform: uppercase; }
.page-product .spec-table tbody tr { counter-increment: spec; transition: background-color 0.2s ease; }
.page-product .spec-table tbody tr:hover { background: var(--light-bg); }
.page-product .spec-table tbody th { width: 36%; padding: 16px 24px; color: var(--charcoal); font-size: 14.5px; font-weight: 700; text-align: left; vertical-align: top; }
.page-product .spec-table tbody th::before { content: counter(spec, decimal-leading-zero); display: inline-block; width: 32px; color: var(--arpan-green); font-family: var(--font-heading); font-size: 12px; font-weight: 800; }
.page-product .spec-table td { padding: 16px 24px; color: var(--text); vertical-align: top; }
.page-product .spec-table tbody tr + tr > * { border-top: 1px solid var(--border); }

/* ---------- 04 Packaging, storage, labeling ---------- */
.pdx-bento { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 24px; }
.pdx-card { padding: 32px; border: 1px solid var(--border); border-radius: var(--radius-card); background: var(--white); }
.pdx-card--pack { display: flex; flex-direction: column; grid-row: span 2; }
.pdx-card--pack .pdx-pack { margin-bottom: 24px; }
.pdx-card--pack .pdx-pack__meta { margin-top: auto; }
.pdx-card__title { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; font-size: 20px; font-weight: 800; }
.pdx-card__title .icon { flex-shrink: 0; width: 46px; height: 46px; padding: 11px; border-radius: 12px; background: var(--arpan-green); color: var(--white); }
.pdx-pack { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.pdx-pack li { display: flex; align-items: center; gap: 12px; min-height: 64px; padding: 14px 16px; border: 1px solid var(--border); border-radius: 10px; color: var(--charcoal); font-weight: 600; line-height: 1.35; }
.pdx-pack .icon { flex-shrink: 0; width: 22px; height: 22px; color: var(--arpan-green); }
.pdx-pack__meta { margin-top: 24px; padding: 22px 24px; border-radius: 12px; background: var(--charcoal); color: var(--on-dark); }
.pdx-pack__meta > div + div { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, 0.14); }
.pdx-pack__meta dt { color: var(--silver); font-family: var(--font-heading); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.pdx-pack__meta dd { margin-top: 10px; color: var(--white); font-size: 15px; }
.pdx-pack__meta .pdx-chips + p { margin-top: 10px; }
.pdx-pack__meta .pdx-chips li { border-color: rgba(255, 255, 255, 0.3); background: transparent; color: var(--white); }
.pdx-rows > div { display: grid; grid-template-columns: 24px minmax(0, 1fr); column-gap: 14px; padding: 14px 0; }
.pdx-rows > div:first-child { padding-top: 0; }
.pdx-rows > div + div { border-top: 1px solid var(--border); }
.pdx-rows .icon { grid-row: span 2; width: 22px; height: 22px; color: var(--arpan-green); }
.pdx-rows dt { color: var(--charcoal); font-size: 14.5px; font-weight: 700; }
.pdx-rows dd { margin-top: 2px; color: var(--text); font-size: 15px; }

/* ---------- 05 Quality ---------- */
.pdx-quality { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: 24px; }
.pdx-quality__params { padding: 34px; border: 1px solid rgba(255, 255, 255, 0.12); border-radius: var(--radius-card); background: rgba(255, 255, 255, 0.03); }
.pdx-section--dark .pdx-label { color: var(--silver); }
.pdx-quality__control { display: flex; flex-direction: column; padding: 34px; border-radius: var(--radius-card); background: linear-gradient(145deg, var(--arpan-green), var(--leaf-green) 150%); color: var(--white); }
.pdx-quality__control > .icon { width: 54px; height: 54px; margin-bottom: auto; padding: 13px; border-radius: 14px; background: rgba(255, 255, 255, 0.14); color: var(--white); }
.pdx-quality__control .pdx-label { margin: 36px 0 10px; color: rgba(255, 255, 255, 0.85); }
.pdx-quality__control p { color: var(--white); font-family: var(--font-heading); font-size: 19px; font-weight: 700; line-height: 1.5; }
.pdx-quality__compliance { display: flex; flex-wrap: wrap; align-items: center; grid-column: 1 / -1; gap: 14px 24px; padding: 24px 34px; border: 1px solid rgba(255, 255, 255, 0.12); border-radius: var(--radius-card); }
.pdx-quality__compliance .pdx-label { margin: 0; }

/* ---------- 06 Shipping ---------- */
.pdx-ship { display: grid; grid-template-columns: minmax(0, 0.4fr) minmax(0, 1fr); align-items: start; gap: 40px; }
.pdx-modes { display: grid; gap: 14px; }
.pdx-modes li { display: flex; align-items: center; gap: 18px; padding: 20px 22px; border: 1px solid var(--border); border-radius: var(--radius-card); background: var(--white); color: var(--charcoal); font-family: var(--font-heading); font-size: 18px; font-weight: 800; }
.pdx-modes__icon { display: grid; flex-shrink: 0; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: var(--light-bg); color: var(--arpan-green); }
.pdx-modes__icon .icon { width: 26px; height: 26px; }
.pdx-docs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.pdx-docs li { display: flex; gap: 14px; padding: 20px; border: 1px solid var(--border); border-radius: 12px; background: var(--white); transition: border-color 0.25s ease, box-shadow 0.25s ease; }
.pdx-docs li:hover { border-color: transparent; box-shadow: var(--shadow-lg); }
.pdx-docs__num { flex-shrink: 0; color: var(--arpan-green); font-family: var(--font-heading); font-size: 13px; font-weight: 800; line-height: 1.5; }
.pdx-docs strong { display: block; color: var(--charcoal); font-size: 15px; line-height: 1.4; }
.pdx-docs div span { display: block; margin-top: 4px; color: var(--text-light); font-size: 13.5px; line-height: 1.55; }

/* ---------- More products ---------- */
.pdx-more { padding: 80px 0; background: var(--light-bg); }
.pdx-more__head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 30px; }
.pdx-more__title { font-size: clamp(24px, 1vw + 18px, 32px); font-weight: 800; }
.pdx-more__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.pdx-more__card { display: flex; align-items: center; gap: 20px; padding: 14px 22px 14px 14px; border: 1px solid var(--border); border-radius: var(--radius-card); background: var(--white); color: var(--charcoal); transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease; }
.pdx-more__card:hover { border-color: transparent; box-shadow: var(--shadow-lg); color: var(--charcoal); transform: translateY(-3px); }
.pdx-more__card--prev { flex-direction: row-reverse; padding: 14px 14px 14px 22px; text-align: right; }
.pdx-more__card--next { grid-column: 2; }
.pdx-more__thumb { flex-shrink: 0; width: 120px; height: 96px; overflow: hidden; border-radius: 10px; }
.pdx-more__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.pdx-more__card:hover .pdx-more__thumb img { transform: scale(1.06); }
.pdx-more__body { flex: 1; min-width: 0; }
.pdx-more__body small { display: block; color: var(--arpan-green); font-family: var(--font-heading); font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.pdx-more__body strong { display: block; margin-top: 6px; font-family: var(--font-heading); font-size: 19px; font-weight: 800; line-height: 1.3; }
.pdx-more__body > span { display: block; margin-top: 4px; color: var(--text-light); font-size: 13.5px; }
.pdx-more__arrow { flex-shrink: 0; width: 42px; height: 42px; padding: 11px; border-radius: 50%; background: var(--light-bg); color: var(--arpan-green); transition: background-color 0.25s ease, color 0.25s ease; }
.pdx-more__card:hover .pdx-more__arrow { background: var(--arpan-green); color: var(--white); }

/* ---------- Quote CTA ---------- */
.pdx-cta { padding: 90px 0; background: var(--white); }
.pdx-cta__card { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 28px 48px; overflow: hidden; padding: 56px 60px; border-radius: 20px; background: var(--dark-2); color: var(--white); }
.pdx-cta__card::before { content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 8px; background: linear-gradient(180deg, var(--light-green), var(--leaf-green)); }
.pdx-cta__card::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1.2px, transparent 1.2px); background-size: 18px 18px; -webkit-mask-image: linear-gradient(90deg, transparent 45%, #000); mask-image: linear-gradient(90deg, transparent 45%, #000); pointer-events: none; }
.pdx-cta__content, .pdx-cta__btns { position: relative; z-index: 1; }
.pdx-cta__eyebrow { color: var(--silver); font-family: var(--font-heading); font-size: 12.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.pdx-cta__title { margin-top: 10px; color: var(--white); font-size: clamp(26px, 1.4vw + 18px, 40px); font-weight: 800; line-height: 1.2; }
.pdx-cta__text { max-width: 560px; margin-top: 12px; color: var(--on-dark); }
.pdx-cta__btns { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Responsive ---------- */
@media (max-width: 1199px) {
  .pdx-hero__inner { min-height: 720px; padding-right: 44px; }
  .pdx-overview { gap: 50px; }
  .pdx-spec { gap: 40px; }
  .pdx-ship { grid-template-columns: minmax(0, 1fr); gap: 30px; }
  .pdx-modes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pdx-docs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 991px) {
  .pdx-hero { display: flex; flex-direction: column; }
  .pdx-hero > .container { order: 1; }
  .pdx-hero__media { position: relative; order: 2; width: 100%; height: clamp(280px, 62vw, 460px); }
  .pdx-hero__media::after { background: linear-gradient(180deg, var(--dark-2), transparent 30%); }
  .pdx-hero__inner { width: 100%; min-height: 0; padding: calc(var(--header-offset) + 36px) 0 44px; }
  .pdx-hero__watermark { top: calc(var(--header-offset) + 10px); right: 0; bottom: auto; font-size: 180px; }
  .pdx-nav__btn { display: none; }
  .pdx-section { padding: 76px 0; }
  .pdx-overview, .pdx-spec, .pdx-bento, .pdx-quality { grid-template-columns: minmax(0, 1fr); }
  .pdx-overview__media { max-width: 560px; }
  .pdx-overview__media img { aspect-ratio: 4 / 3; }
  .pdx-spec__aside { position: static; }
  .pdx-card--pack { grid-row: auto; }
  .pdx-cta__card { grid-template-columns: minmax(0, 1fr); padding: 44px 36px; }
  body:has(.main-header__bar.is-tucked) .pdx-nav { top: 0; }
}
@media (max-width: 767px) {
  .pdx-nav { top: 66px; }
  .page-product .spec-table thead { display: none; }
  .page-product .spec-table tr, .page-product .spec-table tbody th, .page-product .spec-table td { display: block; width: 100%; }
  .page-product .spec-table tbody th { padding: 14px 18px 6px; }
  .page-product .spec-table td { padding: 0 18px 14px 50px; }
  .page-product .spec-table tbody tr + tr > td { border-top: 0; }
  .page-product .spec-list { display: block; }
  .page-product .spec-list li { margin: 0; padding: 0 0 0 14px; }
  .page-product .spec-list li + li { margin-top: 4px; }
  .page-product .spec-list li::after { display: none; }
  .page-product .spec-list li::before { content: ""; position: absolute; top: 0.68em; left: 0; width: 4px; height: 4px; border-radius: 50%; background: var(--arpan-green); }
  .pdx-more__grid { grid-template-columns: minmax(0, 1fr); }
  .pdx-more__card--next { grid-column: auto; }
}
@media (max-width: 575px) {
  .pdx-hero__btns .btn { width: 100%; }
  .pdx-hero__watermark { font-size: 120px; }
  .pdx-facts { grid-template-columns: minmax(0, 1fr); }
  .pdx-facts > div, .pdx-facts > div:nth-child(even) { padding: 14px 0; border-left: 0; }
  .pdx-nav__links a { padding: 18px 12px; }
  .pdx-section { padding: 60px 0; }
  .pdx-head { margin-bottom: 30px; }
  .pdx-attrs > div, .pdx-origin__list > div { grid-template-columns: minmax(0, 1fr); gap: 4px; }
  .pdx-origin { padding: 20px; }
  .pdx-overview__media { padding: 0 0 18px 18px; }
  .pdx-group, .pdx-card, .pdx-quality__params, .pdx-quality__control { padding: 24px 20px; }
  .pdx-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pdx-tiles li { padding: 12px; font-size: 14px; }
  .pdx-pack, .pdx-checks, .pdx-docs, .pdx-modes { grid-template-columns: minmax(0, 1fr); }
  .pdx-quality__compliance { padding: 22px 20px; }
  .pdx-more__card { gap: 14px; }
  .pdx-more__thumb { width: 84px; height: 72px; }
  .pdx-more__body strong { font-size: 16px; }
  .pdx-more__arrow { display: none; }
  .pdx-cta { padding: 60px 0; }
  .pdx-cta__card { padding: 36px 24px; }
  .pdx-cta__btns .btn { width: 100%; }
}

/* ==========================================================================
   PRODUCTS PAGE — catalogue (products.html)
   ========================================================================== */
/* ---------- Hero with product mosaic ---------- */
.pcat-hero { position: relative; overflow: hidden; padding: calc(var(--header-offset) + 50px) 0 0; background: var(--dark-2); color: var(--on-dark); }
.pcat-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 30%, rgba(40, 84, 48, 0.32), transparent 45%); pointer-events: none; }
.pcat-hero::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px); background-size: 48px 48px; -webkit-mask-image: linear-gradient(180deg, #000, transparent 85%); mask-image: linear-gradient(180deg, #000, transparent 85%); pointer-events: none; }
.pcat-hero .container { position: relative; z-index: 1; }
.pcat-hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr); align-items: center; gap: 70px; padding-bottom: 90px; }
.pcat-hero .breadcrumb { margin-bottom: 0; }
.pcat-eyebrow { display: flex; align-items: center; gap: 12px; margin: 26px 0 14px; color: var(--silver); font-family: var(--font-heading); font-size: 12.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.pcat-eyebrow::before { content: ""; flex-shrink: 0; width: 28px; height: 2px; background: var(--leaf-green); }
.pcat-hero__title { color: var(--white); font-family: var(--font-heading-caps); font-size: clamp(40px, 3.4vw + 14px, 74px); font-weight: 800; line-height: 1.04; text-transform: uppercase; }
.pcat-hero__text { max-width: 560px; margin-top: 18px; color: var(--on-dark); font-size: 17.5px; line-height: 1.7; }
.pcat-hero__btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.pcat-tiles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.pcat-tiles li:nth-child(even) { transform: translateY(40px); }
.pcat-tile { position: relative; display: block; overflow: hidden; aspect-ratio: 4 / 5; border-radius: var(--radius-card); background: var(--charcoal); color: var(--white); }
.pcat-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.pcat-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.8)); pointer-events: none; }
.pcat-tile:hover { color: var(--white); }
.pcat-tile:hover img { transform: scale(1.06); }
.pcat-tile__label { position: absolute; right: 16px; bottom: 14px; left: 16px; z-index: 1; display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; }
.pcat-tile__label small { display: block; margin-bottom: 4px; color: rgba(255, 255, 255, 0.78); font-size: 10.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.pcat-tile__label strong { display: block; color: var(--white); font-family: var(--font-heading); font-size: 17px; font-weight: 800; line-height: 1.2; }
.pcat-tile__label .icon { flex-shrink: 0; width: 34px; height: 34px; padding: 8px; border-radius: 50%; background: var(--arpan-green); color: var(--white); transition: transform 0.3s ease; }
.pcat-tile:hover .pcat-tile__label .icon { transform: translateX(3px); }
.pcat-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid rgba(255, 255, 255, 0.12); }
.pcat-stats > div { display: flex; flex-direction: column-reverse; justify-content: flex-end; gap: 6px; padding: 28px 24px; }
.pcat-stats > div:first-child { padding-left: 0; }
.pcat-stats > div + div { border-left: 1px solid rgba(255, 255, 255, 0.12); }
.pcat-stats dd { color: var(--white); font-family: var(--font-heading); font-size: 34px; font-weight: 800; line-height: 1; }
.pcat-stats dt { color: var(--on-dark-muted); font-size: 12.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }

/* ---------- Catalogue: sticky filter bar ---------- */
.pcat { scroll-margin-top: 80px; background: var(--light-bg); }
.pcat-bar { position: sticky; top: 80px; z-index: 80; border-bottom: 1px solid var(--border); background: rgba(255, 255, 255, 0.97); box-shadow: 0 14px 30px -26px rgba(0, 0, 0, 0.4); transition: top 0.4s var(--ease); }
@supports (backdrop-filter: blur(1px)) { .pcat-bar { background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(12px); } }
.no-js .pcat-bar { display: none; }
.pcat-bar__inner { display: flex; align-items: center; gap: 14px 24px; padding-top: 14px; padding-bottom: 14px; }
.pcat-filter { display: flex; gap: 8px; min-width: 0; overflow-x: auto; scrollbar-width: none; }
.pcat-filter::-webkit-scrollbar { display: none; }
.pcat-filter__btn { display: inline-flex; flex-shrink: 0; align-items: center; gap: 10px; padding: 10px 14px; border: 1px solid var(--border); border-radius: var(--radius-btn); background: var(--white); color: var(--charcoal); font-family: var(--font-heading); font-size: 12.5px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; white-space: nowrap; cursor: pointer; transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease; }
.pcat-filter__btn span { display: inline-grid; place-items: center; min-width: 26px; height: 22px; padding: 0 6px; border-radius: 4px; background: var(--light-bg); color: var(--text); font-size: 11.5px; letter-spacing: 0.04em; }
.pcat-filter__btn:hover { border-color: var(--charcoal); }
.pcat-filter__btn[aria-pressed="true"] { border-color: var(--charcoal); background: var(--charcoal); color: var(--white); }
.pcat-filter__btn[aria-pressed="true"] span { background: var(--arpan-green); color: var(--white); }
.pcat-search { position: relative; flex: 0 1 260px; margin-left: auto; }
.pcat-search .icon { position: absolute; top: 50%; left: 14px; width: 18px; height: 18px; color: var(--text-light); transform: translateY(-50%); pointer-events: none; }
.pcat-search__input { width: 100%; height: 44px; padding: 0 14px 0 42px; border: 1px solid var(--border); border-radius: var(--radius-btn); background: var(--light-bg); color: var(--charcoal); font-size: 14.5px; }
.pcat-search__input::placeholder { color: var(--text-light); }
.pcat-search__input:focus { border-color: var(--charcoal); outline: 2px solid var(--arpan-green); outline-offset: 1px; background: var(--white); }
.pcat-bar__status { flex-shrink: 0; color: var(--text-light); font-family: var(--font-heading); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
@media (min-width: 992px) and (max-width: 1199px) { .pcat-bar__status { display: none; } .pcat-search { flex-basis: 220px; } }

/* ---------- Catalogue: category groups and product cards ---------- */
.pcat__body { padding-top: 64px; padding-bottom: 100px; }
.pcat-group + .pcat-group { margin-top: 72px; }
.pcat-group[hidden], .pcat-grid > li[hidden] { display: none !important; }
.pcat-group__head { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 14px 22px; margin-bottom: 28px; padding-bottom: 22px; border-bottom: 1px solid var(--border); }
.pcat-group__num { display: grid; flex-shrink: 0; place-items: center; width: 56px; height: 56px; border-radius: 14px; background: var(--arpan-green); color: var(--white); font-family: var(--font-heading); font-size: 18px; font-weight: 800; }
.pcat-group__head > div { flex: 1 1 380px; }
.pcat-group__title { font-size: clamp(24px, 1vw + 18px, 32px); font-weight: 800; line-height: 1.2; }
.pcat-group__text { margin-top: 6px; color: var(--text); font-size: 15px; }
.pcat-group__count { color: var(--arpan-green); font-family: var(--font-heading); font-size: 12.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.pcat-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.pcat-grid > li { display: flex; }
.pcat-card { display: grid; grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr); width: 100%; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-card); background: var(--white); transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease; }
.pcat-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pcat-card__media { position: relative; display: block; overflow: hidden; min-height: 280px; background: var(--light-bg); }
.pcat-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.pcat-card:hover .pcat-card__media img { transform: scale(1.06); }
.pcat-card__num { position: absolute; top: 14px; left: 14px; padding: 5px 10px; border-radius: 4px; background: rgba(34, 34, 34, 0.85); color: var(--white); font-family: var(--font-heading); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; }
.pcat-card__body { display: flex; flex-direction: column; padding: 26px 26px 24px; }
.pcat-card__cat { color: var(--arpan-green); font-family: var(--font-heading); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.pcat-card__title { margin-top: 8px; font-size: 22px; font-weight: 800; line-height: 1.25; }
.pcat-card__title a { color: var(--charcoal); }
.pcat-card__title a:hover { color: var(--arpan-green); }
.pcat-card__text { margin-top: 8px; color: var(--text); font-size: 14.5px; line-height: 1.6; }
.pcat-card__facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 18px; padding: 14px 0; border-top: 1px dashed var(--border); border-bottom: 1px dashed var(--border); }
.pcat-card__facts dt { color: var(--text-light); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.pcat-card__facts dd { margin-top: 3px; color: var(--charcoal); font-family: var(--font-heading); font-size: 14px; font-weight: 700; line-height: 1.35; overflow-wrap: anywhere; }
.pcat-card__chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.pcat-card__chips li { padding: 5px 10px; border: 1px solid transparent; border-radius: 4px; background: var(--light-bg); color: var(--charcoal); font-size: 12.5px; font-weight: 600; line-height: 1.35; }
.pcat-card__chips li.is-more { border-color: var(--silver); border-style: dashed; background: transparent; color: var(--text-light); }
.pcat-card__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 20px; margin-top: auto; padding-top: 22px; }
.pcat-card__quote { display: inline-flex; align-items: center; gap: 6px; color: var(--arpan-green); font-family: var(--font-heading); font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.pcat-card__quote:hover { color: var(--leaf-green); }
.pcat-card__quote .icon { width: 14px; height: 14px; stroke-width: 2.4; transition: transform 0.25s ease; }
.pcat-card__quote:hover .icon { transform: translateX(3px); }
.pcat-empty { margin-top: 10px; padding: 50px 20px; border: 1px dashed var(--silver); border-radius: var(--radius-card); background: var(--white); color: var(--text); text-align: center; }
.pcat-empty a { color: var(--arpan-green); font-weight: 600; }

/* ---------- Export documentation ---------- */
.pcat-docs { background: var(--white); }
.pcat-docs__grid { display: grid; grid-template-columns: minmax(0, 0.38fr) minmax(0, 1fr); align-items: start; gap: 60px; }
.pcat-docs__intro { position: sticky; top: 120px; }
.pcat-docs__intro .pcat-eyebrow { margin-top: 0; color: var(--arpan-green); }
.pcat-docs__title { font-size: clamp(28px, 1.3vw + 20px, 42px); font-weight: 800; line-height: 1.15; }
.pcat-docs__text { margin-top: 16px; color: var(--text); font-size: 16px; }
.pcat-docs__intro .btn { margin-top: 26px; }
.pcat-docs__list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.pcat-docs__list li { display: flex; flex-direction: column; gap: 8px; padding: 22px; border: 1px solid var(--border); border-radius: 12px; background: var(--white); transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease; }
.pcat-docs__list li:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.pcat-docs__num { color: var(--arpan-green); font-family: var(--font-heading); font-size: 13px; font-weight: 800; letter-spacing: 0.06em; }
.pcat-docs__list strong { color: var(--charcoal); font-family: var(--font-heading); font-size: 15.5px; font-weight: 700; line-height: 1.35; }
.pcat-docs__note { color: var(--text-light); font-size: 13.5px; line-height: 1.55; }

/* ---------- Quote card with quick links ---------- */
.pcat-quote { padding: 0 0 100px; background: var(--white); }
.pcat-quote__card { position: relative; overflow: hidden; padding: 56px 60px; border-radius: 20px; background: linear-gradient(135deg, var(--arpan-green), var(--leaf-green) 150%); color: var(--white); }
.pcat-quote__card::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1.2px, transparent 1.2px); background-size: 18px 18px; -webkit-mask-image: linear-gradient(90deg, transparent 45%, #000); mask-image: linear-gradient(90deg, transparent 45%, #000); pointer-events: none; }
.pcat-quote__head, .pcat-quote__quick { position: relative; z-index: 1; }
.pcat-quote__head { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 24px 40px; }
.pcat-quote .pcat-eyebrow { margin-top: 0; color: rgba(255, 255, 255, 0.88); }
.pcat-quote .pcat-eyebrow::before { background: var(--white); }
.pcat-quote__title { color: var(--white); font-size: clamp(26px, 1.4vw + 18px, 40px); font-weight: 800; line-height: 1.2; }
.pcat-quote__text { max-width: 560px; margin-top: 10px; color: rgba(255, 255, 255, 0.92); }
.pcat-quote__quick { margin-top: 36px; padding-top: 28px; border-top: 1px solid rgba(255, 255, 255, 0.24); }
.pcat-quote__label { margin-bottom: 14px; color: rgba(255, 255, 255, 0.88); font-family: var(--font-heading); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.pcat-quote__links { display: flex; flex-wrap: wrap; gap: 10px; }
.pcat-quote__links a { display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border: 1px solid rgba(255, 255, 255, 0.45); border-radius: var(--radius-btn); color: var(--white); font-size: 14px; font-weight: 600; transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease; }
.pcat-quote__links a:hover { border-color: var(--white); background: var(--white); color: var(--arpan-green); }
.pcat-quote__links .icon { width: 14px; height: 14px; stroke-width: 2.4; }

/* ---------- Responsive ---------- */
@media (max-width: 1199px) {
  .pcat-hero__grid { gap: 44px; }
  .pcat-grid { grid-template-columns: minmax(0, 1fr); }
  .pcat-card { grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr); }
  .pcat-docs__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 991px) {
  .pcat-hero__grid { grid-template-columns: minmax(0, 1fr); padding-bottom: 50px; }
  .pcat-tiles { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
  .pcat-tiles li:nth-child(even) { transform: none; }
  .pcat-tile { aspect-ratio: 3 / 4; }
  .pcat-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pcat-stats > div:nth-child(odd) { padding-left: 0; border-left: 0; }
  .pcat-stats > div:nth-child(n + 3) { border-top: 1px solid rgba(255, 255, 255, 0.12); }
  .pcat-bar__inner { flex-wrap: wrap; }
  .pcat-search { flex: 1 1 100%; order: 3; margin-left: 0; }
  .pcat-bar__status { margin-left: auto; }
  .pcat-docs__grid { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .pcat-docs__intro { position: static; }
  .pcat-quote__head { grid-template-columns: minmax(0, 1fr); }
  body:has(.main-header__bar.is-tucked) .pcat-bar { top: 0; }
}
@media (max-width: 767px) {
  .pcat-bar { top: 66px; }
  .pcat-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pcat-tile { aspect-ratio: 4 / 3; }
  .pcat-card { grid-template-columns: minmax(0, 1fr); }
  .pcat-card__media { min-height: 0; aspect-ratio: 16 / 10; }
}
@media (max-width: 575px) {
  .pcat-hero__btns .btn { width: 100%; }
  .pcat-tile__label strong { font-size: 15px; }
  .pcat-tile__label .icon { display: none; }
  .pcat-stats > div { padding: 20px 14px; }
  .pcat-stats > div:nth-child(odd) { padding-left: 0; }
  .pcat-stats dd { font-size: 28px; }
  .pcat-bar__status { display: none; }
  .pcat__body { padding-top: 40px; padding-bottom: 70px; }
  .pcat-group__num { width: 46px; height: 46px; font-size: 16px; }
  .pcat-card__body { padding: 22px 20px; }
  .pcat-docs__list { grid-template-columns: minmax(0, 1fr); }
  .pcat-quote { padding-bottom: 70px; }
  .pcat-quote__card { padding: 36px 24px; }
  .pcat-quote__head .btn { width: 100%; }
}

/* ==========================================================================
   CLIENT REVISION (September 2026)
   Lighter visual system, client photography, public Gallery,
   floating WhatsApp and translation controls. Overrides earlier rules by section.
   ========================================================================== */
:root {
  --warm-white: #faf8f1;
  --warm-bg: #f4efe1;
  --warm-line: #e6dcc3;
}

/* ---------- Pages with a light top section (Products, product pages): solid header strip ---------- */
.header-solid .main-header { position: relative; min-height: var(--header-offset); background: var(--charcoal); }
.header-solid .breadcrumb { color: var(--text); }
.header-solid .breadcrumb a:hover, .header-solid .breadcrumb [aria-current="page"] { color: var(--charcoal); }

/* ---------- Photo overlays: lighter, so photographs keep their colour ---------- */
.page-header::before { background: linear-gradient(90deg, rgba(26, 26, 26, 0.82) 0%, rgba(26, 26, 26, 0.5) 50%, rgba(26, 26, 26, 0.1) 100%); }
.main-slider__overlay { background: linear-gradient(90deg, rgba(20, 20, 20, 0.78) 0%, rgba(20, 20, 20, 0.42) 55%, rgba(20, 20, 20, 0.08) 100%); }
.product-card__num, .pcat-card__num { background: rgba(255, 255, 255, 0.95); color: var(--arpan-green); }

/* ---------- Home: Why Arpan Exports ---------- */
.why-choose__chevrons span:nth-child(2) { background: var(--leaf-green); }

/* ---------- Call-to-action strips (Home, About, Contact): light ---------- */
.cta-one { background: var(--warm-bg); color: var(--text); }
.cta-one__bg { display: none; }
.cta-one__icon { background: var(--white); color: var(--arpan-green); }
.cta-one__title { color: var(--charcoal); }
.cta-one__meta { color: var(--charcoal); }
.cta-one__meta a:hover { color: var(--arpan-green); }

/* ---------- Home: Product in Focus: light card ---------- */
.focus-item { border: 1px solid var(--border); background: var(--white); color: var(--text); }
.focus-item__media { background: var(--light-bg); }
.focus-item__num span { color: var(--text-light); }
.focus-item__title { color: var(--charcoal); }
.focus-item__facts { border-color: var(--border); background: var(--border); }
.focus-item__facts > div { background: var(--warm-white); }
.focus-item__facts dt { color: var(--text-light); }
.focus-item__facts dd { color: var(--charcoal); }

/* ---------- Home: Our Heritage: light panel, natural-colour photograph ---------- */
.heritage__box:not(.heritage__box--wide) { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr); background: var(--warm-bg); color: var(--text); }
.heritage__image { width: 100%; height: auto; aspect-ratio: 5 / 4; }
.heritage__image::before { inset: auto auto -18px -18px; width: 60%; height: 70%; border: 0; border-radius: var(--radius-card); background: var(--arpan-green); animation: none; }
.heritage__image img { position: relative; border: 0; border-radius: var(--radius-card); box-shadow: var(--shadow-lg); }
.heritage__place { color: var(--text-light); }
@media (max-width: 1199px) {
  .heritage__box:not(.heritage__box--wide) { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr); }
  .heritage__image { width: 100%; height: auto; }
}
@media (max-width: 991px) {
  .heritage__box:not(.heritage__box--wide) { grid-template-columns: minmax(0, 1fr); }
  .heritage__image { width: auto; max-width: 560px; height: auto; margin: 0 0 12px 18px; }
}

/* ---------- About: Vision & Mission: light ---------- */
.purpose { background: var(--white); color: var(--text); }
.purpose::before { background-image: radial-gradient(rgba(34, 34, 34, 0.07) 1px, transparent 1px); }
.purpose__route { color: var(--arpan-green); opacity: 0.22; }
.purpose__block { border-color: var(--warm-line); background: var(--warm-bg); }
.purpose__label { color: var(--arpan-green); }
.purpose__text { color: var(--charcoal); }

/* ---------- About: Milestones: light panel ---------- */
.heritage__box--wide { background: var(--warm-bg); color: var(--text); }
.heritage__box--wide .sec-title__text { color: var(--text); }
.milestones__track::before { border-top-color: rgba(34, 34, 34, 0.16); }
.milestone__node { border-color: var(--warm-line); background: var(--white); color: var(--arpan-green); box-shadow: none; }
.milestone__title { color: var(--charcoal); }
@media (max-width: 991px) { .milestones__track::before { border-left-color: rgba(34, 34, 34, 0.16); } }

/* ---------- Enquiry section and contact cards ---------- */
.contact-one__media { background: var(--light-bg); }
.contact-one__panel { border: 1px solid var(--border); background: rgba(255, 255, 255, 0.96); color: var(--charcoal); box-shadow: var(--shadow-lg); }
.contact-one__panel-label { color: var(--text-light); }
.contact-one__panel a { color: var(--charcoal); }
.contact-one__panel a:hover { color: var(--arpan-green); }
.contact-info__icon { background: var(--arpan-green); }

/* ---------- Products page: light hero ---------- */
.header-solid .pcat-hero { padding-top: 60px; background: var(--warm-bg); color: var(--text); }
.header-solid .pcat-hero::before { background: radial-gradient(circle at 85% 20%, rgba(40, 84, 48, 0.07), transparent 45%); }
.header-solid .pcat-hero::after { background-image: linear-gradient(rgba(34, 34, 34, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(34, 34, 34, 0.03) 1px, transparent 1px); }
.header-solid .pcat-hero .pcat-eyebrow { color: var(--arpan-green); }
.header-solid .pcat-hero__title { color: var(--charcoal); }
.header-solid .pcat-hero__text { color: var(--text); }
.header-solid .pcat-stats { border-top-color: var(--warm-line); }
.header-solid .pcat-stats > div + div { border-left-color: var(--warm-line); }
.header-solid .pcat-stats dd { color: var(--charcoal); }
.header-solid .pcat-stats dt { color: var(--text-light); }
.pcat-tile::after { background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.58)); }
@media (max-width: 991px) { .header-solid .pcat-stats > div:nth-child(n + 3) { border-top-color: var(--warm-line); } }

/* ---------- Product pages: light hero ---------- */
.page-product .pdx-hero { background: var(--warm-bg); color: var(--text); }
.page-product .pdx-hero::before { background: radial-gradient(circle at 5% 100%, rgba(40, 84, 48, 0.07), transparent 45%); }
.page-product .pdx-hero__inner { min-height: 640px; padding-top: 56px; }
.page-product .pdx-hero__media::after { background: linear-gradient(90deg, var(--warm-bg), transparent 14%); }
.page-product .pdx-hero__watermark { top: 26px; -webkit-text-stroke: 1px rgba(34, 34, 34, 0.08); }
.page-product .pdx-eyebrow { color: var(--text-light); }
.page-product .pdx-hero__title { color: var(--charcoal); }
.page-product .pdx-hero__tagline { color: var(--text); }
.page-product .pdx-facts { border-top-color: var(--warm-line); }
.page-product .pdx-facts > div { border-bottom-color: var(--warm-line); }
.page-product .pdx-facts > div:nth-child(even) { border-left-color: var(--warm-line); }
.page-product .pdx-facts .icon { color: var(--arpan-green); }
.page-product .pdx-facts dt, .page-product .pdx-facts dd small { color: var(--text-light); }
.page-product .pdx-facts dd { color: var(--charcoal); }
@media (max-width: 1199px) { .page-product .pdx-hero__inner { min-height: 600px; } }
@media (max-width: 991px) {
  .page-product .pdx-hero__inner { min-height: 0; padding: 40px 0 36px; }
  .page-product .pdx-hero__media::after { background: none; }
  .page-product .pdx-hero__watermark { top: 20px; }
}

/* ---------- Product pages: varieties with client photographs (Pulses) ---------- */
.pdx-group--visual { grid-column: 1 / -1; padding: 0; border: 0; background: transparent; }
.pdx-group--visual .pdx-group__title { margin-bottom: 22px; }
.pdx-varieties { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 20px; }
.pdx-variety { overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-card); background: var(--white); transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease; }
.pdx-variety:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pdx-variety__media { display: block; overflow: hidden; aspect-ratio: 4 / 5; background: var(--light-bg); }
.pdx-variety__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.pdx-variety:hover .pdx-variety__media img { transform: scale(1.05); }
.pdx-variety__body { display: flex; align-items: baseline; gap: 10px; padding: 16px 18px 18px; }
.pdx-variety__num { flex-shrink: 0; color: var(--arpan-green); font-family: var(--font-heading); font-size: 12px; font-weight: 800; letter-spacing: 0.06em; }
.pdx-variety__name { color: var(--charcoal); font-size: 17px; font-weight: 800; line-height: 1.3; }
@media (max-width: 575px) {
  .pdx-varieties { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .pdx-variety__body { gap: 8px; padding: 12px 12px 14px; }
  .pdx-variety__name { font-size: 15px; }
}

/* ---------- Product pages: light quality section, packing panel, more products, red CTA ---------- */
.page-product .pdx-quality__params { border-color: var(--border); background: var(--warm-white); }
.page-product .pdx-quality__compliance { border-color: var(--border); }
.page-product .pdx-checks--dark li { color: var(--charcoal); }
.page-product .pdx-checks--dark .icon { background: rgba(40, 84, 48, 0.1); color: var(--arpan-green); }
.page-product .pdx-chips--dark li { border-color: var(--silver); background: var(--white); color: var(--charcoal); }
.page-product #quality .pdx-label { color: var(--text-light); }
.page-product #quality .pdx-quality__control .pdx-label { color: rgba(255, 255, 255, 0.85); }
.pdx-pack__meta { border: 1px solid var(--border); background: var(--warm-white); color: var(--text); }
.pdx-pack__meta > div + div { border-top-color: var(--border); }
.pdx-pack__meta dt { color: var(--text-light); }
.pdx-pack__meta dd { color: var(--charcoal); }
.pdx-pack__meta .pdx-chips li { border-color: var(--silver); background: var(--white); color: var(--charcoal); }
.pdx-tiles li:hover { background: var(--white); box-shadow: inset 0 0 0 1px var(--arpan-green); color: var(--charcoal); }
.page-product .pdx-more { border-top: 1px solid var(--border); background: var(--white); }
.page-product .pdx-cta { padding-top: 10px; }
.page-product .pdx-cta__card { background: linear-gradient(135deg, var(--arpan-green), var(--leaf-green) 150%); }
.page-product .pdx-cta__card::before { display: none; }
.page-product .pdx-cta__card::after { background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1.2px, transparent 1.2px); }
.page-product .pdx-cta__eyebrow { color: rgba(255, 255, 255, 0.88); }
.page-product .pdx-cta__text { color: rgba(255, 255, 255, 0.92); }

/* ---------- Gallery ---------- */
.gallery__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px 40px; margin-bottom: 44px; }
.gallery__head .sec-title { margin-bottom: 0; }
.filter-tabs__btn span { margin-left: 8px; padding: 1px 7px; border-radius: 4px; background: rgba(34, 34, 34, 0.08); font-size: 11px; }
.filter-tabs__btn.is-active span { background: rgba(255, 255, 255, 0.22); }
.gallery__grid { columns: 3; column-gap: 22px; }
.gallery-item { margin: 0 0 22px; break-inside: avoid; }
.gallery-item.is-hidden { display: none; }
.gallery-item.is-entering { animation: zoomIn 0.6s var(--ease) both; }
.gallery-item__link { display: block; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-card); background: var(--white); color: var(--charcoal); cursor: zoom-in; transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.gallery-item__link:hover, .gallery-item__link:focus-visible { border-color: transparent; box-shadow: var(--shadow-lg); }
.gallery-item__link:focus-visible { outline: 3px solid var(--arpan-green); outline-offset: 3px; }
.gallery-item__media { position: relative; display: block; overflow: hidden; background: var(--light-bg); }
.gallery-item__media img { display: block; width: 100%; height: auto; transition: transform 0.8s var(--ease); }
.gallery-item__link:hover .gallery-item__media img { transform: scale(1.04); }
.gallery-item__zoom { position: absolute; top: 14px; right: 14px; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--white); box-shadow: var(--shadow); color: var(--arpan-green); opacity: 0; transform: translateY(-6px); transition: opacity 0.3s ease, transform 0.3s ease; }
.gallery-item__link:hover .gallery-item__zoom, .gallery-item__link:focus-visible .gallery-item__zoom { opacity: 1; transform: none; }
.gallery-item__zoom .icon { width: 18px; height: 18px; stroke-width: 2.2; }
.gallery-item__caption { display: flex; flex-direction: column; gap: 3px; padding: 14px 18px 16px; }
.gallery-item__cat { color: var(--arpan-green); font-family: var(--font-heading); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.gallery-item__title { color: var(--charcoal); font-family: var(--font-heading); font-size: 16px; font-weight: 700; line-height: 1.35; }
@media (max-width: 991px) {
  .gallery__grid { columns: 2; column-gap: 16px; }
  .gallery-item { margin-bottom: 16px; }
}
@media (max-width: 480px) { .gallery__grid { columns: 1; } }

/* ---------- Floating controls: WhatsApp (bottom right), translation (bottom left), back to top above WhatsApp ---------- */
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: #25d366; box-shadow: 0 10px 26px -8px rgba(0, 0, 0, 0.4); color: var(--white); transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease; }
.whatsapp-float:hover { background: #1ebe5b; box-shadow: 0 14px 30px -8px rgba(0, 0, 0, 0.45); color: var(--white); transform: translateY(-2px); }
.whatsapp-float:focus-visible { outline: 3px solid var(--charcoal); outline-offset: 3px; }
.whatsapp-float .icon { width: 30px; height: 30px; }
.scroll-to-top, .scroll-to-top.is-shown { right: 27px; bottom: 92px; }
.translate { position: fixed; left: 22px; bottom: 22px; z-index: 90; }
.translate__toggle { display: flex; align-items: center; gap: 8px; height: 48px; padding: 0 16px 0 13px; border: 1px solid var(--border); border-radius: 24px; background: rgba(255, 255, 255, 0.97); box-shadow: 0 10px 26px -10px rgba(0, 0, 0, 0.3); color: var(--charcoal); font-family: var(--font-heading); font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; cursor: pointer; transition: border-color 0.25s ease; }
.translate__toggle:hover, .translate__toggle[aria-expanded="true"] { border-color: var(--arpan-green); }
.translate__toggle:focus-visible { outline: 3px solid var(--arpan-green); outline-offset: 2px; }
.translate__toggle .icon { width: 22px; height: 22px; color: var(--arpan-green); stroke-width: 1.8; }
.translate__panel { position: absolute; bottom: calc(100% + 10px); left: 0; width: min(320px, calc(100vw - 44px)); max-height: min(430px, 70vh); overflow-y: auto; padding: 14px; border: 1px solid var(--border); border-radius: 14px; background: var(--white); box-shadow: var(--shadow-lg); }
.translate__title { margin: 2px 6px 10px; color: var(--text-light); font-family: var(--font-heading); font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.translate__list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2px; }
.translate__list button { width: 100%; padding: 9px 10px; border: 0; border-radius: 8px; background: transparent; color: var(--charcoal); font-size: 14px; line-height: 1.3; text-align: left; cursor: pointer; }
.translate__list button:hover { background: var(--light-bg); }
.translate__list button:focus-visible { outline: 2px solid var(--arpan-green); outline-offset: -2px; }
.translate__list button[aria-current="true"] { background: rgba(40, 84, 48, 0.08); color: var(--arpan-green); font-weight: 700; }
.translate__note { margin: 10px 6px 2px; color: var(--text-light); font-size: 12px; line-height: 1.5; }
#google_translate_element { display: none; }
@media (max-width: 575px) {
  .whatsapp-float { right: 16px; bottom: 16px; width: 50px; height: 50px; }
  .whatsapp-float .icon { width: 27px; height: 27px; }
  .scroll-to-top, .scroll-to-top.is-shown { right: 18px; bottom: 78px; }
  .translate { left: 16px; bottom: 16px; }
  .translate__toggle { height: 44px; padding: 0 13px 0 11px; }
  .translate__panel { width: min(300px, calc(100vw - 32px)); }
}
@media print { .whatsapp-float, .translate { display: none !important; } }

/* Google Translate adds its own bar and tooltips; keep them hidden so the layout never shifts */
body { top: 0 !important; }
.goog-te-banner-frame, iframe.skiptranslate, body > .skiptranslate, #goog-gt-tt, .goog-te-balloon-frame, .goog-tooltip,
.VIpgJd-ZVi9od-ORHb-OEVmcd, .VIpgJd-ZVi9od-aZ2wEe-wOHMyf, .VIpgJd-yAWNEb-L7lbkb { display: none !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }

/* ---------- Revision QA: lighter controls in place of charcoal ---------- */
.pillar-list .icon { background: rgba(40, 84, 48, 0.08); color: var(--arpan-green); }
.pillar-list li:hover .icon { background: var(--arpan-green); color: var(--white); }
.pcat-filter__btn:hover { border-color: var(--arpan-green); }
.pcat-filter__btn[aria-pressed="true"] { border-color: var(--arpan-green); background: var(--arpan-green); color: var(--white); }
.pcat-filter__btn[aria-pressed="true"] span { background: rgba(255, 255, 255, 0.22); color: var(--white); }

/* ---------- Pulses varieties: four across, closing with a quote tile; other groups full width below ---------- */
.pdx-varieties { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.pdx-group--visual ~ .pdx-group { grid-column: 1 / -1; }
.pdx-group--visual ~ .pdx-group .pdx-tiles { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.pdx-variety--ask { border-color: transparent; background: linear-gradient(145deg, var(--arpan-green), var(--leaf-green) 150%); }
.pdx-variety--ask:hover { border-color: transparent; }
.pdx-variety__ask { display: flex; flex-direction: column; justify-content: flex-end; gap: 8px; height: 100%; min-height: 220px; padding: 24px 22px; color: var(--white); }
.pdx-variety__ask > .icon { width: 44px; height: 44px; margin-bottom: auto; padding: 10px; border-radius: 12px; background: rgba(255, 255, 255, 0.16); color: var(--white); }
.pdx-variety__ask strong { color: var(--white); font-family: var(--font-heading); font-size: 20px; font-weight: 800; line-height: 1.25; }
.pdx-variety__ask > span:not(.pdx-variety__ask-link) { color: rgba(255, 255, 255, 0.9); font-size: 14.5px; line-height: 1.55; }
.pdx-variety__ask-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; color: var(--white); font-family: var(--font-heading); font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.pdx-variety__ask-link .icon { width: 16px; height: 16px; transition: transform 0.25s ease; }
.pdx-variety__ask:hover .pdx-variety__ask-link .icon { transform: translateX(4px); }
.pdx-variety__ask:focus-visible { outline: 3px solid var(--charcoal); outline-offset: 3px; }
@media (min-width: 768px) and (max-width: 991px) {
  .pdx-varieties { gap: 14px; }
  .pdx-variety__body { gap: 8px; padding: 12px 12px 14px; }
  .pdx-variety__name { font-size: 15px; }
  .pdx-variety__ask { min-height: 0; padding: 16px 14px; }
  .pdx-variety__ask > .icon { width: 38px; height: 38px; padding: 8px; }
  .pdx-variety__ask strong { font-size: 16px; }
  .pdx-variety__ask > span:not(.pdx-variety__ask-link) { display: none; }
  .pdx-variety__ask-link { font-size: 11px; white-space: nowrap; }
}
@media (max-width: 767px) { .pdx-varieties { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; } }
@media (max-width: 575px) {
  .pdx-variety__ask { min-height: 0; padding: 16px 14px; }
  .pdx-variety__ask > .icon { width: 38px; height: 38px; padding: 8px; }
  .pdx-variety__ask strong { font-size: 16px; }
  .pdx-variety__ask > span:not(.pdx-variety__ask-link) { font-size: 13px; }
  .pdx-variety__ask-link { font-size: 11px; }
}

/* ---------- Gallery: compact pill filters, even photo heights, two columns on phones ---------- */
.page-gallery .filter-tabs { gap: 8px; }
.page-gallery .filter-tabs__btn { display: inline-flex; align-items: center; padding: 10px 14px; border-radius: 30px !important; font-size: 12px; letter-spacing: 0.05em; white-space: nowrap; }
.page-gallery .filter-tabs__btn span { margin-left: 7px; }
.gallery-item__media { container-type: inline-size; }
.gallery-item__media img { max-height: 125cqi; object-fit: cover; }
@media (min-width: 992px) and (max-width: 1199px) { .page-gallery .filter-tabs__btn span { display: none; } }
@media (max-width: 991px) {
  .page-gallery .filter-tabs { flex-wrap: nowrap; overflow-x: auto; margin: 0 -15px; padding: 0 15px 4px; scrollbar-width: none; }
  .page-gallery .filter-tabs::-webkit-scrollbar { display: none; }
  .page-gallery .filter-tabs__btn { flex-shrink: 0; }
  .gallery__head { margin-bottom: 28px; }
}
@media (max-width: 575px) {
  .gallery__grid { columns: 2; column-gap: 12px; }
  .gallery-item { margin-bottom: 12px; }
  .gallery-item__caption { gap: 2px; padding: 10px 12px 12px; }
  .gallery-item__cat { font-size: 9.5px; letter-spacing: 0.1em; }
  .gallery-item__title { font-size: 13.5px; }
  .gallery-item__zoom { display: none; }
}
@media (max-width: 359px) { .gallery__grid { columns: 1; } }

/* Section intros stack on tablets so the text never sits above its heading */
@media (max-width: 991px) { .section-head { grid-template-columns: minmax(0, 1fr); gap: 16px; margin-bottom: 38px; } }

/* Keep the copyright line clear of the floating translation and WhatsApp buttons */
@media (max-width: 1399px) { .main-footer__bottom-inner { padding-bottom: 90px; } }
@media (max-width: 575px) { .main-footer__bottom-inner { padding-bottom: 80px; } }

/* 404: let the photograph show through more */
.error-page::before { background: linear-gradient(90deg, rgba(26, 26, 26, 0.82), rgba(26, 26, 26, 0.3)); }

/* Back to top: the compact round button at every width, stacked above the WhatsApp button */
.scroll-to-top { justify-content: center; gap: 0; width: 46px; height: 46px; border: 1px solid var(--border); border-radius: 50%; background: var(--white); box-shadow: var(--shadow-lg); color: var(--arpan-green); transform: translateY(8px); }
.scroll-to-top.is-shown { transform: none; }
.scroll-to-top:hover, .scroll-to-top:focus-visible { border-color: var(--arpan-green); background: var(--arpan-green); color: var(--white); }
.scroll-to-top::before { content: ""; width: 11px; height: 11px; margin-top: 5px; border-top: 2.5px solid currentColor; border-left: 2.5px solid currentColor; transform: rotate(45deg); }
.scroll-to-top__text, .scroll-to-top__wrapper { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Product hero eyebrow: uppercase fallback metrics and tighter tracking on phones, so the line does not wrap while the web font loads */
.pdx-eyebrow { font-family: var(--font-heading-caps); }
@media (max-width: 575px) { .pdx-eyebrow { gap: 8px 10px; letter-spacing: 0.1em; } }

/* ---------- Brand palette: the beige and light green on their own surfaces ---------- */
/* The warm beige carries the call-to-action strip, the heritage panel and the milestones band. */
.cta-one { background: var(--warm-beige); }
.cta-one__icon { background: var(--white); color: var(--arpan-green); }
.heritage__box:not(.heritage__box--wide), .heritage__box--wide { background: var(--warm-beige); }
.purpose__block { border-color: var(--warm-line); background: var(--warm-beige); }
/* Soft light-green highlights where a tint was used before */
.pillar-list .icon { background: rgba(164, 190, 123, 0.35); color: var(--arpan-green); }
.pillar-list li:hover .icon { background: var(--arpan-green); color: var(--white); }
.page-product .pdx-checks--dark .icon { background: rgba(164, 190, 123, 0.35); color: var(--arpan-green); }
.translate__list button[aria-current="true"] { background: rgba(164, 190, 123, 0.3); color: var(--arpan-green); }

/* Variety cards: three across when that fills the rows evenly (e.g. Jaggery: 5 varieties + quote card) */
@media (min-width: 992px) {
  .pdx-varieties[data-cards="3"], .pdx-varieties[data-cards="6"], .pdx-varieties[data-cards="9"] { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1200px) { .pdx-varieties[data-cards="5"] { grid-template-columns: repeat(5, minmax(0, 1fr)); } }

/* ==========================================================================
   Brand palette on the dark surfaces: header, sticky header, mobile menu,
   footer and the 404 hero now carry the deep forest green instead of charcoal.
   Colours only — structure, spacing and type are unchanged.
   ========================================================================== */
.topbar { background: rgba(31, 66, 38, 0.82); }
.header-solid .main-header { background: var(--arpan-green); }
.main-header__bar.is-sticky { background: rgba(40, 84, 48, 0.97); }
.mobile-nav__content { background: var(--arpan-green); }
/* hover plates need to lift off the green panel they sit on */
.mobile-nav__toggler:hover, .mobile-nav__close:hover { border-color: var(--leaf-green); background: var(--leaf-green); }
.social-links a:hover { border-color: var(--leaf-green); background: var(--leaf-green); color: var(--white); }
.main-footer { background: var(--arpan-green); }
.main-footer__bg { opacity: 0.08; }
.footer-widget__links a::before { background: var(--light-green); }
/* the call-to-action card sits half over the footer: the warm beige keeps it a distinct card,
   matching the beige call-to-action strip used on the pages above */
.footer-cta__inner { background: var(--warm-beige); color: var(--charcoal); box-shadow: 0 30px 60px -30px rgba(31, 66, 38, 0.55); }
.footer-cta__title { color: var(--charcoal); }
.footer-cta__text { color: var(--text); }
.footer-cta__icon { background: var(--white); color: var(--arpan-green); }
.footer-cta .btn--white { border-color: var(--arpan-green); background: var(--arpan-green); color: var(--white); }
.footer-cta .btn--white .icon { color: var(--white); }
.footer-cta .btn--white:hover { border-color: var(--deep-shade); background: var(--deep-shade); color: var(--white); }
/* buttons on green bands darken into the palette instead of turning charcoal */
.btn--white:hover { border-color: var(--deep-shade); background: var(--deep-shade); color: var(--white); }
/* 404 hero */
.error-page { background: var(--deep-shade); }
.error-page::before { background: linear-gradient(90deg, rgba(31, 66, 38, 0.88), rgba(31, 66, 38, 0.35)); }
/* text contrast on the green surfaces (4.5:1 and above) */
.main-footer { --on-dark-muted: rgba(255, 255, 255, 0.72); }
.mobile-nav__list a[aria-current="page"], .mobile-nav__list a:hover { color: var(--warm-beige); }
.mobile-nav__list a[aria-current="page"] .icon { color: var(--warm-beige); }
/* Surfaces that only show while a photograph loads, plus the keyboard skip link */
.main-slider, .page-header, .pcat-tile, .focus-item__media, .pdx-hero, .pcat-hero, .showcase__item, .contact-one__media { background-color: var(--deep-shade); }
.skip-link { background: var(--arpan-green); }
.mobile-nav__overlay { background: rgba(16, 34, 20, 0.62); }
.btn--outline:hover { border-color: var(--arpan-green); background: var(--arpan-green); color: var(--white); }
/* Header and mobile-menu call-to-action: beige on the green header so the button keeps its prominence */
.main-header__btn, .mobile-nav .btn--block { border-color: var(--warm-beige); background: var(--warm-beige); color: var(--arpan-green); }
.main-header__btn .icon, .mobile-nav .btn--block .icon { color: var(--arpan-green); }
.main-header__btn:hover, .mobile-nav .btn--block:hover { border-color: var(--light-green); background: var(--light-green); color: var(--deep-shade); }
.main-header__btn:hover .icon, .mobile-nav .btn--block:hover .icon { color: var(--deep-shade); }

/* ==========================================================================
   Micro polish: sticky-header logo spacing
   The logo (132 x 75 px) sat in an 80 px bar with 2 px of clearance. It keeps its
   size; the container gains padding and the bar grows just enough to hold it.
   The sticky offsets that follow the bar height are updated with it.
   ========================================================================== */
.main-header__bar.is-sticky .main-header__inner { height: 92px; }
.main-header__bar.is-sticky .main-header__logo { padding: 8px 14px; margin-left: -14px; }
.pdx-nav { top: 92px; }
.pdx-spec__aside { top: 188px; }
.page-product main section[id] { scroll-margin-top: 172px; }
.pcat { scroll-margin-top: 92px; }
@media (min-width: 768px) and (max-width: 1199px) {
  .main-header__bar.is-sticky .main-header__inner { height: 90px; }
  .main-header__bar.is-sticky .main-header__logo { padding: 7px 12px; margin-left: -12px; }
  .pdx-nav { top: 90px; }
}
@media (max-width: 767px) {
  .main-header__bar.is-sticky .main-header__inner { height: 74px; }
  .main-header__bar.is-sticky .main-header__logo { padding: 6px 10px; margin-left: -10px; }
  .pdx-nav { top: 74px; }
}

/* ==========================================================================
   Micro polish: "Looking for a Specific Product?" call-to-action icon
   The generic cube in a white square is replaced by the cargo-ship icon from the
   site's own icon set, in a deep-green disc. Layout, text and button unchanged.
   ========================================================================== */
/* the disc keeps its 76 px box; the old divider padding becomes margin so the heading stays put */
.footer-cta__icon { padding-right: 0; margin-right: 35px; border-right: 0; border-radius: 50%; background: var(--arpan-green); color: var(--white); box-shadow: 0 12px 24px -16px rgba(31, 66, 38, 0.9); }
.footer-cta__icon .icon { width: 38px; height: 38px; stroke-width: 1.5; }
@media (max-width: 991px) {
  .footer-cta__icon { width: 60px; height: 60px; margin-right: 0; }
  .footer-cta__icon .icon { width: 30px; height: 30px; }
}
