/*
  Lakshmi Pooja Packings
  A lightweight, custom visual system for a Coimbatore packaging manufacturer.
*/

:root {
  --ink: #1d251f;
  --ink-soft: #4e564f;
  --forest: #173b2a;
  --forest-deep: #102c20;
  --orange: #e66f2c;
  --orange-dark: #c95419;
  --kraft: #b98754;
  --paper: #f6f1e7;
  --paper-deep: #e8dfd0;
  --cream: #fffaf1;
  --white: #ffffff;
  --line: rgba(29, 37, 31, 0.18);
  --line-light: rgba(255, 255, 255, 0.2);
  --shadow: 0 22px 60px rgba(21, 33, 25, 0.13);
  --font-sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-space: clamp(88px, 11vw, 154px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  background: var(--orange);
  color: var(--white);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button,
select {
  cursor: pointer;
}

p,
h1,
h2,
h3,
ul,
ol,
address {
  margin-top: 0;
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow,
.overline {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 36px;
  height: 2px;
  background: currentColor;
}

.eyebrow--light {
  color: #ffb37e;
}

.section-title {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(2.7rem, 5vw, 5.3rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-title--light {
  color: var(--white);
}

.lead {
  color: var(--ink);
  font-size: clamp(1.25rem, 2.1vw, 1.7rem);
  font-weight: 550;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 25px;
  border: 1px solid var(--forest);
  border-radius: 2px;
  background: var(--forest);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-2px);
}

.button--small {
  min-height: 44px;
  padding: 12px 18px;
  font-size: 0.69rem;
}

.button--orange {
  background: var(--orange);
  border-color: var(--orange);
}

.button--orange:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.button--dark {
  background: var(--ink);
  border-color: var(--ink);
}

.button--dark:hover {
  background: var(--forest);
  border-color: var(--forest);
}

.button--outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
}

.button--outline-light:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.button--full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: gap 180ms ease, color 180ms ease;
}

.text-link:hover {
  gap: 34px;
  color: var(--orange-dark);
}

.text-link--light {
  color: var(--white);
}

.text-link--light:hover {
  color: #ffc29b;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 38px rgba(16, 44, 32, 0.13);
}

.utility-bar {
  min-height: 34px;
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.utility-bar__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.utility-bar p {
  margin-bottom: 0;
}

.utility-bar__links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.utility-bar a {
  transition: color 160ms ease;
}

.utility-bar a:hover {
  color: var(--white);
}

.nav-bar {
  background: rgba(255, 250, 241, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-bar__inner {
  display: flex;
  min-height: 79px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  transition: min-height 180ms ease;
}

.is-scrolled .nav-bar__inner {
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}

.brand__mark {
  width: 46px;
  height: 46px;
  overflow: visible;
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.brand__mark-fill {
  fill: var(--orange);
  stroke: var(--orange);
}

.brand__copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__copy strong {
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.brand__copy small {
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 38px);
}

.primary-nav > a:not(.button) {
  position: relative;
  padding-block: 9px;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.055em;
}

.primary-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav > a:not(.button):hover::after,
.primary-nav > a.is-active:not(.button)::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 25px;
  height: 2px;
  margin: 6px auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

/* Hero */

.hero {
  position: relative;
  min-height: min(810px, calc(100svh - 113px));
  overflow: hidden;
  background: var(--forest-deep);
  color: var(--white);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) contrast(1.04);
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(12, 31, 22, 0.95) 0%, rgba(12, 31, 22, 0.87) 35%, rgba(12, 31, 22, 0.4) 68%, rgba(12, 31, 22, 0.08) 100%),
    linear-gradient(0deg, rgba(8, 22, 16, 0.4), transparent 45%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: min(810px, calc(100svh - 113px));
  align-items: center;
  padding-block: 88px 72px;
}

.hero__content {
  width: min(780px, 68%);
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 31px;
  font-size: clamp(3.9rem, 7.2vw, 7.25rem);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.hero h1 em {
  display: block;
  margin-top: 0.09em;
  color: #f5b184;
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.hero__lede {
  max-width: 640px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.79);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-bottom: clamp(48px, 7vh, 78px);
}

.hero__proof {
  display: grid;
  max-width: 760px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
}

.hero__proof > div {
  padding: 20px 28px 0 0;
}

.hero__proof > div + div {
  padding-left: 28px;
  border-left: 1px solid var(--line-light);
}

.hero__proof strong,
.hero__proof span {
  display: block;
}

.hero__proof strong {
  margin-bottom: 5px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.hero__proof span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
  line-height: 1.4;
}

.hero__stamp {
  position: absolute;
  right: clamp(22px, 4vw, 64px);
  bottom: 33px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero__stamp svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: var(--orange);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.capability-strip {
  overflow: hidden;
  background: var(--orange);
  color: var(--white);
}

.capability-strip__inner {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  white-space: nowrap;
}

.capability-strip span {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.capability-strip span:not(:last-child)::after {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  content: "";
}

/* About / heritage */

.intro-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(246, 241, 231, 0.94), rgba(246, 241, 231, 0.94)),
    repeating-linear-gradient(0deg, transparent 0 10px, rgba(84, 61, 39, 0.07) 10px 11px);
}

.intro-section::after {
  position: absolute;
  top: 5%;
  right: -8vw;
  width: 30vw;
  height: 30vw;
  border: 1px solid rgba(185, 135, 84, 0.24);
  content: "";
  transform: rotate(32deg);
}

.intro-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(52px, 9vw, 130px);
  align-items: start;
}

.intro-copy {
  max-width: 590px;
  padding-top: 43px;
}

.intro-copy > p:not(.lead) {
  margin-bottom: 31px;
  color: var(--ink-soft);
}

.heritage-grid {
  position: relative;
  z-index: 1;
  display: grid;
  margin-top: clamp(76px, 9vw, 125px);
  grid-template-columns: 2fr 0.78fr 0.78fr;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.heritage-card {
  min-height: 285px;
}

.heritage-card + .heritage-card {
  border-left: 1px solid rgba(29, 37, 31, 0.2);
}

.heritage-card--primary {
  display: grid;
  grid-template-columns: 0.58fr 1fr;
  gap: 38px;
  align-items: end;
  padding: clamp(34px, 5vw, 64px);
  background: var(--orange);
  color: var(--white);
}

.heritage-card__year {
  align-self: start;
  font-size: clamp(4rem, 7vw, 7.3rem);
  font-weight: 650;
  letter-spacing: -0.08em;
  line-height: 0.8;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.heritage-card .overline {
  color: rgba(255, 255, 255, 0.7);
}

.heritage-card--primary h3 {
  max-width: 500px;
  margin-bottom: 19px;
  font-size: clamp(1.85rem, 3vw, 2.75rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.heritage-card--primary > div > p:last-child {
  color: rgba(255, 255, 255, 0.77);
  font-size: 0.92rem;
}

.heritage-card--stat {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(30px, 4vw, 48px);
  background: var(--cream);
}

.heritage-card--stat strong {
  display: block;
  margin-bottom: 14px;
  font-size: clamp(3.2rem, 5vw, 5rem);
  font-weight: 650;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.heritage-card--stat strong span {
  color: var(--orange);
}

.heritage-card--stat p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.heritage-card--dark {
  background: var(--forest);
  color: var(--white);
}

.heritage-card--dark p {
  color: rgba(255, 255, 255, 0.62);
}

/* Products */

.products-section {
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  margin-bottom: clamp(54px, 7vw, 90px);
  grid-template-columns: 1.4fr 0.6fr;
  gap: 60px;
  align-items: end;
}

.section-heading > p {
  max-width: 480px;
  margin-bottom: 8px;
  color: var(--ink-soft);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(300px, auto);
  gap: 18px;
}

.product-card {
  position: relative;
  display: flex;
  min-height: 320px;
  flex-direction: column;
  grid-column: 8 / 13;
  padding: clamp(29px, 4vw, 45px);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.product-card:hover {
  z-index: 2;
  box-shadow: 0 19px 50px rgba(30, 37, 31, 0.13);
  transform: translateY(-5px);
}

.product-card:nth-child(2) {
  grid-row: 1;
}

.product-card:nth-child(3) {
  grid-row: 2;
}

.product-card--feature {
  min-height: 658px;
  grid-column: 1 / 8;
  grid-row: 1 / 3;
  justify-content: space-between;
  padding: clamp(31px, 5vw, 58px);
  background: #d39a62;
}

.product-card--dark {
  min-height: 270px;
  grid-column: 1 / 13;
  grid-row: 3;
  justify-content: center;
  padding-right: 45%;
  background: var(--forest);
  color: var(--white);
}

.product-card--warm {
  background: #f0ddc1;
}

.product-card__topline {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid currentColor;
  color: inherit;
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.72;
}

.product-card__art {
  position: absolute;
  top: 13%;
  right: -4%;
  width: 76%;
  color: rgba(45, 35, 25, 0.6);
}

.product-card__art svg,
.product-card__icon svg {
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.product-card__art .art-accent,
.product-card__icon .art-accent {
  stroke: var(--orange-dark);
  stroke-width: 2;
}

.product-card__copy {
  position: relative;
  z-index: 2;
  max-width: 510px;
}

.product-card .overline {
  margin-bottom: 13px;
  color: currentColor;
  opacity: 0.66;
}

.product-card h3 {
  max-width: 570px;
  margin-bottom: 17px;
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.product-card:not(.product-card--feature) h3 {
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
}

.product-card p:last-child,
.product-card__copy > p {
  max-width: 540px;
  margin-bottom: 0;
  color: inherit;
  font-size: 0.92rem;
  opacity: 0.73;
}

.product-card__icon {
  position: absolute;
  right: 36px;
  bottom: 26px;
  width: 104px;
  color: rgba(29, 37, 31, 0.22);
}

.product-card--dark .product-card__icon {
  right: 8%;
  bottom: 50%;
  width: min(26vw, 235px);
  color: rgba(255, 255, 255, 0.24);
  transform: translateY(50%);
}

.product-card--dark .art-accent {
  stroke: #ff985d;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 7px 14px;
  border: 1px solid rgba(29, 37, 31, 0.32);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.range-note {
  display: flex;
  margin-top: 24px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 24px 30px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.43);
}

.range-note p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.range-note a {
  flex-shrink: 0;
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.range-note a span {
  display: inline-block;
  margin-left: 13px;
  transition: transform 160ms ease;
}

.range-note a:hover span {
  transform: translateX(5px);
}

/* Process */

.process-section {
  position: relative;
  overflow: hidden;
  background: var(--forest-deep);
  color: var(--white);
}

.process-section::before {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 69px, rgba(255, 255, 255, 0.025) 69px 70px),
    linear-gradient(140deg, transparent 60%, rgba(230, 111, 44, 0.09));
  content: "";
  pointer-events: none;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.93fr 1fr;
  gap: clamp(55px, 8vw, 112px);
  align-items: start;
}

.process-visual {
  position: sticky;
  top: 130px;
  overflow: hidden;
  box-shadow: 22px 22px 0 rgba(230, 111, 44, 0.86);
}

.process-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 27, 19, 0.78), transparent 47%);
  content: "";
}

.process-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 55% center;
}

.process-visual__label {
  position: absolute;
  right: 35px;
  bottom: 31px;
  left: 35px;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 25px;
}

.process-visual__label span {
  color: #ffb37e;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.process-visual__label strong {
  max-width: 230px;
  text-align: right;
  font-size: 1.1rem;
  line-height: 1.35;
}

.process-content {
  padding-top: 24px;
}

.process-content__intro {
  max-width: 600px;
  margin: 31px 0 47px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 1.05rem;
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line-light);
}

.process-list li > span {
  padding-top: 4px;
  color: #ff9d63;
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.11em;
}

.process-list h3 {
  margin-bottom: 7px;
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.process-list p {
  max-width: 540px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.61);
  font-size: 0.89rem;
}

/* Strengths */

.strengths-section {
  background: var(--cream);
}

.strengths-heading {
  max-width: 870px;
  margin-bottom: clamp(58px, 8vw, 96px);
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.strengths-grid article {
  position: relative;
  min-height: 340px;
  padding: 44px clamp(27px, 4vw, 49px) 45px 0;
}

.strengths-grid article + article {
  padding-left: clamp(27px, 4vw, 49px);
  border-left: 1px solid var(--line);
}

.strengths-grid__number {
  position: absolute;
  top: 21px;
  right: 25px;
  color: rgba(29, 37, 31, 0.35);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.strengths-grid svg {
  width: 48px;
  height: 48px;
  margin-bottom: 58px;
  fill: none;
  stroke: var(--orange);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.strengths-grid h3 {
  margin-bottom: 14px;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.strengths-grid p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.infrastructure {
  display: grid;
  margin-top: 22px;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: center;
  padding: clamp(33px, 5vw, 61px);
  background: var(--paper);
  border: 1px solid var(--line);
}

.infrastructure .overline {
  margin-bottom: 11px;
}

.infrastructure h3 {
  margin-bottom: 0;
  font-size: clamp(1.65rem, 2.5vw, 2.4rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.infrastructure ul {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.infrastructure li {
  position: relative;
  padding: 14px 10px 14px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.infrastructure li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--orange);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

/* Quote */

.quote-section {
  position: relative;
  overflow: hidden;
  padding-block: var(--section-space);
  background: var(--orange);
  color: var(--white);
}

.quote-section::before,
.quote-section::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.quote-section::before {
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0 12px, rgba(84, 34, 9, 0.045) 12px 13px);
}

.quote-section::after {
  top: -190px;
  right: -90px;
  width: 490px;
  height: 490px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transform: rotate(42deg);
}

.quote-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: clamp(55px, 9vw, 130px);
  align-items: center;
}

.quote-copy .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.quote-copy h2 {
  margin-bottom: 29px;
  font-size: clamp(3rem, 5.8vw, 5.7rem);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.quote-copy > p:not(.eyebrow) {
  max-width: 530px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}

.quote-copy__contact {
  display: grid;
  margin-top: 45px;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.quote-copy__contact a {
  padding: 20px 20px 0 0;
}

.quote-copy__contact a + a {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.quote-copy__contact span,
.quote-copy__contact strong {
  display: block;
}

.quote-copy__contact span {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-copy__contact strong {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  line-height: 1.35;
}

.quote-form {
  padding: clamp(30px, 5vw, 58px);
  background: var(--cream);
  box-shadow: 20px 20px 0 rgba(109, 41, 8, 0.15);
  color: var(--ink);
}

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 35px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.form-heading span {
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.form-heading p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 23px 20px;
}

.field {
  min-width: 0;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(29, 37, 31, 0.33);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.9rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input,
.field select {
  height: 47px;
}

.field textarea {
  min-height: 104px;
  padding: 12px 0;
  resize: vertical;
}

.field select {
  padding-right: 25px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #858b85;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 1px 0 var(--orange);
}

.quote-form .button {
  margin-top: 30px;
}

.form-note {
  margin: 12px 0 0;
  color: #737a73;
  font-size: 0.7rem;
  text-align: center;
}

/* Contact */

.contact-section {
  padding-block: var(--section-space);
  background: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.77fr 1.23fr;
  gap: clamp(55px, 9vw, 125px);
  align-items: stretch;
}

.contact-details .section-title {
  margin-bottom: 61px;
}

.contact-details address {
  display: grid;
  margin-bottom: 0;
  gap: 31px;
  font-style: normal;
}

.contact-item {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contact-item > span {
  display: block;
  margin-bottom: 11px;
  color: var(--orange-dark);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-item p {
  margin-bottom: 10px;
  color: var(--ink-soft);
}

.contact-item a:not(.contact-item__large) {
  display: inline-block;
  border-bottom: 1px solid currentColor;
  font-size: 0.84rem;
  font-weight: 700;
  transition: color 160ms ease;
}

.contact-item a:hover {
  color: var(--orange-dark);
}

.contact-item__large {
  display: block;
  width: fit-content;
  margin-bottom: 4px;
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  font-weight: 650;
  letter-spacing: -0.02em;
}

.map-card {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: #d6d0c2;
  box-shadow: var(--shadow);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 690px;
  border: 0;
  filter: saturate(0.45) sepia(0.08) contrast(1.06);
}

.map-card__caption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 20px 24px;
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 12px 34px rgba(16, 44, 32, 0.24);
}

.map-card__caption span {
  color: #ffad78;
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.map-card__caption strong {
  font-size: 0.89rem;
}

/* Footer */

.site-footer {
  padding-top: 73px;
  background: #0e251a;
  color: var(--white);
}

.site-footer__top {
  display: grid;
  padding-bottom: 62px;
  grid-template-columns: 1fr 1fr auto;
  gap: 55px;
  align-items: center;
}

.brand--footer .brand__copy small,
.site-footer__top > p {
  color: rgba(255, 255, 255, 0.56);
}

.brand--footer .brand__copy strong {
  color: var(--white);
}

.site-footer__top > p {
  margin-bottom: 0;
  font-size: 0.88rem;
}

.site-footer__bottom {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.69rem;
}

.site-footer__bottom p {
  margin-bottom: 0;
}

.site-footer__bottom nav {
  display: flex;
  gap: 25px;
}

.site-footer__bottom a {
  transition: color 160ms ease;
}

.site-footer__bottom a:hover {
  color: var(--white);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 800;
  display: flex;
  min-height: 51px;
  align-items: center;
  gap: 9px;
  padding: 11px 16px 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: #1d6d43;
  box-shadow: 0 10px 30px rgba(18, 40, 26, 0.23);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: background-color 180ms ease, transform 180ms ease;
}

.floating-whatsapp:hover {
  background: #155635;
  transform: translateY(-3px);
}

.floating-whatsapp svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

/* Reveal motion is progressively enabled by JavaScript. */

html.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

html.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */

@media (max-width: 1080px) {
  .hero__content {
    width: min(760px, 76%);
  }

  .hero__shade {
    background: linear-gradient(90deg, rgba(12, 31, 22, 0.95), rgba(12, 31, 22, 0.77) 55%, rgba(12, 31, 22, 0.2));
  }

  .heritage-grid {
    grid-template-columns: 1.7fr 0.65fr 0.65fr;
  }

  .heritage-card--primary {
    grid-template-columns: 1fr;
  }

  .heritage-card__year {
    font-size: 4rem;
    writing-mode: initial;
    transform: none;
  }

  .product-card--dark {
    padding-right: 40%;
  }

  .process-grid,
  .quote-section__inner {
    gap: 64px;
  }

  .quote-copy__contact {
    grid-template-columns: 1fr;
  }

  .quote-copy__contact a + a {
    padding-left: 0;
    border-left: 0;
  }

  .contact-grid {
    gap: 65px;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 78px;
  }

  .utility-bar {
    display: none;
  }

  .nav-bar__inner,
  .is-scrolled .nav-bar__inner {
    min-height: 76px;
  }

  .nav-toggle {
    position: relative;
    z-index: 1002;
    display: block;
    flex-shrink: 0;
    border: 1px solid var(--line);
  }

  .nav-toggle::before,
  .nav-toggle::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 2px;
    background: var(--ink);
    content: "";
    transition: transform 180ms ease;
  }

  .nav-toggle::before {
    transform: translate(-50%, -5px);
  }

  .nav-toggle::after {
    transform: translate(-50%, 4px);
  }

  .nav-toggle > span:not(.sr-only) {
    display: none;
  }

  .nav-toggle[aria-expanded="true"]::before {
    transform: translate(-50%, 0) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"]::after {
    transform: translate(-50%, 0) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    inset: 76px 0 0;
    z-index: 1001;
    display: flex;
    padding: 48px var(--gutter) 60px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0s;
  }

  .primary-nav > a:not(.button) {
    padding: 19px 0;
    border-bottom: 1px solid var(--line);
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    font-weight: 650;
    letter-spacing: -0.04em;
  }

  .primary-nav > a:not(.button)::after {
    display: none;
  }

  .primary-nav .button {
    margin-top: 31px;
  }

  .hero,
  .hero__inner {
    min-height: max(690px, calc(100svh - 76px));
  }

  .hero__image {
    object-position: 59% center;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(12, 31, 22, 0.94), rgba(12, 31, 22, 0.67) 78%, rgba(12, 31, 22, 0.4)),
      linear-gradient(0deg, rgba(8, 22, 16, 0.57), transparent 50%);
  }

  .hero__content {
    width: 86%;
  }

  .hero__stamp {
    display: none;
  }

  .capability-strip__inner {
    width: max-content;
    margin-left: var(--gutter);
    padding-right: var(--gutter);
    animation: strip-scroll 24s linear infinite;
  }

  @keyframes strip-scroll {
    to { transform: translateX(-32%); }
  }

  .intro-grid,
  .section-heading,
  .process-grid,
  .quote-section__inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    max-width: 680px;
    padding-top: 0;
  }

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

  .heritage-card--primary {
    grid-column: 1 / -1;
    grid-template-columns: 0.45fr 1fr;
  }

  .heritage-card__year {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
  }

  .heritage-card--stat:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .section-heading {
    gap: 28px;
  }

  .section-heading > p {
    max-width: 620px;
  }

  .product-card--feature {
    min-height: 610px;
    grid-column: 1 / 13;
    grid-row: 1;
  }

  .product-card:nth-child(2),
  .product-card:nth-child(3) {
    min-height: 350px;
    grid-row: 2;
  }

  .product-card:nth-child(2) {
    grid-column: 1 / 7;
  }

  .product-card:nth-child(3) {
    grid-column: 7 / 13;
  }

  .product-card--dark {
    grid-row: 3;
  }

  .process-grid {
    gap: 92px;
  }

  .process-visual {
    position: relative;
    top: auto;
    width: min(78%, 620px);
  }

  .process-visual img {
    aspect-ratio: 4 / 3;
  }

  .strengths-grid {
    grid-template-columns: 1fr;
  }

  .strengths-grid article {
    min-height: 0;
    padding: 40px 78px 40px 0;
  }

  .strengths-grid article + article {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .strengths-grid svg {
    margin-bottom: 32px;
  }

  .infrastructure {
    grid-template-columns: 1fr;
  }

  .quote-copy__contact {
    max-width: 560px;
    grid-template-columns: repeat(2, 1fr);
  }

  .quote-copy__contact a + a {
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
  }

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

  .contact-item:first-child {
    grid-row: span 2;
  }

  .map-card,
  .map-card iframe {
    min-height: 510px;
  }

  .site-footer__top {
    grid-template-columns: 1fr auto;
  }

  .site-footer__top > p {
    display: none;
  }
}

@media (max-width: 680px) {
  :root {
    --gutter: 20px;
    --section-space: 83px;
  }

  body {
    font-size: 15px;
  }

  .brand__mark {
    width: 40px;
    height: 40px;
  }

  .brand__copy strong {
    font-size: 0.99rem;
  }

  .brand__copy small {
    font-size: 0.53rem;
  }

  .hero,
  .hero__inner {
    min-height: max(650px, calc(100svh - 76px));
  }

  .hero__inner {
    align-items: flex-end;
    padding-block: 70px 51px;
  }

  .hero__content {
    width: 100%;
  }

  .hero h1 {
    margin-bottom: 24px;
    font-size: clamp(3.1rem, 13.6vw, 5.4rem);
  }

  .hero h1 em {
    font-size: 0.96em;
  }

  .hero__lede {
    max-width: 520px;
    font-size: 1rem;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 39px;
  }

  .hero__proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
  }

  .hero__proof > div {
    padding-right: 12px;
  }

  .hero__proof > div + div {
    padding-left: 12px;
  }

  .hero__proof strong {
    font-size: 0.85rem;
  }

  .hero__proof span {
    font-size: 0.61rem;
    overflow-wrap: anywhere;
  }

  .capability-strip__inner {
    min-height: 54px;
  }

  .section-title {
    font-size: clamp(2.6rem, 12vw, 4.2rem);
  }

  .intro-section::after {
    width: 60vw;
    height: 60vw;
  }

  .intro-grid {
    gap: 38px;
  }

  .heritage-grid {
    margin-top: 65px;
  }

  .heritage-card--primary {
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .heritage-card__year {
    font-size: 4.7rem;
    writing-mode: initial;
    transform: none;
  }

  .heritage-card--stat {
    min-height: 200px;
    padding: 27px 21px;
  }

  .heritage-card--stat strong {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .heritage-card--stat p {
    font-size: 0.59rem;
  }

  .product-grid {
    display: block;
  }

  .product-card,
  .product-card--feature,
  .product-card--dark {
    min-height: 430px;
    margin-bottom: 15px;
    padding: 31px 27px;
  }

  .product-card--feature {
    min-height: 600px;
  }

  .product-card__art {
    top: 16%;
    width: 96%;
  }

  .product-card__icon {
    right: 24px;
    bottom: 24px;
    width: 92px;
  }

  .product-card--dark {
    justify-content: flex-start;
  }

  .product-card--dark .product-card__icon {
    right: 25px;
    bottom: 26px;
    width: 155px;
    transform: none;
  }

  .range-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .process-grid {
    gap: 76px;
  }

  .process-visual {
    width: calc(100% - 18px);
    box-shadow: 18px 18px 0 rgba(230, 111, 44, 0.86);
  }

  .process-visual img {
    aspect-ratio: 4 / 5;
  }

  .process-visual__label {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .process-visual__label strong {
    max-width: 160px;
    font-size: 0.9rem;
  }

  .process-list li {
    grid-template-columns: 42px 1fr;
  }

  .infrastructure {
    gap: 35px;
    padding: 31px 25px;
  }

  .infrastructure ul {
    grid-template-columns: 1fr;
  }

  .quote-section__inner {
    gap: 60px;
  }

  .quote-copy__contact {
    grid-template-columns: 1fr;
  }

  .quote-copy__contact a + a {
    padding-left: 0;
    border-left: 0;
  }

  .quote-form {
    box-shadow: 12px 12px 0 rgba(109, 41, 8, 0.15);
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field--full {
    grid-column: auto;
  }

  .contact-details .section-title {
    margin-bottom: 48px;
  }

  .contact-details address {
    grid-template-columns: 1fr;
  }

  .contact-item:first-child {
    grid-row: auto;
  }

  .contact-item a:not(.contact-item__large) {
    overflow-wrap: anywhere;
  }

  .map-card,
  .map-card iframe {
    min-height: 430px;
  }

  .map-card__caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .site-footer {
    padding-top: 61px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .site-footer__top .button {
    width: 100%;
  }

  .site-footer__bottom {
    padding-block: 28px;
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: 21px;
  }

  .site-footer__bottom nav {
    flex-wrap: wrap;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
    justify-content: center;
    padding: 0;
  }

  .floating-whatsapp span {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html.reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .floating-whatsapp,
  .hero__stamp,
  .quote-form,
  .map-card,
  .site-footer {
    display: none !important;
  }

  .hero,
  .process-section,
  .quote-section {
    background: var(--white) !important;
    color: var(--ink) !important;
  }

  .hero__image,
  .hero__shade {
    display: none;
  }
}
