:root {
  --forest: #203d2b;
  --forest-2: #13291c;
  --leaf: #3e6a43;
  --sage: #829476;
  --soil: #8c653e;
  --gold: #c59a5a;
  --linen: #eee7d9;
  --cotton: #fbf8f1;
  --paper: #f6f0e5;
  --white: #fffefb;
  --ink: #17251c;
  --muted: #6f786f;
  --line: rgba(32, 61, 43, .14);
  --shadow: 0 24px 70px rgba(32, 61, 43, .14);
  --shadow-soft: 0 16px 40px rgba(32, 61, 43, .08);
  --radius-lg: 34px;
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: Manrope, system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.75;
  overflow-x: hidden
}

img {
  max-width: 100%;
  display: block
}

a {
  text-decoration: none;
  color: inherit;
  transition: .25s ease
}

button,
input,
textarea,
select {
  font: inherit
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto
}

.section {
  padding: 105px 0;
  position: relative
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .74rem;
  font-weight: 900;
  color: var(--soil);
  margin-bottom: 18px
}

.section-kicker:before {
  content: "";
  width: 44px;
  height: 1px;
  background: var(--gold)
}

.section-kicker.light {
  color: var(--gold)
}

.section-kicker.light:before {
  background: rgba(255, 255, 255, .55)
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--forest);
  line-height: .98;
  letter-spacing: -.035em
}

h1 {
  font-size: clamp(4rem, 8vw, 8.9rem)
}

h2 {
  font-size: clamp(3rem, 5vw, 5.4rem)
}

h3 {
  font-size: 2rem
}

p {
  color: var(--muted);
  font-size: 1rem
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 900;
  font-size: .83rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  border: 1px solid transparent;
  cursor: pointer
}

.btn--gold {
  background: var(--gold);
  color: #17251c;
  box-shadow: 0 16px 34px rgba(197, 154, 90, .25)
}

.btn--forest {
  background: var(--forest);
  color: var(--cotton);
  box-shadow: 0 18px 46px rgba(32, 61, 43, .2)
}

.btn--glass {
  background: rgba(255, 255, 255, .11);
  border-color: rgba(255, 255, 255, .28);
  color: var(--cotton);
  backdrop-filter: blur(10px)
}

.btn--light {
  background: var(--cotton);
  color: var(--forest)
}

.btn:hover,
.text-link:hover {
  transform: translateY(-2px)
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: var(--forest);
  font-weight: 900
}

.center-action {
  text-align: center;
  margin-top: 42px
}

.light-section {
  background: var(--cotton)
}

.dark-section {
  background: linear-gradient(135deg, var(--forest-2), #1e3f2c);
  color: var(--cotton);
  overflow: hidden
}

.dark-section:before {
  content: "";
  position: absolute;
  right: -12%;
  top: -20%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(197, 154, 90, .13);
  filter: blur(10px)
}

.dark-section h2,
.dark-section h3 {
  color: var(--cotton)
}

.dark-section p {
  color: rgba(255, 253, 248, .7)
}

.preloader {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 999;
  display: grid;
  place-items: center;
  transition: .55s ease
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden
}

.preloader div {
  text-align: center
}

.preloader span {
  display: block;
  width: 44px;
  height: 44px;
  background: var(--forest);
  border-radius: 60% 0 60% 0;
  transform: rotate(45deg);
  margin: 0 auto 14px;
  animation: pulse 1s infinite alternate
}

.preloader p {
  font-weight: 900;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--forest);
  font-size: .72rem
}

@keyframes pulse {
  to {
    transform: rotate(45deg) scale(1.15);
    opacity: .65
  }
}

.topbar {
  background: var(--forest);
  color: rgba(255, 253, 248, .78);
  font-size: .82rem
}

.topbar__row {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px
}

.topbar__row p {
  color: inherit;
  font-size: .82rem
}

.topbar__links {
  display: flex;
  gap: 22px
}

.topbar a:hover {
  color: var(--gold)
}

.main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgb(240, 233, 222);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: .25s ease
}

.main-nav.is-scrolled {
  background: rgba(246, 240, 229, .96);
  border-color: var(--line);
  box-shadow: 0 12px 34px rgba(32, 61, 43, .08)
}

.nav__row {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.brand img {
  width: 220px;
  height: 64px;
  object-fit: contain;
  object-position: center;
  border-radius: 25px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px
}

.nav-links a {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 900;
  color: var(--forest);
  padding: 10px 10px;
  border-radius: 999px
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(32, 61, 43, .08)
}

.nav-button {
  margin-left: 8px;
  background: var(--forest) !important;
  color: var(--cotton) !important;
  padding: 12px 18px !important
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  align-items: center
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--forest);
  transition: .25s
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg)
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg)
}

.hero {
  position: relative;
  min-height: calc(100vh - 42px);
  display: flex;
  align-items: center;
  color: var(--cotton);
  overflow: hidden
}

.hero__media {
  position: absolute;
  inset: 0
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.85)
}

.hero__media span {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 28, 20, .92), rgba(32, 61, 43, .65), rgba(32, 61, 43, .2))
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .9fr;
  gap: 70px;
  align-items: center;
  padding: 110px 0
}

.hero h1 {
  color: var(--cotton);
  max-width: 780px
}

.hero p {
  color: rgba(255, 253, 248, .78);
  font-size: 1.14rem;
  max-width: 690px;
  margin: 22px 0 32px
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px
}

.hero__panel {
  background: rgba(251, 248, 241, .88);
  border: 1px solid rgba(255, 255, 255, .35);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  padding: 26px;
  backdrop-filter: blur(20px);
  align-self: end
}

.hero__panel img {
  height: 105px;
  width: 100%;
  object-fit: contain;
  margin-bottom: 12px
}

.hero__panel p {
  color: var(--forest);
  font-weight: 800;
  text-align: center;
  margin: 0 0 18px;
  font-size: .95rem
}

.panel__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.panel__stats article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  text-align: center
}

.panel__stats strong {
  display: block;
  color: var(--forest);
  font-size: 2rem;
  font-family: "Cormorant Garamond", serif
}

.panel__stats span {
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
  color: var(--muted)
}

.page-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: end;
  overflow: hidden;
  color: var(--cotton)
}

.page-hero__bg {
  position: absolute;
  inset: 0
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.page-hero__bg span {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 29, 21, .94), rgba(31, 60, 42, .72), rgba(17, 29, 21, .25))
}

.page-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .55fr;
  gap: 60px;
  align-items: end;
  padding: 160px 0 85px
}

.page-hero h1 {
  color: var(--cotton)
}

.page-hero p {
  color: rgba(255, 253, 248, .75);
  font-size: 1.14rem;
  max-width: 720px;
  margin-top: 22px
}

.page-hero__stat {
  background: rgba(251, 248, 241, .92);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 30px;
  padding: 26px;
  color: var(--forest);
  box-shadow: var(--shadow)
}

.page-hero__stat strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  line-height: 1
}

.page-hero__stat span {
  display: block;
  margin-top: 8px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--soil);
  font-size: .84rem
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 76px;
  align-items: center
}

.section-copy p {
  margin-top: 16px
}

.section__head {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 48px
}

.section__head p {
  margin-top: 16px
}

.image-composition {
  position: relative;
  min-height: 620px
}

.image-main {
  position: absolute;
  right: 0;
  top: 0;
  width: 78%;
  height: 78%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow)
}

.image-float {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 54%;
  height: 44%;
  object-fit: cover;
  border: 12px solid var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow)
}

.image-badge {
  position: absolute;
  right: 26px;
  bottom: 86px;
  background: var(--forest);
  color: var(--cotton);
  border-radius: 22px;
  padding: 18px 20px;
  box-shadow: var(--shadow-soft)
}

.image-badge strong {
  display: block;
  color: var(--gold);
  font-size: 1.2rem
}

.image-badge span {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em
}

.image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  min-height: 520px
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.resource-grid a {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
  min-height: 250px
}

.resource-grid i,
.pillar-grid i,
.capability-grid i,
.cert-grid i,
.contact-cards i {
  font-size: 2rem;
  color: var(--gold)
}

.resource-grid h3,
.pillar-grid h3,
.capability-grid h3 {
  margin: 22px 0 12px
}

.resource-grid a:hover,
.product-mini-grid article:hover,
.pillar-grid article:hover,
.capability-grid article:hover,
.cert-grid article:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow)
}

.product-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.product-mini-grid article {
  position: relative;
  min-height: 360px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: .25s
}

.product-mini-grid img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover
}

.product-mini-grid article:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 28, 20, .82), transparent 65%)
}

.product-mini-grid h3 {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  color: var(--cotton);
  font-size: 1.8rem
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 30px
}

.mini-stats div,
.metric-grid article {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  padding: 20px
}

.mini-stats strong,
.metric-grid strong {
  display: block;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.3rem
}

.mini-stats span,
.metric-grid span {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
  font-size: .75rem;
  color: rgba(255, 253, 248, .7)
}

.department-list {
  display: grid;
  gap: 12px
}

.department-list a {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  padding: 18px 20px;
  color: var(--cotton);
  font-weight: 900
}

.department-list span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--forest);
  margin-right: 12px
}

.flow-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px
}

.flow-cards article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 24px;
  box-shadow: var(--shadow-soft)
}

.flow-cards span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--linen);
  color: var(--soil);
  font-weight: 900;
  margin-bottom: 24px
}

.flow-cards h3 {
  font-size: 1.7rem
}

.sustainability-home {
  background: var(--cotton)
}

.pillar-grid,
.capability-grid,
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.pillar-grid article,
.capability-grid article,
.cert-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
  transition: .25s
}

.fact-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow)
}

.fact-panel article {
  display: grid;
  grid-template-columns: .42fr .58fr;
  gap: 18px;
  padding: 18px 14px;
  border-bottom: 1px solid var(--line)
}

.fact-panel article:last-child {
  border-bottom: 0
}

.fact-panel span {
  text-transform: uppercase;
  letter-spacing: .09em;
  font-weight: 900;
  font-size: .74rem;
  color: var(--soil)
}

.fact-panel strong {
  color: var(--forest)
}

.unit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.unit-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft)
}

.unit-card img {
  height: 420px;
  width: 100%;
  object-fit: cover
}

.unit-card div {
  padding: 26px
}

.unit-card span {
  color: var(--soil);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .75rem
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.product-grid article {
  position: relative;
  min-height: 460px;
  border-radius: 30px;
  overflow: hidden;
  background: var(--forest);
  box-shadow: var(--shadow-soft)
}

.product-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s
}

.product-grid article:hover img {
  transform: scale(1.06)
}

.product-grid article:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 28, 20, .9), rgba(16, 28, 20, .08))
}

.product-grid div {
  position: absolute;
  z-index: 2;
  left: 26px;
  right: 26px;
  bottom: 26px
}

.product-grid span {
  color: var(--gold);
  font-weight: 900
}

.product-grid h3 {
  color: var(--cotton);
  margin: 10px 0
}

.product-grid p {
  color: rgba(255, 253, 248, .73)
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.check-list article {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  font-weight: 800
}

.check-list i {
  color: var(--gold);
  font-size: 1.2rem
}

.machine-table {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow)
}

table {
  width: 100%;
  border-collapse: collapse
}

th,
td {
  text-align: left;
  padding: 14px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .11)
}

th {
  color: rgba(255, 253, 248, .8);
  font-weight: 700
}

td {
  color: var(--gold);
  font-weight: 900;
  text-align: right
}

.process-section {
  background: var(--cotton)
}

.process-layout {
  display: grid;
  grid-template-columns: .42fr .58fr;
  gap: 50px;
  align-items: start
}

.process-intro {
  position: sticky;
  top: 130px
}

.process-card {
  display: grid;
  grid-template-columns: 70px 230px 1fr;
  gap: 24px;
  align-items: stretch;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 16px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 22px
}

.process-card__number {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--linen);
  display: grid;
  place-items: center;
  color: var(--soil);
  font-weight: 900
}

.process-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 22px
}

.process-card span {
  color: var(--soil);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .72rem
}

.process-card h3 {
  margin: 8px 0 10px
}

.process-card ul {
  margin: 14px 0 0 18px;
  color: var(--muted);
  font-size: .92rem
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.metric-grid article {
  background: var(--forest);
  text-align: center
}

.metric-grid strong {
  font-size: 4rem
}

.infra-map {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px
}

.infra-map span {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 18px;
  padding: 18px;
  text-align: center;
  font-weight: 900;
  color: var(--cotton)
}

.palette-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 34px
}

.palette-card h3 {
  margin-bottom: 26px
}

.swatches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px
}

.swatches span {
  display: grid;
  place-items: end start;
  min-height: 120px;
  border-radius: 20px;
  background: var(--c);
  padding: 14px;
  color: white;
  font-weight: 900;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .25)
}

.swatches span:nth-child(5),
.swatches span:nth-child(6) {
  color: var(--forest);
  text-shadow: none
}

.cert-grid a,
.doc-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-weight: 900;
  color: var(--forest)
}

.status {
  display: inline-flex;
  margin-top: 16px;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em
}

.status.pending {
  background: #fff3d6;
  color: #8c653e
}

.doc-links {
  display: grid;
  gap: 14px
}

.doc-links a {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow-soft)
}

.contact-section {
  background: var(--cotton)
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px
}

.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 30px
}

.contact-cards article {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  border-radius: 24px;
  padding: 22px
}

.contact-cards span {
  display: block;
  color: var(--soil);
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .72rem
}

.contact-cards a {
  display: block;
  color: var(--forest);
  font-weight: 900
}

.enquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow)
}

.enquiry-form label {
  font-size: .76rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--soil)
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(25, 55, 38, .14);
  background: var(--cotton);
  border-radius: 16px;
  padding: 14px 15px;
  margin-top: 8px;
  color: var(--ink);
  outline: none;
  text-transform: none;
  letter-spacing: 0
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(197, 154, 90, .12)
}

.enquiry-form .full {
  grid-column: 1/-1
}

.form-note {
  grid-column: 1/-1;
  color: var(--muted);
  font-size: .82rem
}

.map-section {
  padding-top: 0;
  background: var(--cotton)
}

.map-card {
  min-height: 380px;
  border-radius: var(--radius-lg);
  background: linear-gradient(90deg, rgba(29, 55, 40, .88), rgba(29, 55, 40, .5)), url('assets/images/unit-mansarovar.webp') center/cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 54px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  color: var(--cotton)
}

.map-card h2 {
  color: var(--cotton);
  font-size: 4rem
}

.map-card p {
  color: rgba(255, 253, 248, .75)
}

.cta-band {
  background: var(--forest);
  padding: 70px 0
}

.cta-band__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  padding: 48px
}

.cta-band h2 {
  color: var(--cotton);
  font-size: 4rem
}

.cta-band p {
  color: rgba(255, 253, 248, .72);
  max-width: 680px;
  margin-top: 12px
}

.cta-band__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.footer {
  background: #101c14;
  color: rgba(255, 253, 248, .72);
  padding: 70px 0 28px
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 44px
}

.footer-logo img {
  border-radius: 35px;
  height: 74px;
  width: 250px;
  object-fit: contain;
  object-position: center;
  /* filter: brightness(1.25) */
}

.footer__brand p {
  max-width: 390px;
  margin-top: 14px
}

.footer h4 {
  color: var(--gold);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  margin-bottom: 18px
}

.footer a {
  display: block;
  margin-bottom: 10px
}

.footer a:hover {
  color: var(--gold)
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 50px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: .84rem
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.35rem;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .18);
  cursor: pointer
}

.float-btn:hover {
  transform: translateY(-3px)
}

.float-btn.whatsapp {
  background: #25d366
}

.float-btn.call {
  background: var(--forest)
}

.float-btn.scroll-up {
  background: var(--gold);
  color: var(--forest);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px)
}

.float-btn.scroll-up.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.reveal-up {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .8s ease, transform .8s ease
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0)
}

.delay-1 {
  transition-delay: .14s
}

.delay-2 {
  transition-delay: .28s
}

@media (max-width:1180px) {
  .nav-links a {
    font-size: .72rem;
    padding: 8px
  }

  .brand img {
    width: 190px
  }

  .hero__grid,
  .page-hero__grid,
  .split-grid,
  .contact-grid,
  .process-layout {
    grid-template-columns: 1fr
  }

  .process-intro {
    position: relative;
    top: 0
  }

  .resource-grid,
  .product-mini-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .flow-cards {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr
  }

  .metric-grid,
  .infra-map {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:900px) {
  .topbar {
    display: none
  }

  .nav__row {
    height: 76px
  }

  .menu-toggle {
    display: flex
  }

  .nav-links {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 86px;
    background: rgba(246, 240, 229, .98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 24px;
    padding: 16px;
    display: grid;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: .24s
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
  }

  .nav-links a {
    padding: 12px !important
  }

  .hero {
    min-height: auto
  }

  .hero__grid {
    padding: 110px 0 88px
  }

  .page-hero {
    min-height: auto
  }

  .page-hero__grid {
    padding: 120px 0 70px
  }

  .section {
    padding: 78px 0
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(3.4rem, 12vw, 5.2rem)
  }

  .hero__panel {
    align-self: auto
  }

  .pillar-grid,
  .capability-grid,
  .cert-grid,
  .product-grid,
  .unit-grid {
    grid-template-columns: 1fr
  }

  .process-card {
    grid-template-columns: 1fr
  }

  .process-card img {
    height: 260px
  }

  .footer__grid {
    grid-template-columns: 1fr
  }

  .cta-band__inner {
    grid-template-columns: 1fr
  }

  .enquiry-form {
    grid-template-columns: 1fr
  }

  .image-composition {
    min-height: 520px
  }

  .image-main {
    width: 86%;
    height: 70%
  }

  .image-float {
    width: 62%
  }

  .map-card {
    flex-direction: column;
    align-items: flex-start
  }

  .flow-cards {
    grid-template-columns: 1fr
  }

  .contact-grid {
    gap: 36px
  }
}

@media (max-width:560px) {
  .container {
    width: min(100% - 28px, var(--container))
  }

  .brand img {
    width: 200px;
    height: 60px
  }

  .hero__actions,
  .cta-band__actions {
    display: grid
  }

  .hero__panel img {
    height: 78px
  }

  .panel__stats,
  .resource-grid,
  .product-mini-grid,
  .mini-stats,
  .metric-grid,
  .infra-map,
  .check-list,
  .swatches {
    grid-template-columns: 1fr
  }

  .section__head {
    text-align: left
  }

  .section__head h2,
  .section-copy h2,
  .cta-band h2 {
    font-size: 2.7rem
  }

  .image-card,
  .image-card img {
    min-height: 380px
  }

  .image-composition {
    min-height: 470px
  }

  .image-badge {
    right: 10px;
    bottom: 54px
  }

  .product-grid article {
    min-height: 420px
  }

  .footer {
    padding-bottom: 95px
  }

  .floating-actions {
    right: 12px;
    bottom: 12px
  }

  .float-btn {
    width: 50px;
    height: 50px
  }
}

/* =====================================================
   Responsive refinement patch
   Scope: hero height, h1 sizing, navbar tablet behavior,
   logo sizing and floating action buttons only.
   ===================================================== */

/* Reduce oversized hero headings without touching other text styles */
h1 {
  font-size: clamp(3.15rem, 5.8vw, 6.15rem);
  line-height: 1.02;
}

.hero h1,
.page-hero h1 {
  max-width: 760px;
}

/* Make the home hero and inner page heroes more compact */
.hero {
  min-height: calc(100svh - 86px);
}

.hero__grid {
  padding: 82px 0 72px;
}

.page-hero {
  min-height: 430px;
}

.page-hero__grid {
  padding: 105px 0 58px;
}

.page-hero p {
  margin-top: 16px;
}

/* Cleaner desktop/tablet nav spacing */
.nav__row {
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 178px;
  height: 54px;
}

.nav-links {
  flex: 1 1 auto;
  justify-content: flex-end;
  min-width: 0;
}

.nav-links a {
  font-size: .72rem;
  letter-spacing: .075em;
  padding: 9px 9px;
  white-space: nowrap;
}

.nav-button {
  padding: 11px 15px !important;
}

/* Tablet navigation fix: 901px to 1024px now uses clean hamburger menu */
@media (max-width:1100px) {
  .topbar {
    display: none;
  }

  .container {
    width: min(100% - 32px, var(--container));
  }

  .main-nav {
    position: sticky;
    top: 0;
  }

  .nav__row {
    height: 74px;
    gap: 12px;
  }

  .brand img {
    width: 164px;
    height: 48px;
  }

  .menu-toggle {
    display: flex;
    flex: 0 0 auto;
  }

  .nav-links {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 84px;
    z-index: 120;
    background: rgba(246, 240, 229, .98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 24px;
    padding: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: .24s ease;
    justify-content: initial;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    width: 100%;
    padding: 12px 14px !important;
    border-radius: 16px;
    font-size: .76rem;
    text-align: left;
  }

  .nav-button {
    grid-column: 1/-1;
    text-align: center !important;
    justify-content: center;
    display: inline-flex !important;
  }

  .hero {
    min-height: auto;
  }

  .hero__grid {
    padding: 68px 0 56px;
    gap: 28px;
  }

  .page-hero {
    min-height: 340px;
  }

  .page-hero__grid {
    padding: 72px 0 46px;
    gap: 24px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(3rem, 6vw, 4.35rem);
    line-height: 1.04;
    max-width: 720px;
  }

  .hero p,
  .page-hero p {
    font-size: 1rem;
    margin-top: 14px;
    max-width: 680px;
  }

  .floating-actions {
    right: 14px;
    bottom: 16px;
    gap: 8px;
  }

  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 1.15rem;
  }
}

/* Replace the old 900px-only menu coordinates with the new tablet-safe coordinates */
@media (max-width:900px) {
  .nav-links {
    top: 84px;
  }
}

@media (max-width:768px) {
  .page-hero {
    min-height: 300px;
  }

  .page-hero__grid {
    padding: 60px 0 40px;
  }

  .hero__grid {
    padding: 58px 0 48px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.55rem, 10vw, 3.45rem);
  }
}

@media (max-width:560px) {
  .container {
    width: min(100% - 26px, var(--container));
  }

  .nav__row {
    height: 68px;
  }

  .brand img {
    width: 142px;
    height: 42px;
  }

  .nav-links {
    left: 12px;
    right: 12px;
    top: 76px;
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .hero__grid {
    padding: 48px 0 42px;
  }

  .page-hero {
    min-height: 260px;
  }

  .page-hero__grid {
    padding: 48px 0 34px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.05rem);
  }

  .floating-actions {
    right: 10px;
    bottom: 10px;
    gap: 7px;
  }

  .float-btn {
    width: 44px;
    height: 44px;
    font-size: 1.05rem;
  }
}


/* =====================================================
   User requested patch: hero panel, marquee, reduced nav
   Scope limited to requested sections and responsive nav.
   ===================================================== */

/* Reduced header options now fit cleanly on 901px-1024px screens */
.nav__row {
  gap: 18px;
}

.brand img {
  width: 215px;
  height: 65px;
}

.nav-links {
  gap: 6px;
}

.nav-links a {
  font-size: .74rem;
  padding: 9px 11px;
  letter-spacing: .075em;
}

.nav-button {
  min-width: 132px;
  text-align: center;
  padding: 12px 17px !important;
}

/* Hero stat panel changed to the premium rounded card layout from reference */
.hero__panel {
  background: rgba(246, 240, 229, .96);
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 42px;
  padding: 22px;
  box-shadow: 0 34px 90px rgba(9, 22, 15, .26);
  max-width: 460px;
  margin-left: auto;
}

.hero__panel>img {
  height: 156px;
  width: 100%;
  object-fit: contain;
  background: rgba(255, 253, 248, .72);
  border: 1px solid rgba(32, 61, 43, .06);
  border-radius: 77px;
  padding: 28px 32px;
  margin: 0 0 18px;
}

.hero__panel>p {
  display: none;
}

.panel__stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.panel__stats article {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  background: var(--forest);
  border: 0;
  border-radius: 24px;
  padding: 22px 20px;
  box-shadow: none;
}

.panel__stats strong {
  color: var(--gold);
  font-size: 2.35rem;
  line-height: .9;
}

.panel__stats span {
  margin-top: 10px;
  color: rgba(255, 253, 248, .78);
  font-size: .78rem;
  letter-spacing: .085em;
}

/* Trust strip replaced by a moving manufacturing marquee */
.marquee-section {
  position: relative;
  overflow: hidden;
  background: var(--forest);
  color: var(--cotton);
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.marquee-section::before,
.marquee-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee-section::before {
  left: 0;
  background: linear-gradient(90deg, var(--forest), rgba(32, 61, 43, 0));
}

.marquee-section::after {
  right: 0;
  background: linear-gradient(270deg, var(--forest), rgba(32, 61, 43, 0));
}

.marquee_track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 18px 0;
  animation: marqueeTrack 34s linear infinite;
  will-change: transform;
}

.marquee_track span {
  white-space: nowrap;
  color: rgba(255, 253, 248, .92);
  font-weight: 900;
  font-size: .88rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.marquee_track b {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .95;
}

.marquee-section:hover .marquee_track {
  animation-play-state: paused;
}

@keyframes marqueeTrack {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* Keep desktop-style reduced nav clean from 901px to 1100px */
@media (min-width:901px) and (max-width:1100px) {
  .topbar {
    display: none !important;
  }

  .container {
    width: min(100% - 36px, var(--container));
  }

  .nav__row {
    height: 74px;
    gap: 10px;
  }

  .brand img {
    width: 138px;
    height: 42px;
  }

  .menu-toggle {
    display: none !important;
  }

  .nav-links {
    position: static !important;
    display: flex !important;
    flex: 1 1 auto !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 4px !important;
    min-width: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .nav-links a {
    width: auto !important;
    padding: 8px 8px !important;
    font-size: .66rem !important;
    letter-spacing: .055em !important;
    text-align: center !important;
  }

  .nav-button {
    min-width: 116px !important;
    margin-left: 4px !important;
    padding: 10px 12px !important;
    border-radius: 999px !important;
  }

  .nav-dropdown__trigger {
    font-size: .66rem !important;
    padding: 8px 8px !important;
    letter-spacing: .055em !important;
  }

  .hero__panel {
    max-width: 430px;
    margin-inline: auto;
  }

  .hero__panel>img {
    height: 132px;
    padding: 24px 28px;
  }

  .panel__stats article {
    min-height: 118px;
  }
}

/* Tablet/mobile menu begins only when the reduced nav needs it */
@media (max-width:900px) {
  .nav-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__panel {
    max-width: 448px;
    margin-inline: auto;
  }

  .marquee_track {
    animation-duration: 28s;
    padding: 16px 0;
  }
}

@media (max-width:560px) {
  .hero__panel {
    border-radius: 32px;
    padding: 16px;
  }

  .hero__panel>img {
    height: 112px;
    border-radius: 24px;
    padding: 20px 22px;
  }

  .panel__stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .panel__stats article {
    min-height: 104px;
    border-radius: 20px;
    padding: 18px 16px;
  }

  .panel__stats strong {
    font-size: 2rem;
  }

  .panel__stats span {
    font-size: .68rem;
  }

  .marquee-section::before,
  .marquee-section::after {
    width: 52px;
  }

  .marquee_track {
    gap: 18px;
  }

  .marquee_track span {
    font-size: .76rem;
  }
}

/* =====================================================
   Dropdown Navigation
   ===================================================== */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown__trigger {
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .075em;
  font-weight: 900;
  color: var(--forest);
  padding: 9px 11px;
  border-radius: 999px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: .25s ease;
  font-family: inherit;
}

.nav-dropdown__trigger:hover,
.nav-dropdown__trigger.active {
  background: rgba(32, 61, 43, .08);
}

.nav-dropdown__trigger i {
  font-size: .9rem;
  transition: transform .2s ease;
}

.nav-dropdown__trigger[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: rgba(246, 240, 229, .99);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 8px;
  box-shadow: var(--shadow);
  min-width: 190px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 200;
}

.nav-dropdown__menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown__menu a {
  display: block;
  padding: 10px 14px !important;
  border-radius: 12px;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .075em;
  font-weight: 900;
  color: var(--forest);
  margin: 0 !important;
  white-space: nowrap;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a.active {
  background: rgba(32, 61, 43, .08);
}

/* Dropdown in mobile hamburger menu (hamburger activates at ≤900px) */
@media (max-width:900px) {
  .nav-dropdown {
    display: block;
    width: 100%;
    grid-column: 1 / -1;
  }

  .nav-dropdown__trigger {
    width: 100%;
    padding: 12px 14px !important;
    border-radius: 16px;
    font-size: .76rem;
    text-align: left;
    justify-content: space-between;
  }

  .nav-dropdown__menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
    box-shadow: none;
    border: 1px solid var(--line);
    padding: 6px;
    background: rgba(32, 61, 43, .04);
    border-radius: 16px;
    min-width: 0;
    display: none;
    margin-top: 4px;
  }

  .nav-dropdown__menu.is-open {
    display: block;
  }

  .nav-dropdown__menu a {
    padding: 10px 14px !important;
    border-radius: 12px;
  }
}

/* =====================================================
   Focus & Accessibility Styles
   ===================================================== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.float-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.nav-links a:focus-visible,
.nav-dropdown__trigger:focus-visible,
.nav-dropdown__menu a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 12px;
}

.float-btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 50%;
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* =====================================================
   Reduced Motion Support
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .marquee_track {
    animation: none;
  }

  .reveal-up {
    opacity: 1;
    transform: none;
  }
}

/* =====================================================
   Contact Form Loading & Response States
   ===================================================== */
.form-loading {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--forest);
  color: var(--cotton);
  border-radius: 999px;
  font-weight: 900;
  font-size: .83rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  width: 100%;
  margin-top: 0;
}

.form-loading.is-active {
  display: inline-flex;
}

.form-loading-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: var(--cotton);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-response {
  display: none;
  grid-column: 1/-1;
  padding: 18px 20px;
  border-radius: 18px;
  font-weight: 700;
  font-size: .9rem;
}

.form-response.is-success {
  display: block;
  background: #e8f5ea;
  color: var(--forest);
  border: 1px solid #b2d8b7;
}

.form-response.is-error {
  display: block;
  background: #fff3f3;
  color: #c0392b;
  border: 1px solid #f5c6c6;
}

.field-error {
  display: block;
  color: #c0392b;
  font-size: .76rem;
  font-weight: 700;
  margin-top: 5px;
  letter-spacing: .04em;
}

.enquiry-form input.is-invalid,
.enquiry-form textarea.is-invalid,
.enquiry-form select.is-invalid {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, .12);
}

/* =====================================================
   Our Clients & Buyer Partners
   Added after .process-preview only
   ===================================================== */

.clients-home {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 14%, rgba(197, 154, 90, .11), transparent 28%),
    radial-gradient(circle at 92% 86%, rgba(62, 106, 67, .09), transparent 30%),
    var(--paper);
}

.clients-home__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 54px;
  align-items: stretch;
  margin-bottom: 52px;
}

.clients-home__copy {
  align-self: center;
}

.clients-home__copy h2 {
  max-width: 760px;
}

.clients-home__content {
  max-width: 720px;
  margin-top: 18px;
}

.clients-home__content p {
  margin-top: 12px;
}

.clients-home__promise {
  position: relative;
  min-height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    var(--clients-home-bg, url('assets/images/unit-jagatpura.webp'))
    center / cover no-repeat;
  box-shadow: var(--shadow-soft);
}

.clients-home__promise-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(19, 41, 28, .94),
      rgba(32, 61, 43, .58)
    );
}

.clients-home__promise-content {
  position: absolute;
  inset: auto 28px 28px;
  z-index: 2;
}

.clients-home__promise-content span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.clients-home__promise-content strong {
  display: block;
  color: var(--cotton);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -.025em;
}

/* Client logo marquee */
.clients-logo-marquee {
  margin-top: 12px;
}

.clients-logo-marquee__viewport {
  position: relative;
  overflow: hidden;
  padding: 10px 0 18px;
}

.clients-logo-marquee__viewport::before,
.clients-logo-marquee__viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: clamp(42px, 8vw, 110px);
  pointer-events: none;
}

.clients-logo-marquee__viewport::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper), rgba(246, 240, 229, 0));
}

.clients-logo-marquee__viewport::after {
  right: 0;
  background: linear-gradient(270deg, var(--paper), rgba(246, 240, 229, 0));
}

.clients-logo-marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 16px;
  animation: clientLogoMarquee 32s linear infinite;
  will-change: transform;
}

.clients-logo-marquee__viewport:hover .clients-logo-marquee__track {
  animation-play-state: paused;
}

@keyframes clientLogoMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.client-logo-card {
  flex: 0 0 auto;
  width: clamp(180px, 18vw, 235px);
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 28px;
  background: rgba(255, 254, 251, .9);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  transition:
    transform .3s ease,
    border-color .3s ease,
    box-shadow .3s ease;
}

.client-logo-card:hover {
  transform: translateY(-5px);
  border-color: rgba(197, 154, 90, .55);
  box-shadow: var(--shadow);
}

.client-logo-card img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 62px;
  object-fit: contain;
  filter: grayscale(1) opacity(.7);
  transition: filter .3s ease, transform .3s ease;
}

.client-logo-card:hover img {
  filter: grayscale(0) opacity(1);
  transform: scale(1.035);
}

.client-logo-card > span {
  color: var(--forest);
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-align: center;
  text-transform: uppercase;
}

/* Safe fallback when no client items are stored */
.client-types-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.client-types-grid article {
  min-height: 240px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}

.client-types-grid article:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.client-types-grid i {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold);
  font-size: 1.25rem;
}

.client-types-grid h3 {
  margin-bottom: 12px;
  font-size: 1.7rem;
}

.clients-home__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 48px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.clients-home__footer p {
  max-width: 650px;
}

/* Responsive */
@media (max-width: 1000px) {
  .clients-home__intro {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .clients-home__promise {
    min-height: 260px;
  }

  .client-types-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .clients-home__intro {
    margin-bottom: 34px;
  }

  .clients-home__promise {
    min-height: 230px;
    border-radius: 26px;
  }

  .clients-home__promise-content {
    inset: auto 22px 22px;
  }

  .client-logo-card {
    width: 165px;
    height: 100px;
    padding: 20px;
  }

  .client-logo-card img {
    max-height: 50px;
  }

  .clients-logo-marquee__track {
    gap: 12px;
    animation-duration: 26s;
  }

  .client-types-grid {
    grid-template-columns: 1fr;
  }

  .client-types-grid article {
    min-height: auto;
  }

  .clients-home__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .clients-home__footer .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .clients-logo-marquee__track {
    animation: none;
  }
}

