:root {
  /* Palette — derived from the Step Nature reference PDF */
  --cream: #f7f2e7;
  --cream-soft: #f1ead9;
  --cream-card: #fbf8f1;
  --green-950: #16220f;
  --near-black: #0b1209;
  --green-900: #1c2e17;
  --green-800: #253d1d;
  --green-700: #33512a;
  --green-600: #47693b;
  --green-500: #6a8f57;
  --green-tint: #eef2e6;
  --brown-600: #8a6a45;
  --brown-500: #a9825a;
  --rust: #a85f43;
  --rust-soft: #c48468;
  --ink: #22261e;
  --ink-soft: #565a4d;
  --ink-faint: #8c9080;
  --line: rgba(34, 38, 30, 0.1);
  --line-on-dark: rgba(247, 242, 231, 0.16);
  --white: #ffffff;

  --font-display: 'Libre Caslon Text', 'Georgia', serif;
  --font-body: 'Libre Caslon Text', 'Georgia', serif;

  --container: 1320px;
  --container-wide: 1760px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 4px 18px rgba(22, 34, 15, 0.08);
  --shadow-md: 0 14px 40px rgba(22, 34, 15, 0.12);
  --shadow-lg: 0 24px 60px rgba(22, 34, 15, 0.18);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 0.3s;
  --dur-mid: 0.6s;
  --dur-slow: 0.9s;

  --header-h: 88px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
  min-height: 100%;
}

@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;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

#root {
  background: var(--cream);
  min-height: 100vh;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea {
  font-family: inherit;
  font-size: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--green-950);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.container-wide {
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

.section {
  padding: 72px 0;
  position: relative;
}

@media (max-width: 768px) {
  .section {
    padding: 48px 0;
  }
}

/* Adjacent sections tighten their shared edge so two stacked blocks never
   read as one big flat gap — matches the tightly-packed rhythm of the
   reference PDF, where chapters sit close with only a heading/eyebrow to
   separate them. */
.section + .section {
  padding-top: 44px;
}

@media (max-width: 768px) {
  .section + .section {
    padding-top: 28px;
  }
}

.section-dark {
  background: var(--green-950);
  color: var(--cream);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--cream);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-faint);
  margin-bottom: 18px;
}

.eyebrow em {
  font-style: italic;
  color: var(--rust);
}

.eyebrow__divider {
  width: 26px;
  height: 1px;
  background: var(--line);
  display: block;
}

.section-dark .eyebrow {
  color: rgba(247, 242, 231, 0.55);
}

.section-dark .eyebrow__divider {
  background: var(--line-on-dark);
}

.heading-xl {
  font-size: clamp(2.2rem, 3.4vw, 3.4rem);
  letter-spacing: -0.01em;
}

.heading-lg {
  font-size: clamp(1.9rem, 2.6vw, 2.6rem);
}

.heading-md {
  font-size: clamp(1.5rem, 2vw, 1.9rem);
}

.italic-accent {
  font-style: italic;
  font-weight: 500;
  color: var(--green-600);
}

.section-dark .italic-accent {
  color: var(--cream-soft);
}

.lede {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-soft);
}

.section-dark .lede {
  color: rgba(247, 242, 231, 0.78);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-900);
  color: var(--cream);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--green-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--green-950);
  border: 1.5px solid var(--green-950);
}

.btn-outline:hover {
  background: var(--green-950);
  color: var(--cream);
  transform: translateY(-2px);
}

.section-dark .btn-outline {
  color: var(--cream);
  border-color: var(--line-on-dark);
}

.section-dark .btn-outline:hover {
  background: var(--cream);
  color: var(--green-950);
}

.btn-light {
  background: var(--cream);
  color: var(--green-950);
}

.btn-light:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.stagger > * {
  transition-delay: calc(var(--i, 0) * 100ms);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--green-950);
  color: var(--cream);
  padding: 12px 20px;
  z-index: 2000;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

::selection {
  background: var(--green-700);
  color: var(--cream);
}
.smart-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--cream-soft);
}

.smart-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.smart-image__placeholder {
  width: 100%;
  height: 100%;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--cream-soft), var(--green-tint));
  color: var(--green-600);
  text-align: center;
  padding: 16px;
}

.smart-image__placeholder span {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--ink-faint);
  max-width: 180px;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(247, 242, 231, 0.72);
  border-bottom: 1px solid rgba(34, 38, 30, 0.06);
  backdrop-filter: blur(10px);
  transition: background var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), height var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}

.site-header.is-scrolled {
  height: 74px;
  background: rgba(247, 242, 231, 0.96);
  box-shadow: var(--shadow-sm);
  border-color: var(--line);
}

.site-header.is-menu-open {
  background: var(--green-950);
  border-color: transparent;
}

.site-header.is-menu-open .site-header__logo {
  color: var(--cream);
}

.site-header.is-menu-open .hamburger span {
  background: var(--cream);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 1;
}

.site-header__logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-header__logo-image {
  display: block;
  width: clamp(145px, 15vw, 190px);
  height: auto;
  max-height: 78px;
  object-fit: contain;
}

.site-header__nav {
  display: none;
}

@media (min-width: 1080px) {
  .site-header__nav {
    display: block;
  }
}

.site-header__nav > ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-header__nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--green-950);
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 15px;
  border-radius: var(--radius-pill);
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}

.site-header__nav a:hover {
  background: var(--green-tint);
  color: var(--green-700);
}

.site-header__nav li {
  position: relative;
}

.nav-dropdown__caret {
  transition: transform var(--dur-fast) var(--ease);
}

.has-dropdown:hover .nav-dropdown__caret,
.has-dropdown:focus-within .nav-dropdown__caret {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  padding: 8px;
  margin-top: 6px;
  background: var(--cream);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(20, 40, 20, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease), visibility var(--dur-fast) var(--ease);
  z-index: 20;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 9px 14px;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.btn-outline-pill {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--green-950);
  background: transparent;
  color: var(--green-950);
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}

.btn-outline-pill:hover {
  background: var(--green-950);
  color: var(--cream);
  transform: translateY(-2px);
}

.site-header__cta {
  padding: 11px 24px;
}

@media (min-width: 1080px) {
  .site-header__cta {
    display: inline-flex;
  }
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  align-items: center;
}

@media (min-width: 1080px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--green-950);
  border-radius: 2px;
  transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--green-950);
  padding: calc(var(--header-h) + 20px) 24px 40px;
  transform: translateX(100%);
  transition: transform var(--dur-mid) var(--ease);
  overflow-y: auto;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

@media (min-width: 1080px) {
  .mobile-menu {
    display: none;
  }
}

.mobile-menu nav > ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
}

.mobile-menu nav > ul > li > a {
  display: block;
  color: var(--cream);
  font-size: 18px;
  font-family: var(--font-display);
  padding: 14px 4px;
  border-bottom: 1px solid var(--line-on-dark);
}

.mobile-menu__has-sub {
  border-bottom: 1px solid var(--line-on-dark);
}

.mobile-menu__has-sub .mobile-link {
  border-bottom: none;
}

.mobile-menu__sub-head .mobile-link {
  display: block;
  flex: 1;
  color: var(--cream);
  font-size: 18px;
  font-family: var(--font-display);
  padding: 14px 4px;
}

.mobile-menu__sub-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu__sub-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--cream);
  transition: transform var(--dur-fast) var(--ease);
}

.mobile-menu__sub-toggle.is-open {
  transform: rotate(180deg);
}

.mobile-menu__sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-mid) var(--ease);
}

.mobile-menu__sub.is-open {
  max-height: 400px;
}

.mobile-menu__sub li a {
  display: block;
  padding: 10px 4px 10px 16px;
  color: rgba(247, 242, 231, 0.75);
  font-family: var(--font-body);
  font-size: 14.5px;
}

.mobile-menu .btn-outline-pill {
  display: flex;
  width: 100%;
  border-color: var(--line-on-dark);
  color: var(--cream);
}

.mobile-menu .btn-outline-pill:hover {
  background: var(--cream);
  color: var(--green-950);
}
.hero {
  position: relative;
  width: 100%;
  background: var(--cream);
  overflow: hidden;
}

.hero__viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero__track {
  display: flex;
  width: 100%;
  transition: transform 0.75s cubic-bezier(0.65, 0, 0.35, 1);
}

.hero__slide {
  position: relative;
  width: 100%;
  flex: 0 0 100%;
  min-height: 320px;
  padding-top: var(--header-h);
  display: flex;
  align-items: center;
}

@media (min-width: 960px) {
  .hero__slide {
    aspect-ratio: 2075 / 758;
    height: auto;
    min-height: 620px;
    max-height: 820px;
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 959px) {
  .hero__bg img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: 100%;
    min-width: 100%;
    object-fit: cover;
    object-position: center 30%;
  }

  .hero__slide {
    align-items: center;
    justify-content: flex-start;
    min-height: 460px;
  }
}

.hero__scrim {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    90deg,
    var(--cream) 0%,
    rgba(247, 242, 231, 0.92) 22%,
    rgba(247, 242, 231, 0.62) 42%,
    rgba(247, 242, 231, 0.18) 62%,
    rgba(247, 242, 231, 0) 78%
  ); */
}

/* Mobile hero overlay removed — image shows at full brightness */

.hero__text {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 32px 24px 28px;
}

@media (min-width: 960px) {
  .hero__text {
    padding: 0 0 0 clamp(24px, 6vw, 80px);
    max-width: 640px;
    margin-left: 35px;
  }
}

.hero__eyebrow {
  display: block;
  font-size: 12.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--rust);
  margin-bottom: 12px;
}

@media (min-width: 960px) {
  .hero__eyebrow {
    font-size: 14px;
    margin-bottom: 26px;
  }
}

.hero__heading {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.14;
  color: var(--green-950);
  margin-bottom: 10px;
}

@media (min-width: 960px) {
  .hero__heading {
    font-size: clamp(2.8rem, 4.8vw, 4.4rem);
    margin-bottom: 20px;
  }
}

.hero__heading em {
  font-style: italic;
  font-weight: 600;
  color: var(--green-600);
}

.hero__subheading {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  color: var(--ink-soft);
  margin-bottom: 14px;
}

@media (min-width: 960px) {
  .hero__subheading {
    font-size: clamp(1.4rem, 2vw, 1.75rem);
    margin-bottom: 28px;
  }
}

.hero__small {
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: black;
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 20px;
}

@media (min-width: 960px) {
  .hero__small {
    font-size: 13.5px;
    max-width: 480px;
    margin-bottom: 42px;
  }
}

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

.hero__badges {
  display: none;
}

.btn-arrow {
  padding-right: 10px;
}

.btn-arrow__circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(247, 242, 231, 0.16);
  margin-left: 4px;
}

.fade-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.fade-item.is-active {
  opacity: 1;
  transform: translateY(0);
}

.fade-item--1.is-active { transition-delay: 0.1s; }
.fade-item--2.is-active { transition-delay: 0.2s; }

.hero__footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 32px;
}

.hero__pagination {
  display: flex;
  gap: 10px;
}

.hero .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: var(--line);
  opacity: 1;
  transition: background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}

.hero .swiper-pagination-bullet-active {
  background: var(--rust);
  transform: scale(1.2);
}

.hero__scroll {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-faint);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 30px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--rust);
  animation: scroll-line 2.2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { top: -100%; }
  60% { top: 100%; }
  100% { top: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__scroll-line::after {
    animation: none !important;
  }
}

/* ============================================================
   Page banner — interior-page banner (About Us, etc). A static,
   1920x700-at-desktop counterpart to the homepage hero: full-width
   photo, dark scrim, centered eyebrow/title/breadcrumb.
   ============================================================ */
.page-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 380px;
  padding-top: var(--header-h);
  display: flex;
  align-items: center;
  background: var(--green-950);
}

@media (min-width: 960px) {
  .page-banner {
    height: 700px;
    min-height: 700px;
  }
}

.page-banner__bg {
  position: absolute;
  inset: 0;
}

.page-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-banner__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 33, 20, 0.6) 0%, rgba(13, 33, 20, 0.78) 100%);
}

.page-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 56px 0;
}

.page-banner__content .eyebrow {
  justify-content: center;
  color: rgba(247, 242, 231, 0.75);
}

.page-banner__title {
  color: var(--cream);
}

.page-banner__subtitle {
  color: rgba(247, 242, 231, 0.8);
  font-size: 15px;
  letter-spacing: 0.02em;
  margin-top: 10px;
}

.page-banner__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(247, 242, 231, 0.65);
}

.page-banner__breadcrumb a {
  color: rgba(247, 242, 231, 0.9);
  transition: color var(--dur-fast) var(--ease);
}

.page-banner__breadcrumb a:hover {
  color: var(--cream);
}

.page-banner__breadcrumb .page-banner__crumb-sep {
  opacity: 0.5;
}

/* Boxed banner variant — fixed 1024x418 photo, no full-bleed crop.
   Used where the source image is a contained studio/product shot
   rather than a wide landscape plate. Eyebrow/title/breadcrumb sit
   as a caption over the bottom of the photo (with a partial gradient
   for legibility) instead of floating in empty space below it. */
.page-banner--boxed {
  position: relative;
  min-height: 0;
  height: auto;
  padding: calc(var(--header-h) + 40px) 0 40px;
  background: var(--cream-soft);
  display: block;
}

.page-banner--boxed .page-banner__bg {
  position: relative;
  inset: auto;
  width: 100%;
  max-width: 1024px;
  aspect-ratio: 1024 / 418;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.page-banner--boxed .page-banner__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 18, 9, 0) 22%, rgba(11, 18, 9, 0.55) 58%, rgba(11, 18, 9, 0.9) 100%);
  pointer-events: none;
}

.page-banner--boxed .page-banner__content {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1024px;
  padding: 0 40px 20px;
  box-sizing: border-box;
}

.page-banner--boxed .page-banner__content .eyebrow {
  margin-bottom: 8px;
}

.page-banner--boxed .page-banner__title {
  font-size: clamp(1.3rem, 2.4vw + 0.6rem, 2rem);
  line-height: 1.3;
}

.page-banner--boxed .page-banner__breadcrumb {
  margin-top: 10px;
}

.page-banner--boxed .page-banner__content .eyebrow,
.page-banner--boxed .page-banner__title,
.page-banner--boxed .page-banner__breadcrumb a,
.page-banner--boxed .page-banner__breadcrumb span {
  color: var(--cream);
}

.page-banner--boxed .page-banner__content .eyebrow {
  color: rgba(247, 242, 231, 0.8);
}

.page-banner--boxed .page-banner__breadcrumb {
  color: rgba(247, 242, 231, 0.7);
}

@media (max-width: 560px) {
  .page-banner--boxed .page-banner__content {
    bottom: 16px;
    padding: 0 18px 14px;
  }
  .page-banner--boxed .page-banner__title {
    font-size: clamp(1.05rem, 5vw, 1.4rem);
  }
}

/* No-scrim variant — drop the dark gradient so the source photo
   (e.g. a labelled product shot) reads clearly on its own. */
.page-banner--no-scrim .page-banner__scrim {
  display: none;
}

/* ============================================================
   Process hero — page header for the standalone Process page:
   title + intro on the left, four practice badges on the right.
   ============================================================ */
.process-hero__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.process-hero__intro {
  max-width: 480px;
}

.process-hero__badges {
  display: flex;
  flex: 1 1 420px;
  justify-content: flex-end;
  gap: 0;
  padding-top: 6px;
}

.process-hero__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 0 22px;
  position: relative;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--green-950);
}

.process-hero__badge + .process-hero__badge::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--line);
}

.process-hero__badge-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--green-500);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  font-size: 19px;
}

@media (max-width: 640px) {
  .process-hero__badges {
    justify-content: flex-start;
    flex-wrap: wrap;
    row-gap: 24px;
  }

  .process-hero__badge {
    padding: 0 16px;
  }
}

/* ============================================================
   Process timeline — a numbered, dashed-rail vertical story used
   on the standalone Process page. Each row is a single card with
   a photo on one side and text on the other, alternating left and
   right; a small icon badge overlaps the seam between the two.
   ============================================================ */
.process-timeline {
  display: flex;
  flex-direction: column;
}

.process-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: stretch;
}

.process-row + .process-row {
  margin-top: 28px;
}

.process-num-col {
  position: relative;
  display: flex;
  justify-content: center;
}

.process-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green-950);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  position: relative;
  z-index: 2;
}

.process-row:not(:last-child) .process-num-col::after {
  content: '';
  position: absolute;
  top: 46px;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 2px dashed var(--line);
}

.process-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

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

.process-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.process-card__body {
  padding: 28px clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.process-card--reverse .process-card__media {
  order: 2;
}

.process-card--reverse .process-card__body {
  order: 1;
}

.process-card__step {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 8px;
}

.process-card__title {
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  margin-bottom: 10px;
}

.process-card__text {
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: 0.94rem;
}

.process-card__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  font-size: 20px;
  z-index: 3;
}

@media (max-width: 700px) {
  .process-card,
  .process-card--reverse {
    grid-template-columns: 1fr;
  }

  .process-card__media,
  .process-card--reverse .process-card__media {
    order: 1;
    aspect-ratio: 16 / 10;
  }

  .process-card__body,
  .process-card--reverse .process-card__body {
    order: 2;
  }

  .process-card__icon {
    top: auto;
    bottom: calc(100% - 30px);
    left: 28px;
    transform: none;
  }
}

.process-cta.section-dark {
  background: var(--near-black);
}

.stats-bar {
  background: var(--cream);
  padding-top: 56px;
}

.stats-bar__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

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

.stats-bar__stat {
  text-align: center;
  padding: 0 12px;
  border-right: 1px solid var(--line);
}

.stats-bar__stat:last-child,
.stats-bar__stat:nth-child(2n) {
  border-right: none;
}

@media (min-width: 720px) {
  .stats-bar__stat:nth-child(2n) {
    border-right: 1px solid var(--line);
  }
  .stats-bar__stat:last-child {
    border-right: none;
  }
}

.stats-bar__stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--green-950);
  font-weight: 600;
  margin-bottom: 8px;
}

.stats-bar__stat-label {
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

.stats-bar__marquee {
  margin-top: 40px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  padding: 26px 0;
}

.stats-bar__marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 34s linear infinite;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.stats-bar__marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-soft);
  white-space: nowrap;
  padding-right: 32px;
}

.stats-bar__marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rust);
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .stats-bar__marquee-track {
    animation: none;
  }
}
.products {
  position: relative;
  overflow: hidden;
}

.products__bg-svg {
  position: absolute;
  top: -80px;
  right: -80px;
  color: var(--green-tint);
  z-index: 0;
  pointer-events: none;
}

.products__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: end;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

@media (min-width: 860px) {
  .products__head {
    grid-template-columns: 0.9fr 1fr;
    gap: 60px;
  }
}

.products__tagline {
  margin-top: 10px;
}

.products__head-right .lede {
  margin-bottom: 20px;
  max-width: 440px;
}

@media (min-width: 860px) {
  .products__head-right {
    text-align: right;
    margin-left: auto;
  }
  .products__head-right .lede {
    margin-left: auto;
  }
}

.products__filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (min-width: 860px) {
  .products__filters {
    justify-content: flex-end;
  }
}

.products__filter {
  padding: 11px 26px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
  background: var(--cream-card);
  transition: all var(--dur-fast) var(--ease);
}

.products__filter:hover {
  border-color: var(--green-600);
  color: var(--green-700);
}

.products__filter.is-active {
  background: var(--green-950);
  border-color: var(--green-950);
  color: var(--cream);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 260px;
  gap: 18px;
  position: relative;
  z-index: 1;
}

@media (min-width: 860px) {
  .products__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 22px;
  }

  /* Bento pattern: first card of every 5-item group runs wide, its
     partner fills the rest of that row, then three equal cards follow. */
  .product-card:nth-child(5n+1) {
    grid-column: span 2;
  }
}

.product-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur-mid) var(--ease), transform var(--dur-mid) var(--ease);
}

.product-card:hover {
  box-shadow: var(--shadow-md);
}

.product-card__media {
  position: relative;
  height: 100%;
  overflow: hidden;
  transition: transform 0.35s var(--ease);
  will-change: transform;
}

.product-card__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 34, 15, 0) 15%, rgba(16, 24, 11, 0.55) 62%, rgba(14, 21, 10, 0.94) 100%);
  pointer-events: none;
}

.product-card__media img {
  transition: transform var(--dur-slow) var(--ease);
}

.product-card__media .smart-image__placeholder span {
  display: none;
}

.product-card:hover .product-card__media img {
  transform: scale(1.08);
}

.product-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 24px;
  color: var(--cream);
}

.product-card__category {
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #57ff00;
  font-weight: 600;
}

.product-card__name {
  font-size: 1.3rem;
  color: var(--cream);
  margin: 8px 0 8px;
}

.product-card__desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(247, 242, 231, 0.82);
  margin-bottom: 14px;
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  padding-bottom: 3px;
  border-bottom: 1.5px solid rgba(247, 242, 231, 0.5);
  transition: gap var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}

.product-card__link:hover {
  gap: 12px;
  border-color: var(--cream);
}
/* ============================================================
   Sketch accent — a decorative hand-drawn illustration (from
   images/draw/) pinned to a section's outer margin. Requires the
   parent to already be position:relative (every .section is).
   White-background sketches blend cleanly via mix-blend-mode.
   ============================================================ */
.sketch-accent {
  display: none;
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

@media (min-width: 1500px) {
  .sketch-accent {
    display: block;
  }
}

.sketch-accent img {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
  opacity: 0.85;
}

.sketch-accent--left {
  left: 24px;
}

.sketch-accent--right {
  right: 24px;
}

.sketch-accent--sm {
  width: 120px;
}

.sketch-accent--md {
  width: 170px;
}

.sketch-accent--lg {
  width: 220px;
}

.intro__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 72px;
}

@media (min-width: 960px) {
  .intro__grid {
    grid-template-columns: 0.9fr 1fr;
    gap: 70px;
  }
}

.intro__media {
  position: relative;
  padding-bottom: 20px;
}

.intro__media-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 4.6;
  box-shadow: var(--shadow-md);
}

.intro__media-sub {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 46%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 599px) {
  .intro__media-sub {
    right: 0;
    width: 42%;
  }
}

.intro__badge {
  position: absolute;
  top: 20px;
  left: -16px;
  background: var(--green-950);
  color: var(--cream);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.intro__badge strong {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--green-500);
}

.intro__badge span {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

.intro__content .heading-xl {
  margin-bottom: 20px;
}

.intro__highlight {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--green-700);
  margin-bottom: 22px;
  padding-left: 18px;
  border-left: 3px solid var(--green-500);
}

.intro__content .lede + .lede {
  margin-top: 16px;
  margin-bottom: 24px;
}

.intro__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--green-950);
  margin: 28px 0 30px;
  position: relative;
  padding-left: 26px;
}

.intro__quote::before {
  content: '\201C';
  position: absolute;
  left: -6px;
  top: -14px;
  font-size: 3rem;
  color: var(--green-500);
  opacity: 0.5;
  font-family: var(--font-display);
}

.vm__head {
  margin-bottom: 32px;
}

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

@media (min-width: 860px) {
  .vm__grid {
    grid-template-columns: 0.85fr 1.15fr;
  }
}

.vm__card {
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px;
}

@media (max-width: 599px) {
  .vm__card {
    padding: 30px 24px;
  }
}

.vm__index {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--rust);
  margin-bottom: 20px;
}

.vm__index i {
  width: 26px;
  height: 1px;
  background: var(--line);
  display: block;
  font-style: normal;
}

.vm__tag {
  font-size: 1.6rem;
  margin-bottom: 18px;
}

.vm__card > p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ink-soft);
}

.vm__list {
  display: grid;
  gap: 16px;
}

.vm__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.vm__list-dot {
  flex: none;
  width: 7px;
  height: 7px;
  margin-top: 8px;
  border-radius: 2px;
  background: var(--green-600);
  transform: rotate(45deg);
}
.legacy__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 56px;
}

@media (min-width: 860px) {
  .legacy__head {
    grid-template-columns: 0.9fr 1fr;
    gap: 60px;
  }
}

.legacy__head .heading-lg {
  margin-top: 14px;
}

.legacy__head-text .lede {
  max-width: 460px;
}

.legacy__timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

@media (min-width: 860px) {
  .legacy__timeline {
    flex-direction: row;
    align-items: stretch;
  }
}

.legacy__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

@media (min-width: 860px) {
  .legacy__item {
    flex-direction: row;
    align-items: center;
  }
}

.legacy__card {
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  text-align: left;
  width: 100%;
  max-width: 340px;
  transition: border-color var(--dur-mid) var(--ease);
}

.legacy__card:hover {
  border-color: var(--rust-soft);
}

.legacy__number {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  color: var(--line);
  margin-bottom: 14px;
}

.legacy__generation {
  display: block;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 600;
  margin-bottom: 8px;
}

.legacy__title {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.legacy__card p {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
}

.legacy__connector {
  flex: none;
  color: var(--rust-soft);
}

.legacy__connector-desktop {
  display: none;
  width: 70px;
  height: 20px;
}

.legacy__connector-mobile {
  width: 20px;
  height: 46px;
}

.legacy__connector line {
  stroke: currentColor;
  stroke-width: 2;
  stroke-dasharray: 6 6;
}

@media (min-width: 860px) {
  .legacy__connector-desktop {
    display: block;
  }
  .legacy__connector-mobile {
    display: none;
  }
}

/* ============================================================
   Legacy page — "The Generations" circular-portrait grid, "The
   Value Chain" pill row, the dark relationships bento grid, and
   the closing stat trio + quote. Used only on the standalone Our
   Legacy page.
   ============================================================ */
.legacy-gen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  text-align: center;
}

@media (min-width: 768px) {
  .legacy-gen-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
  }
}

.legacy-gen__thumb {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
  box-shadow: var(--shadow-md);
}

.legacy-gen__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.legacy-gen__numeral {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--rust);
  margin-bottom: 8px;
}

.legacy-gen__title {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.legacy-gen__label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
  margin-bottom: 14px;
}

.legacy-gen__text {
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.75;
  max-width: 280px;
  margin: 0 auto;
}

.legacy-chain {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.legacy-chain__step {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 11px 22px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-950);
  white-space: nowrap;
}

.legacy-chain__step--final {
  background: var(--green-950);
  border-color: var(--green-950);
  color: var(--cream);
}

.legacy-chain__arrow {
  flex: none;
  color: var(--rust-soft);
}

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

@media (min-width: 860px) {
  .legacy-bento {
    grid-template-columns: 1fr 1fr 0.9fr;
    grid-auto-rows: 1fr;
    gap: 20px;
  }

  .legacy-bento__card:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .legacy-bento__card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .legacy-bento__card:nth-child(3) {
    grid-column: 1 / 3;
    grid-row: 2;
  }

  .legacy-bento__photo {
    grid-column: 3;
    grid-row: 1 / 3;
  }
}

.legacy-bento__card {
  background: rgba(247, 242, 231, 0.06);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
}

.legacy-bento__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--rust);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rust);
  font-size: 16px;
  margin-bottom: 18px;
}

.legacy-bento__title {
  color: var(--cream);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.legacy-bento__text {
  color: rgba(247, 242, 231, 0.75);
  font-size: 13.5px;
  line-height: 1.75;
}

.legacy-bento__photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 220px;
}

.legacy-bento__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.legacy-bento__photo-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 28, 17, 0) 25%, rgba(11, 28, 17, 0.92) 100%);
}

.legacy-bento__photo-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 26px;
}

.legacy-bento__photo-body .legacy-bento__title {
  margin-bottom: 6px;
}

.legacy-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.legacy-stats .stats-bar__stat {
  border-right: 1px solid var(--line);
  padding: 0 clamp(24px, 5vw, 64px);
}

.legacy-stats .stats-bar__stat:last-child {
  border-right: none;
}

.legacy-closing__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   Industry cards — used on the standalone Industries page. Each
   card carries an icon, a title, one or more description
   paragraphs, and an optional dotted list of applications.
   ============================================================ */
.industry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

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

.industry-card {
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color var(--dur-mid) var(--ease), box-shadow var(--dur-mid) var(--ease);
}

.industry-card:hover {
  border-color: var(--rust-soft);
  box-shadow: var(--shadow-sm);
}

.industry-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-tint);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.industry-card__title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.industry-card__text {
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: 14.5px;
}

.industry-card__text + .industry-card__text {
  margin-top: 10px;
}

.industry-card__list {
  display: grid;
  gap: 9px;
  margin-top: 16px;
}

.industry-card__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
}

.industry-card__list li::before {
  content: '';
  flex: none;
  width: 7px;
  height: 7px;
  margin-top: 7px;
  border-radius: 2px;
  background: var(--rust);
  transform: rotate(45deg);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 96px;
}

@media (min-width: 960px) {
  .about__grid {
    grid-template-columns: 0.85fr 1fr;
    gap: 70px;
  }
}

.about__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 4.8;
  box-shadow: var(--shadow-md);
}

.about__content .heading-xl {
  margin: 16px 0 20px;
}

.about__label {
  font-weight: 600;
  color: var(--green-950);
  margin: 22px 0 14px;
}

.about__points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  margin-bottom: 22px;
}

.about__points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink);
}

.about__points svg {
  flex: none;
  color: var(--green-600);
  background: var(--green-tint);
  border-radius: 50%;
  padding: 3px;
  box-sizing: content-box;
}

.about__content .lede + .lede {
  margin-top: 14px;
}

.about__chain-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.about__chain-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
}

@media (min-width: 720px) {
  .about__chain-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1080px) {
  .about__chain-steps {
    grid-template-columns: repeat(6, 1fr);
  }
}

.chain-step {
  text-align: center;
  position: relative;
}

.chain-step__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--rust-soft);
  background: var(--cream-card);
  font-size: 11px;
  font-weight: 600;
  color: var(--rust);
  margin-bottom: 14px;
}

.chain-step__media {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-sm);
  margin-bottom: 14px;
  transition: transform var(--dur-mid) var(--ease), box-shadow var(--dur-mid) var(--ease);
}

.chain-step:hover .chain-step__media {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.chain-step__media img {
  transition: transform var(--dur-slow) var(--ease);
}

.chain-step:hover .chain-step__media img {
  transform: scale(1.08);
}

.chain-step__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-950);
  letter-spacing: 0.02em;
}

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

@media (min-width: 720px) {
  .industry-gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

@media (min-width: 960px) {
  .quality__grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: start;
  }
}

.quality__intro .heading-xl {
  margin: 16px 0 18px;
}

.quality__table {
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.quality__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 32px;
  border-bottom: 1px solid var(--line);
  transition: background var(--dur-fast) var(--ease);
}

.quality__row:last-child {
  border-bottom: none;
}

.quality__row:hover {
  background: var(--green-tint);
}

.quality__row-title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--green-950);
  margin-bottom: 6px;
}

.quality__row-text {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 460px;
}

.quality__row-num {
  flex: none;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--rust);
}

/* ============================================================
   Info split — reusable alternating image/text section used on
   About Us for Region / Infrastructure / Logistics blocks.
   ============================================================ */
.info-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 960px) {
  .info-split {
    grid-template-columns: 0.9fr 1fr;
    gap: 64px;
  }
  .info-split--reverse .info-split__media {
    order: 2;
  }
  .info-split--reverse .info-split__content {
    order: 1;
  }
}

.info-split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3.2;
  box-shadow: var(--shadow-md);
}

.info-split__content .heading-xl {
  margin: 14px 0 18px;
}

.info-split__content .lede + .lede {
  margin-top: 14px;
}

/* Parameter tag list used in the Quality section */
.param-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
}

.param-tags span {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--cream-card);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 500;
  color: var(--green-950);
}

/* ============================================================
   Product catalog page (product.php) — circular jump-nav grid
   + alternating-style detail rows per category, grouped by
   Coconut Products / Coir Products.
   ============================================================ */
.product-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 18px;
  margin-top: 40px;
}

@media (min-width: 640px) {
  .product-nav { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 960px) {
  .product-nav { grid-template-columns: repeat(5, 1fr); }
}

.product-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.product-nav__circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 3px solid var(--cream-card);
  transition: transform var(--dur-mid) var(--ease), box-shadow var(--dur-mid) var(--ease);
}

@media (min-width: 960px) {
  .product-nav__circle { width: 128px; height: 128px; }
}

.product-nav__item:hover .product-nav__circle {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.product-nav__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-nav__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-950);
  line-height: 1.35;
}

.product-nav__label em {
  font-style: normal;
  color: var(--green-600);
}

.product-group {
  scroll-margin-top: 90px;
}

.product-group__head {
  max-width: 640px;
  margin-bottom: 44px;
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
  scroll-margin-top: 90px;
  transition: box-shadow var(--dur-mid) var(--ease), transform var(--dur-mid) var(--ease);
}

.product-detail:last-of-type {
  margin-bottom: 0;
}

.product-detail:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

@media (min-width: 720px) {
  .product-detail {
    grid-template-columns: 220px 1fr;
    gap: 32px;
    padding: 28px 32px;
  }
  .product-detail--reverse {
    grid-template-columns: 1fr 220px;
  }
  .product-detail--reverse .product-detail__media {
    order: 2;
  }
}

.product-detail__kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--rust);
  margin-bottom: 6px;
}

.product-detail__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--green-950);
  margin-bottom: 10px;
}

.product-detail__title em {
  font-style: normal;
  color: var(--green-600);
}

.product-detail__text {
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 620px;
}

.product-detail__best-for {
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--ink);
}

.product-detail__best-for strong {
  color: var(--green-800);
  font-weight: 600;
}

.product-detail__media {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-mid) var(--ease), box-shadow var(--dur-mid) var(--ease);
}

.product-detail__media img {
  transition: transform var(--dur-slow) var(--ease);
}

.product-detail:hover .product-detail__media {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-detail:hover .product-detail__media img {
  transform: scale(1.06);
}

.product-detail__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.product-detail__tags span {
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: var(--green-tint);
  color: var(--green-800);
}
.why {
  position: relative;
  overflow: hidden;
}

.why__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 10%, rgba(107, 143, 87, 0.18), transparent 50%);
  pointer-events: none;
}

.why__inner {
  position: relative;
  z-index: 1;
}

.why__head {
  text-align: center;
  margin-bottom: 48px;
}

.why__heading {
  font-weight: 500;
}

.why__brand {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  color: var(--cream);
  text-transform: uppercase;
}

.why__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 64px;
}

@media (min-width: 720px) {
  .why__stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why__stat {
  text-align: left;
  padding: 32px 28px;
  border-right: 1px solid var(--line-on-dark);
  border-bottom: 1px solid var(--line-on-dark);
}

@media (min-width: 720px) {
  .why__stat {
    border-bottom: none;
  }
  .why__stat:last-child {
    border-right: none;
  }
}

@media (max-width: 719px) {
  .why__stat:nth-child(2n) {
    border-right: none;
  }
  .why__stat:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

.why__stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--cream);
  margin-bottom: 10px;
}

.why__stat-label {
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: rgba(247, 242, 231, 0.55);
  text-transform: uppercase;
  line-height: 1.5;
}

.why__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 40px;
}

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

.why__feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 4px;
  border-bottom: 1px solid var(--line-on-dark);
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: rgba(247, 242, 231, 0.88);
}

.why__feature-num {
  flex: none;
  font-size: 12px;
  font-family: var(--font-body);
  color: var(--rust-soft);
  font-weight: 600;
}
.sustain__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 56px;
}

@media (min-width: 860px) {
  .sustain__head {
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 60px;
  }
}

.sustain__copy .lede + .lede {
  margin-top: 14px;
}

.sustain__chain {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0;
}

.sustain__chain-item {
  flex: 1 1 160px;
  min-width: 140px;
  position: relative;
  padding-right: 20px;
}

.sustain__frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3 / 3.4;
  box-shadow: var(--shadow-sm);
}

.sustain__frame img {
  transition: transform var(--dur-slow) var(--ease);
}

.sustain__frame:hover img {
  transform: scale(1.08);
}

.sustain__label {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 14px;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--green-950);
}

.sustain__label-num {
  color: var(--rust);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
}

.sustain__arrow {
  display: none;
  position: absolute;
  right: -3px;
  top: 42%;
  color: var(--rust);
  opacity: 0.7;
}

@media (min-width: 860px) {
  .sustain__arrow {
    display: flex;
  }
}
.global-markets__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}

@media (min-width: 960px) {
  .global-markets__grid {
    grid-template-columns: 0.85fr 1.15fr;
  }
}

.global-markets .heading-xl {
  margin: 16px 0 18px;
}

.global-markets__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
  margin-top: 26px;
}

.global-markets__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--green-950);
}

.global-markets__list li::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--rust);
  flex: none;
}

.global-markets__map {
  position: relative;
  background: var(--green-950);
  border-radius: var(--radius-lg);
  padding: 30px;
  color: rgba(247, 242, 231, 0.85);
  box-shadow: var(--shadow-md);
}

.global-markets__map svg {
  width: 100%;
  height: auto;
  color: var(--line-on-dark);
}

.global-markets__point {
  color: var(--rust-soft);
}

.global-markets__point--origin {
  color: var(--cream);
}

.global-markets__origin-label {
  fill: rgba(247, 242, 231, 0.6);
  font-size: 8px;
  letter-spacing: 0.1em;
  font-family: var(--font-body);
}

.global-markets__caption {
  position: absolute;
  right: 30px;
  bottom: 22px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 242, 231, 0.45);
}

.global-markets__pulse {
  fill: currentColor;
  opacity: 0.35;
  transform-origin: center;
  transform-box: fill-box;
  animation: pulse-ring 2.4s ease-out infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.5); opacity: 0.5; }
  100% { transform: scale(2.2); opacity: 0; }
}

.global-markets__route {
  stroke-dasharray: 4 5;
  animation: route-dash 3.5s linear infinite;
}

@keyframes route-dash {
  to { stroke-dashoffset: -60; }
}

@media (prefers-reduced-motion: reduce) {
  .global-markets__pulse,
  .global-markets__route {
    animation: none;
  }
}
.chairman__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.chairman__eyebrow-wrap .eyebrow {
  justify-content: center;
}

.chairman__quote {
  position: relative;
  margin: 12px 0 40px;
}

.chairman__mark {
  display: block;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--rust-soft);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 8px;
}

.chairman__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.7;
  color: var(--green-950);
}

.chairman__quote p + p {
  margin-top: 18px;
}

.chairman__signature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 8px;
}

.chairman__signature i {
  width: 34px;
  height: 1px;
  background: var(--rust);
  display: block;
}

.chairman__signature span {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.02em;
  font-size: 1.05rem;
  color: var(--green-950);
  text-transform: uppercase;
}

.chairman__role {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.cta {
  position: relative;
  color: var(--cream);
  padding: 130px 0;
  overflow: hidden;
  text-align: center;
}

@media (max-width: 768px) {
  .cta {
    padding: 90px 0;
  }
}

.cta__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta__media .smart-image img {
  transform: scale(1.25);
  will-change: transform;
}

.cta__media .smart-image__placeholder span {
  display: none;
}

.cta__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(20, 30, 15, 0.72), rgba(16, 24, 12, 0.86));
}

.cta__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.cta__badge {
  display: inline-flex;
  margin-bottom: 30px;
}

.cta__badge span {
  background: var(--cream);
  color: var(--green-950);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 14px 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.cta__badge em {
  font-style: italic;
}

.cta__heading {
  color: var(--cream);
  margin-bottom: 20px;
}

.cta__text {
  color: rgba(247, 242, 231, 0.78);
  margin-bottom: 40px;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.cta .btn-outline {
  color: var(--cream);
  border-color: rgba(247, 242, 231, 0.5);
}

.cta .btn-outline:hover {
  background: var(--cream);
  color: var(--green-950);
}
.footer {
  background: var(--green-950);
  color: rgba(247, 242, 231, 0.75);
  padding: 80px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-on-dark);
}

@media (min-width: 720px) {
  .footer__top {
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: 32px;
  }
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  background: #fff;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  margin-bottom: 22px;
}

.footer__logo-image {
  display: block;
  width: 260px;
  max-width: 100%;
  flex: 0 0 auto;
  height: auto;
  object-fit: contain;
}

.footer__tagline {
  font-size: 13.5px;
  line-height: 1.8;
  max-width: 320px;
  margin-bottom: 24px;
}

.footer__socials {
  display: flex;
  gap: 10px;
}

.footer__social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-on-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}

.footer__social:hover {
  background: var(--green-600);
  border-color: var(--green-600);
}

.footer__col h3 {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 20px;
}

.footer__col ul {
  display: grid;
  gap: 12px;
}

.footer__col a {
  font-size: 13.5px;
  transition: color var(--dur-fast) var(--ease);
}

.footer__col a:hover {
  color: var(--green-500);
}

.footer__contact li {
  font-size: 13.5px;
  line-height: 1.7;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: rgba(247, 242, 231, 0.5);
}

.footer__bottom p:last-child {
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ============================================================
   Hero slider: a true sliding "swiper" track. .hero__viewport
   clips the row, .hero__track is translated horizontally, and
   each .hero__slide sits side by side (flex 0 0 100%). Supports
   autoplay, pagination-dot clicks, and touch/pointer drag.
   ============================================================ */
.hero__track {
  cursor: grab;
}

.hero__track.is-dragging {
  cursor: grabbing;
  transition: none;
}

/* ============================================================
   Industries — restored so the header's "Industries" nav link
   (matching the requested header reference) has somewhere to go.
   ============================================================ */
.industries__head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.industries__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 620px) {
  .industries__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 960px) {
  .industries__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.industries__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  padding: 32px 16px;
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}

.industries__item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.industries__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-tint);
  color: var(--green-700);
  font-size: 20px;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}

.industries__item:hover .industries__icon {
  background: var(--green-950);
  color: var(--green-500);
}

/* Mobile hero: badges + adjusted layout (appended last to ensure it wins) */
@media (max-width: 959px) {
  .hero__subheading,
  .hero__small,
  .hero__actions {
    display: none;
  }

  .hero__heading {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .hero__text {
    padding-bottom: 12px;
  }

  .hero__footer {
    padding: 8px 24px 16px;
  }

  .hero__slide {
    align-items: center;
    min-height: 460px;
  }

  .hero__eyebrow.fade-item,
  .hero__heading.fade-item {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
  }

  .hero__badge {
    display: inline-block;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green-950);
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
}

/* ============================================================
   Contact Page
   ============================================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 959px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ---- Form ---- */
.contact-form {
  margin-top: 32px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 640px) {
  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.contact-form__field {
  margin-bottom: 20px;
}

.contact-form__row .contact-form__field {
  margin-bottom: 0;
}

.contact-form__field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-950);
  margin-bottom: 8px;
}

.contact-form__field label span {
  color: var(--rust);
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--green-950);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  outline: none;
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: var(--ink-faint);
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.12);
}

.contact-form__field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a7c59' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form__submit {
  margin-top: 8px;
}

/* ---- Contact Info ---- */
.contact__info .heading-lg {
  margin-bottom: 28px;
}

.contact__info-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.contact__info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__info-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-50);
  color: var(--green-700);
}

.contact__info-card h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--green-950);
  margin-bottom: 4px;
}

.contact__info-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

.contact__info-card a {
  color: var(--green-700);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--dur-fast) var(--ease);
}

.contact__info-card a:hover {
  color: var(--rust);
}

.contact__map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* ============================================================
   Footer Credit — Designed & Developed by
   ============================================================ */
.footer__credit {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
}

.footer__credit-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer__credit-inner span {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
}

.footer__credit-logo {
  height: 28px;
  width: auto;
  display: block;
  
  opacity: 0.7;
  transition: opacity var(--dur-fast) var(--ease);
}

.footer__credit-logo:hover {
  opacity: 1;
}

.footer__credit-sep {
  color: rgba(255, 255, 255, 0.25);
  margin: 0 6px;
}
