:root {
  --cream: #f3f0e7;
  --green: #073a2e;
  --green-dark: #052f26;
  --orange: #c96d49;
  --muted: #69706c;
  --border: rgba(7, 58, 46, 0.18);
  --side: clamp(25px, 4.2vw, 82px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================================
   GLOBAL PAGE / SCROLL
========================================= */

html {
  width: 100%;
  max-width: 100%;

  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}


body {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;

  margin: 0;

  font-family: "DM Sans", Arial, sans-serif;

  background: var(--cream);
  color: var(--green);

  -webkit-font-smoothing: antialiased;
}


/* ONLY LOCK PAGE WHEN MOBILE MENU IS OPEN */

body.menu-open {
  overflow: hidden;
}


main {
  width: 100%;
  max-width: 100%;
}

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

button {
  font: inherit;
}

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

.header {
  position: sticky;
  top: 0;

  width: 100%;

  padding: 0 var(--side);

  background: rgba(243, 240, 231, 0.96);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  z-index: 10000;
}

.nav-wrap {
  width: 100%;
  height: 80px;

  display: flex;
  align-items: center;

  border-bottom: 1px solid var(--border);
}

.logo {
  flex-shrink: 0;

  display: flex;
  align-items: center;

  font-size: 28px;
  font-weight: 600;

  letter-spacing: 0.18em;
}

.desktop-nav {
  margin-left: auto;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: clamp(24px, 2.4vw, 48px);
}

.desktop-nav a {
  position: relative;

  font-size: 15px;

  white-space: nowrap;
}

.desktop-nav a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -8px;

  width: 0;
  height: 1px;

  background: var(--orange);

  transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.nav-contact {
  justify-self: end;

  width: 135px;
  height: 55px;

  padding: 0 20px;

  border: 1px solid var(--green);
  border-radius: 10px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.nav-contact:hover {
  background: var(--green);
  color: var(--cream);
}

.menu-btn {
  display: none;

  position: relative;

  width: 46px;
  height: 46px;

  border: 0;

  background: transparent;

  cursor: pointer;

  z-index: 10002;
}

.menu-btn span {
  position: absolute;

  left: 10px;

  width: 25px;
  height: 1.5px;

  background: var(--green);

  transition:
    top 0.3s ease,
    transform 0.3s ease;
}

.menu-btn span:first-child {
  top: 17px;
}

.menu-btn span:last-child {
  top: 27px;
}

.menu-btn.active span:first-child {
  top: 22px;

  transform: rotate(45deg);
}

.menu-btn.active span:last-child {
  top: 22px;

  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  padding: 30px var(--side) 0;
}

.hero-grid {
  width: 100%;

  min-height: 600px;

  display: grid;

  grid-template-columns:
    minmax(0, 0.95fr) minmax(0, 1.05fr);

  gap: clamp(45px, 5vw, 90px);

  align-items: center;
}

.hero-copy {
  min-width: 0;

  padding-left: 25px;
}

.eyebrow {
  margin-bottom: 35px;

  display: flex;
  align-items: center;

  gap: 14px;

  font-size: 12px;
  font-weight: 600;

  letter-spacing: 0.17em;
}

.eyebrow>span {
  width: 33px;
  height: 1px;

  flex: 0 0 auto;

  background: var(--orange);
}

.hero h1 {
  font-size: clamp(50px, 4.3vw, 79px);

  line-height: 1.02;

  letter-spacing: -0.055em;

  font-weight: 500;
}

.hero h1 em {
  color: var(--orange);

  font-style: normal;
}

.hero-copy>p {
  max-width: 630px;

  margin-top: 30px;

  color: var(--muted);

  font-size: clamp(17px, 1.2vw, 21px);

  line-height: 1.65;
}

.hero-buttons {
  margin-top: 33px;

  display: flex;
  align-items: center;

  gap: 35px;
}

.primary-btn {
  min-width: 275px;
  min-height: 62px;

  padding: 0 27px;

  border-radius: 9px;

  background: var(--green);
  color: white;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 25px;

  font-weight: 600;

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.primary-btn:hover {
  background: var(--green-dark);

  transform: translateY(-3px);
}

.primary-btn span {
  font-size: 21px;
}

.simple-link {
  width: max-content;
  max-width: 100%;

  padding-bottom: 7px;

  border-bottom: 1px solid var(--border);

  display: flex;
  align-items: center;

  gap: 15px;

  font-weight: 600;
}

.simple-link span {
  color: var(--orange);
}

.hero-image {
  width: 100%;
  height: 570px;

  min-width: 0;

  align-self: center;
}

.carousel {
  position: relative;

  width: 100%;
  height: 100%;

  overflow: hidden;

  border-radius: 17px;

  background: #d5d1c6;
}

.slide {
  position: absolute;

  inset: 0;

  opacity: 0;
  visibility: hidden;

  transform: scale(1.03);

  transition:
    opacity 0.8s ease,
    transform 1s ease,
    visibility 0.8s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;

  transform: scale(1);

  z-index: 2;
}

.slide img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.carousel-nav {
  position: absolute;

  z-index: 20;

  top: 25px;
  right: 25px;

  min-width: 165px;
  height: 53px;

  padding: 0 15px;

  border-radius: 100px;

  background: rgba(55, 66, 62, 0.6);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 12px;
}

.carousel-nav>button {
  border: 0;

  background: transparent;

  color: white;

  cursor: pointer;

  font-size: 20px;

  line-height: 1;
}

.dots {
  display: flex;
  align-items: center;

  gap: 7px;
}

.dot {
  width: 8px;
  height: 8px;

  padding: 0;

  border: 0;

  border-radius: 100px;

  background: rgba(255, 255, 255, 0.5);

  cursor: pointer;

  transition:
    width 0.3s ease,
    background 0.3s ease;
}

.dot.active {
  width: 25px;

  background: white;
}

.earth-badge {
  position: absolute;

  z-index: 20;

  right: 22px;
  bottom: 22px;

  width: 100px;
  height: 100px;

  border: 1px solid rgba(255, 255, 255, 0.8);

  border-radius: 50%;

  color: white;

  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  transform: rotate(-7deg);
}

.earth-badge small {
  font-size: 9px;

  letter-spacing: 0.14em;
}

.earth-badge strong {
  margin-top: 3px;

  font-size: 18px;
}

.benefits {
  margin: 0 var(--side);

  min-height: 120px;

  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);

  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.benefit {
  min-width: 0;
  min-height: 120px;

  padding: 22px;

  display: flex;

  justify-content: center;
  align-items: center;

  gap: 18px;
}

.benefit:not(:last-child) {
  border-right: 1px solid var(--border);
}

.benefit-icon,
.round-icon {
  width: 46px;
  height: 46px;

  flex: 0 0 auto;

  border: 1px solid rgba(7, 58, 46, 0.35);

  border-radius: 50%;

  color: var(--orange);

  display: grid;

  place-items: center;
}

.benefit p {
  min-width: 0;

  font-size: 15px;
}

.section {
  padding: 130px var(--side);
}

.section-tag {
  margin-bottom: 60px;

  display: flex;
  align-items: center;

  gap: 15px;

  font-size: 12px;
  font-weight: 600;

  letter-spacing: 0.17em;
}

.section-tag span {
  color: var(--orange);
}

.section-title {
  font-size: clamp(52px, 5vw, 88px);

  line-height: 1.02;

  letter-spacing: -0.055em;

  font-weight: 500;
}

.section-title em {
  color: var(--orange);

  font-style: normal;
}

.split-heading {
  display: grid;

  grid-template-columns:
    minmax(0, 1.2fr) minmax(0, 0.8fr);

  gap: 80px;

  align-items: end;
}

.heading-copy {
  max-width: 500px;

  color: var(--muted);

  font-size: 17px;

  line-height: 1.7;
}

.about-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.25fr) minmax(0, 0.75fr);

  gap: clamp(60px, 8vw, 150px);
}

.about-copy {
  padding-top: 10px;
}

.about-copy h3 {
  max-width: 580px;

  font-size: 24px;

  line-height: 1.45;

  font-weight: 500;
}

.about-copy p {
  max-width: 600px;

  margin-top: 15px;

  color: var(--muted);

  font-size: 16px;

  line-height: 1.8;
}

.about-copy .simple-link {
  margin-top: 30px;
}

.why-signature {
  position: relative;
  width: 100%;
  padding: 82px var(--side) 72px;
  background: var(--green);
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}

.why-signature-inner {
  position: relative;
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
  z-index: 2;
}

.why-marquee {
  position: absolute;
  top: 22%;
  left: 0;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
  opacity: 0.035;
}

.why-marquee-track {
  width: max-content;
  display: flex;
  gap: 8vw;
  animation: whyMarquee 28s linear infinite;
  will-change: transform;
}

.why-marquee span {
  display: block;
  color: var(--cream);
  font-size: clamp(145px, 20vw, 330px);
  line-height: 0.8;
  letter-spacing: -0.07em;
  font-weight: 600;
  white-space: nowrap;
}

@keyframes whyMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-33.333% - 2.6vw));
  }
}

.why-signature-label {
  margin-bottom: 38px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.why-signature-label span {
  color: var(--orange);
}

.why-signature-heading {
  max-width: 1120px;
}

.why-small-line {
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.why-signature-heading h2 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(50px, 5.4vw, 88px);
  line-height: 0.93;
  letter-spacing: -0.06em;
  font-weight: 500;
}

.why-signature-heading h2 em {
  color: var(--orange);
  font-style: normal;
}

.why-intro {
  max-width: 560px;
  margin-top: 25px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.65;
}

.why-signature-grid {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.why-signature-card {
  position: relative;
  min-height: 335px;
  padding: 27px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
  cursor: default;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.why-signature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: -1;
}

.why-signature-card.why-visible {
  opacity: 1;
  transform: translateY(0);
}

.why-signature-card:nth-child(2) {
  transition-delay: 0.08s;
}

.why-signature-card:nth-child(3) {
  transition-delay: 0.14s;
}

.why-signature-card:nth-child(4) {
  transition-delay: 0.2s;
}

.why-signature-card:hover::before {
  transform: scaleY(1);
}

.why-signature-card:hover {
  transform: translateY(-4px);
}

.why-signature-card.why-dimmed {
  opacity: 0.45;
}

.why-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.why-number {
  color: var(--orange);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.17em;
  transition: color 0.35s ease;
}

.why-special-icon {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition:
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    background 0.35s ease,
    border-color 0.35s ease;
}

.why-special-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition:
    stroke 0.35s ease,
    transform 0.45s ease;
}

.why-signature-card:hover .why-special-icon {
  transform: rotate(8deg) scale(1.06);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.65);
}

.why-signature-card:hover .why-special-icon svg {
  stroke: white;
  transform: rotate(-8deg);
}

.why-signature-card:hover .why-number {
  color: rgba(255, 255, 255, 0.78);
}

.why-card-content {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 47px;
}

.why-card-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.19em;
  transition: color 0.35s ease;
}

.why-card-content h3 {
  margin: 0;
  font-size: clamp(29px, 2.5vw, 42px);
  line-height: 0.99;
  letter-spacing: -0.045em;
  font-weight: 500;
  transition: transform 0.4s ease;
}

.why-card-content p {
  max-width: 500px;
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.55;
  transition:
    color 0.35s ease,
    transform 0.4s ease;
}

.why-signature-card:hover .why-card-kicker {
  color: rgba(255, 255, 255, 0.72);
}

.why-signature-card:hover .why-card-content h3,
.why-signature-card:hover .why-card-content p {
  transform: translateY(-3px);
}

.why-signature-card:hover .why-card-content p {
  color: rgba(255, 255, 255, 0.88);
}

.why-card-line {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.why-card-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: white;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.why-signature-card:hover .why-card-line::after {
  transform: scaleX(1);
}

.why-card-arrow {
  position: absolute;
  right: 30px;
  bottom: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 16px;
  opacity: 0;
  transform: translate(-6px, 6px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.why-signature-card:hover .why-card-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

.why-signature-bottom {
  margin-top: 48px;
  display: grid;
  grid-template-columns: minmax(40px, 1fr) auto minmax(40px, 1fr);
  align-items: center;
  gap: 24px;
  text-align: center;
}

.why-bottom-line {
  display: block;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.why-signature-bottom p {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(15px, 1.3vw, 20px);
  line-height: 1.5;
  font-weight: 500;
}

.why-signature-bottom em {
  color: var(--orange);
  font-style: normal;
}

@media (max-width: 1000px) {
  .why-signature {
    padding: 72px var(--side) 65px;
  }

  .why-signature-heading h2 {
    font-size: clamp(48px, 8vw, 76px);
  }

  .why-signature-grid {
    margin-top: 48px;
  }

  .why-signature-card {
    min-height: 325px;
  }
}

@media (max-width: 700px) {
  .why-signature {
    padding: 58px var(--side) 55px;
  }

  .why-marquee {
    top: 15%;
    opacity: 0.04;
  }

  .why-marquee span {
    font-size: 145px;
  }

  .why-signature-label {
    margin-bottom: 27px;
    font-size: 9px;
  }

  .why-small-line {
    margin-bottom: 14px;
    font-size: 8px;
  }

  .why-signature-heading h2 {
    font-size: clamp(39px, 11vw, 51px);
    line-height: 0.96;
  }

  .why-intro {
    max-width: 100%;
    margin: 20px 0 0;
    font-size: 13px;
    line-height: 1.6;
  }

  .why-signature-grid {
    margin-top: 36px;
    grid-template-columns: 1fr;
  }

  .why-signature-card {
    min-height: 290px;
    padding: 20px;
    transform: translateY(28px);
  }

  .why-signature-card.why-visible {
    transform: translateY(0);
  }

  .why-special-icon {
    width: 48px;
    height: 48px;
  }

  .why-special-icon svg {
    width: 22px;
    height: 22px;
  }

  .why-card-content {
    left: 20px;
    right: 20px;
    bottom: 42px;
  }

  .why-card-kicker {
    margin-bottom: 9px;
    font-size: 7px;
  }

  .why-card-content h3 {
    font-size: 30px;
  }

  .why-card-content p {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.5;
  }

  .why-card-line {
    left: 20px;
    right: 20px;
    bottom: 21px;
  }

  .why-card-arrow {
    right: 20px;
    bottom: 5px;
  }

  .why-signature-bottom {
    margin-top: 38px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-signature-bottom p {
    max-width: 290px;
    margin: auto;
    font-size: 16px;
  }

  .why-signature-card.mobile-active::before {
    transform: scaleY(1);
  }

  .why-signature-card.mobile-active .why-special-icon {
    transform: rotate(8deg) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.65);
  }

  .why-signature-card.mobile-active .why-special-icon svg {
    stroke: white;
    transform: rotate(-8deg);
  }

  .why-signature-card.mobile-active .why-number,
  .why-signature-card.mobile-active .why-card-kicker {
    color: rgba(255, 255, 255, 0.78);
  }

  .why-signature-card.mobile-active .why-card-content p {
    color: rgba(255, 255, 255, 0.88);
  }

  .why-signature-card.mobile-active .why-card-line::after {
    transform: scaleX(1);
  }

  .why-signature-card.why-dimmed {
    opacity: 1;
  }
}

@media (max-width: 430px) {
  .why-signature {
    padding-top: 52px;
    padding-bottom: 50px;
  }

  .why-signature-heading h2 {
    font-size: 39px;
  }

  .why-signature-card {
    min-height: 280px;
  }

  .why-card-content h3 {
    font-size: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .why-marquee-track {
    animation: none;
  }

  .why-signature-card,
  .why-special-icon,
  .why-special-icon svg,
  .why-card-line::after {
    transition: none;
  }
}

.product-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr) minmax(0, 0.95fr);

  gap: clamp(50px, 7vw, 120px);

  align-items: center;
}

.product-image {
  position: relative;

  height: 620px;

  overflow: hidden;

  border-radius: 17px;

  background: #d6d0c3;
}

.product-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.8s ease;
}

.product-image:hover img {
  transform: scale(1.04);
}

.product-image-text {
  position: absolute;

  left: 30px;
  bottom: 30px;

  color: white;

  font-size: 12px;

  line-height: 1.5;

  letter-spacing: 0.12em;
}

.product-content h2 {
  font-size: clamp(50px, 4.6vw, 82px);

  line-height: 1;

  letter-spacing: -0.055em;

  font-weight: 500;
}

.product-content h2 em {
  color: var(--orange);

  font-style: normal;
}

.product-intro {
  max-width: 650px;

  margin-top: 35px;

  color: var(--muted);

  font-size: 17px;

  line-height: 1.8;
}

.product-features {
  margin-top: 40px;

  border-top: 1px solid var(--border);
}

.product-features>div {
  min-height: 65px;

  padding: 17px 0;

  border-bottom: 1px solid var(--border);

  display: grid;

  grid-template-columns:
    minmax(0, 0.8fr) minmax(0, 1.2fr);

  gap: 25px;

  align-items: center;
}

.product-features strong {
  font-size: 15px;
}

.product-features span {
  color: var(--muted);

  font-size: 14px;
}

.product-button {
  margin-top: 38px;
}

.application-grid {
  margin-top: 70px;

  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 25px;
}

.application-image {
  position: relative;

  height: 520px;

  overflow: hidden;

  border-radius: 16px;

  background: #d5d0c5;
}

.application-image::after,
.gallery-item::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.58), transparent 52%);

  pointer-events: none;
}

.application-image img,
.gallery-item img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.8s ease;
}

.application-image:hover img,
.gallery-item:hover img {
  transform: scale(1.045);
}

.image-overlay {
  position: absolute;

  z-index: 5;

  left: 28px;
  right: 28px;
  bottom: 28px;

  color: white;
}

.image-overlay small {
  font-size: 10px;

  letter-spacing: 0.14em;
}

.image-overlay h3 {
  margin-top: 12px;

  font-size: clamp(22px, 2vw, 34px);

  line-height: 1.15;

  font-weight: 500;
}

.gallery {
  padding-top: 100px;
}

.gallery-grid {
  margin-top: 70px;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr) minmax(0, 1fr);

  gap: 25px;
}

.gallery-item {
  position: relative;

  height: 540px;

  overflow: hidden;

  border-radius: 16px;

  background: #d4cec2;
}

.gallery-large {
  grid-column: 1 / -1;

  height: 600px;
}

.faq {
  border-top: 1px solid var(--border);
}

.faq-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 0.85fr) minmax(0, 1.15fr);

  gap: clamp(70px, 9vw, 160px);
}

.faq-intro {
  max-width: 400px;

  margin-top: 30px;

  color: var(--muted);

  font-size: 16px;

  line-height: 1.7;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  min-height: 92px;

  border: 0;

  background: transparent;
  color: var(--green);

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 25px;

  text-align: left;

  cursor: pointer;

  font-size: 18px;
  font-weight: 500;
}

.plus {
  width: 39px;
  height: 39px;

  flex: 0 0 auto;

  border: 1px solid var(--border);

  border-radius: 50%;

  display: grid;

  place-items: center;

  font-size: 21px;

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
}

.faq-item.active .plus {
  transform: rotate(45deg);

  background: var(--green);
  color: white;
}

.faq-answer {
  max-height: 0;

  overflow: hidden;

  transition: max-height 0.4s ease;
}

.faq-answer p {
  max-width: 650px;

  padding: 0 60px 30px 0;

  color: var(--muted);

  font-size: 15px;

  line-height: 1.75;
}

.contact {
  padding: 130px var(--side) 40px;

  background: var(--green);

  color: var(--cream);
}

.contact-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.25fr) minmax(0, 0.75fr);

  gap: 100px;

  align-items: end;
}

.contact h2 {
  font-size: clamp(60px, 6vw, 105px);

  line-height: 0.98;

  letter-spacing: -0.06em;

  font-weight: 500;
}

.contact h2 em {
  color: #d77a56;

  font-style: normal;
}

.contact-copy p {
  max-width: 430px;

  color: rgba(255, 255, 255, 0.65);

  font-size: 17px;

  line-height: 1.7;
}

.outline-light {
  width: 230px;
  height: 64px;

  margin-top: 32px;

  padding: 0 23px;

  border: 1px solid rgba(255, 255, 255, 0.7);

  border-radius: 9px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.outline-light:hover {
  background: var(--cream);

  color: var(--green);
}

@keyframes heroEntry {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-copy {
  animation: heroEntry 0.7s ease both;
}

.hero-image {
  animation: heroEntry 0.8s 0.08s ease both;
}

@media (max-width: 1150px) {
  .desktop-nav {
    gap: 19px;
  }

  .desktop-nav a {
    font-size: 13px;
  }

  .hero-copy {
    padding-left: 0;
  }

  .hero h1 {
    font-size: clamp(46px, 4.5vw, 64px);
  }
}

@media (max-width: 900px) {
  :root {
    --side: 20px;
  }

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

  .header {
    position: sticky;

    top: 0;

    width: 100%;

    padding: 0 var(--side);

    z-index: 10000;
  }

  .nav-wrap {
    width: min(1600px, calc(100% - 120px));
    margin: 0 auto;
    display: flex;
    align-items: center;
  }

  .logo {
    font-size: 23px;

    letter-spacing: 0.26em;
  }

  .desktop-nav,
  .nav-contact {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .mobile-menu {
    display: block;

    position: fixed;

    top: 78px;
    left: 0;

    width: 100vw;
    height: calc(100dvh - 78px);

    padding: 20px var(--side) 45px;

    background: var(--green);

    color: var(--cream);

    overflow-y: auto;
    overflow-x: hidden;

    visibility: hidden;

    transform: translateX(100%);

    transition:
      transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1),
      visibility 0.4s ease;

    z-index: 10001;
  }

  .mobile-menu.open {
    visibility: visible;

    transform: translateX(0);
  }

  .mobile-menu nav {
    width: 100%;

    display: flex;

    flex-direction: column;
  }

  .mobile-menu nav a {
    width: 100%;

    padding: 18px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.15);

    font-size: clamp(25px, 7vw, 35px);

    line-height: 1.15;

    letter-spacing: -0.03em;
  }

  .hero {
    width: 100%;

    padding: 36px var(--side) 0;
  }

  .hero-grid {
    width: 100%;

    min-height: 0;

    display: flex;

    flex-direction: column;

    gap: 32px;
  }

  .hero-copy {
    width: 100%;

    padding: 0;
  }

  .eyebrow {
    margin-bottom: 25px;

    gap: 11px;

    font-size: 9px;

    letter-spacing: 0.15em;
  }

  .eyebrow>span {
    width: 26px;
  }

  .hero h1 {
    width: 100%;

    font-size: clamp(39px, 10.8vw, 52px);

    line-height: 1.03;

    letter-spacing: -0.05em;
  }

  .hero-copy>p {
    margin-top: 22px;

    font-size: 15px;

    line-height: 1.6;
  }

  .hero-buttons {
    width: 100%;

    margin-top: 26px;

    display: block;
  }

  .primary-btn {
    width: 100%;

    min-width: 0;
    min-height: 58px;

    padding: 0 20px;

    font-size: 14px;
  }

  .hero-buttons .simple-link {
    margin-top: 20px;

    font-size: 13px;
  }

  .hero-image {
    width: 100%;
    height: 390px;

    min-width: 0;
  }

  .carousel {
    width: 100%;
    height: 100%;

    border-radius: 12px;
  }

  .slide img {
    width: 100%;
    height: 100%;

    object-fit: cover;
  }

  .carousel-nav {
    top: 13px;
    right: 13px;

    min-width: 145px;
    height: 44px;

    padding: 0 12px;
  }

  .carousel-nav>button {
    font-size: 17px;
  }

  .dot {
    width: 6px;
    height: 6px;
  }

  .dot.active {
    width: 21px;
  }

  .earth-badge {
    right: 13px;
    bottom: 13px;

    width: 75px;
    height: 75px;
  }

  .earth-badge small {
    font-size: 6px;
  }

  .earth-badge strong {
    font-size: 13px;
  }

  .benefits {
    width: auto;

    margin: 24px var(--side) 0;

    grid-template-columns:
      minmax(0, 1fr) minmax(0, 1fr);
  }

  .benefit {
    min-width: 0;
    min-height: 95px;

    padding: 15px 10px;

    justify-content: flex-start;

    gap: 10px;
  }

  .benefit:nth-child(2) {
    border-right: 0;
  }

  .benefit:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .benefit-icon {
    width: 35px;
    height: 35px;
  }

  .benefit p {
    font-size: 11px;

    line-height: 1.35;
  }

  .section,
  .dark-section {
    width: 100%;

    padding: 85px var(--side);
  }

  .section-tag {
    margin-bottom: 38px;

    font-size: 9px;

    letter-spacing: 0.15em;
  }

  .section-title {
    font-size: clamp(40px, 11vw, 58px);

    line-height: 1.02;
  }

  .about-grid,
  .split-heading,
  .why-heading,
  .product-grid,
  .faq-grid,
  .contact-grid {
    display: block;
  }

  .heading-copy {
    margin-top: 27px;

    font-size: 15px;
  }

  .about-copy {
    margin-top: 42px;

    padding-top: 0;
  }

  .about-copy h3 {
    font-size: 20px;
  }

  .about-copy p {
    font-size: 14px;

    line-height: 1.75;
  }

  .why-heading h2 {
    font-size: clamp(44px, 11.5vw, 62px);
  }

  .why-heading>p {
    margin-top: 28px;

    font-size: 14px;
  }

  .why-grid {
    margin-top: 55px;

    grid-template-columns:
      minmax(0, 1fr) minmax(0, 1fr);
  }

  .why-card {
    min-width: 0;
    min-height: 285px;

    padding: 25px 16px;
  }

  .why-card:nth-child(2) {
    border-right: 0;
  }

  .why-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .why-card h3 {
    font-size: 17px;
  }

  .why-card p {
    font-size: 12px;
  }

  .product-image {
    width: 100%;
    height: 440px;
  }

  .product-content {
    margin-top: 45px;
  }

  .product-content .eyebrow {
    margin-bottom: 25px;
  }

  .product-content h2 {
    font-size: clamp(42px, 11vw, 60px);
  }

  .product-intro {
    margin-top: 23px;

    font-size: 14px;
  }

  .product-features {
    margin-top: 32px;
  }

  .product-features>div {
    display: block;

    padding: 16px 0;
  }

  .product-features span {
    display: block;

    margin-top: 6px;
  }

  .product-button {
    margin-top: 30px;
  }

  .application-grid {
    margin-top: 45px;

    display: block;
  }

  .application-card {
    width: 100%;

    margin-bottom: 20px;
  }

  .application-image {
    width: 100%;
    height: 420px;
  }

  .image-overlay {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .gallery {
    padding-top: 85px;
  }

  .gallery-grid {
    margin-top: 45px;

    display: block;
  }

  .gallery-item,
  .gallery-large {
    width: 100%;
    height: 420px;

    margin-bottom: 20px;
  }

  .faq-grid>div:first-child {
    margin-bottom: 45px;
  }

  .faq-question {
    min-height: 78px;

    font-size: 15px;
  }

  .faq-answer p {
    padding: 0 15px 25px 0;

    font-size: 13px;
  }

  .contact {
    width: 100%;

    padding: 85px var(--side) 30px;
  }

  .contact h2 {
    font-size: clamp(46px, 12vw, 66px);
  }

  .contact-copy {
    margin-top: 38px;
  }

  .contact-copy p {
    font-size: 14px;
  }

  .outline-light {
    width: 100%;
  }
}

@media (max-width: 430px) {
  :root {
    --side: 16px;
  }

  .hero {
    padding-top: 30px;
  }

  .hero h1 {
    font-size: clamp(36px, 10.7vw, 46px);
  }

  .hero-copy>p {
    font-size: 13px;
  }

  .hero-image {
    height: 360px;
  }

  .carousel-nav {
    min-width: 135px;
    height: 41px;
  }

  .benefits {
    margin-top: 20px;
  }

  .benefit {
    padding: 12px 8px;

    gap: 8px;
  }

  .benefit-icon {
    width: 31px;
    height: 31px;
  }

  .benefit p {
    font-size: 9px;
  }

  .section,
  .dark-section {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .why-card {
    min-height: 260px;
  }

  .product-image,
  .application-image,
  .gallery-item,
  .gallery-large {
    height: 380px;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 35px;
  }

  .hero-image {
    height: 330px;
  }

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

  .why-card {
    min-height: 235px;

    border-right: 0 !important;

    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .why-card:last-child {
    border-bottom: 0;
  }

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

  .benefit {
    border-right: 0 !important;

    border-bottom: 1px solid var(--border);
  }

  .benefit:last-child {
    border-bottom: 0;
  }
}

@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;
  }
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  height: 90px;
  width: auto;
  flex-shrink: 0;

  text-decoration: none;
  color: var(--green);
}

.brand-symbol {
  display: block;
  width: 55px;
  height: 78px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
}

.brand-name {
  display: inline-block;

  font-family: "DM Sans", Arial, sans-serif;
  font-size: 42px;
  font-weight: 500;
  letter-spacing: 13px;
  line-height: 1;

  color: var(--green);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .brand-logo {
    height: 66px;
    gap: 7px;
  }

  .brand-symbol {
    width: 38px;
    height: 54px;
  }

  .brand-name {
    font-size: 29px;
    letter-spacing: 9px;
  }
}

@media (max-width: 600px) {
  .brand-logo {
    height: 62px;
    gap: 5px;
  }

  .brand-symbol {
    width: 34px;
    height: 50px;
  }

  .brand-name {
    font-size: 25px;
    letter-spacing: 7px;
  }
}

@media (max-width: 430px) {
  .brand-logo {
    height: 58px;
    gap: 4px;
  }

  .brand-symbol {
    width: 31px;
    height: 46px;
  }

  .brand-name {
    font-size: 22px;
    letter-spacing: 6px;
  }
}

.about-page-section {
  width: 100%;
  background: var(--cream);
  color: var(--green);
  overflow: hidden;
}

.about-intro {
  padding: 125px var(--side) 135px;
}

.about-intro .section-tag {
  margin-bottom: 85px;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(70px, 9vw, 170px);
  align-items: start;
}

.about-intro-title h2 {
  max-width: 820px;

  font-size: clamp(58px, 5.5vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.06em;

  font-weight: 500;
}

.about-intro-title h2 em {
  color: var(--orange);
  font-style: normal;
}

.about-intro-copy {
  max-width: 620px;
  padding-top: 7px;
}

.about-intro-copy h3 {
  max-width: 570px;
  margin-bottom: 30px;

  font-size: clamp(23px, 1.8vw, 31px);
  line-height: 1.35;
  letter-spacing: -0.025em;

  font-weight: 500;
}

.about-intro-copy p {
  max-width: 590px;
  margin-top: 18px;

  color: var(--muted);

  font-size: 16px;
  line-height: 1.82;
}

.about-story-section {
  margin: 0 var(--side);
  padding: 115px 0 125px;

  border-top: 1px solid var(--border);
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);

  gap: clamp(70px, 10vw, 180px);

  align-items: start;
}

.mini-label {
  display: block;

  margin-bottom: 34px;

  color: var(--orange);

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 0.18em;
}

.about-story-title h2 {
  max-width: 760px;

  font-size: clamp(50px, 4.7vw, 86px);
  line-height: 1;

  letter-spacing: -0.055em;

  font-weight: 500;
}

.about-story-title h2 em {
  color: var(--orange);
  font-style: normal;
}

.about-story-copy {
  max-width: 610px;
}

.about-story-copy p {
  margin-bottom: 20px;

  color: var(--muted);

  font-size: 16px;
  line-height: 1.85;
}

.mission-vision-wrap {
  width: calc(100% - (var(--side) * 2));
  max-width: 1450px;

  margin: 0 auto 145px;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 26px;
}

.about-card {
  position: relative;

  min-height: 430px;

  padding: 50px 52px;

  border: 1px solid var(--border);
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.16);

  display: flex;
  flex-direction: column;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.about-card:hover {
  transform: translateY(-5px);

  background: rgba(255, 255, 255, 0.32);

  box-shadow: 0 20px 60px rgba(7, 58, 46, 0.07);
}

.about-card-icon {
  width: 62px;
  height: 62px;

  margin-bottom: 70px;

  border: 1px solid rgba(7, 58, 46, 0.25);
  border-radius: 50%;

  display: grid;
  place-items: center;

  color: var(--orange);

  font-size: 25px;
}

.about-card-icon.green {
  color: var(--green);
}

.about-card-number {
  position: absolute;

  top: 52px;
  right: 52px;

  color: var(--orange);

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 0.15em;
}

.about-card h3 {
  margin-bottom: 20px;

  font-size: clamp(30px, 2.5vw, 43px);
  line-height: 1.08;

  letter-spacing: -0.04em;

  font-weight: 500;
}

.about-card p {
  max-width: 560px;

  color: var(--muted);

  font-size: 16px;
  line-height: 1.8;
}

.sustainability-section {
  width: 100%;

  padding: 135px var(--side) 125px;

  background: var(--green);

  color: var(--cream);
}

.sustainability-inner {
  width: 100%;
  max-width: 1700px;

  margin: 0 auto;
}

.sustainability-section .section-tag {
  margin-bottom: 85px;
}

.sustainability-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr) minmax(0, 0.95fr);

  gap: clamp(70px, 10vw, 180px);

  align-items: start;
}

.sustainability-title h2 {
  max-width: 820px;

  font-size: clamp(58px, 5.5vw, 100px);

  line-height: 0.98;

  letter-spacing: -0.06em;

  font-weight: 500;
}

.sustainability-title h2 em {
  color: #d77a56;

  font-style: normal;
}

.sustainability-copy {
  max-width: 610px;
}

.sustainability-copy h3 {
  max-width: 570px;

  margin-bottom: 30px;

  color: var(--cream);

  font-size: clamp(23px, 1.8vw, 30px);

  line-height: 1.4;

  letter-spacing: -0.025em;

  font-weight: 500;
}

.sustainability-copy p {
  margin-top: 18px;

  color: rgba(255, 255, 255, 0.63);

  font-size: 15px;

  line-height: 1.85;
}

.sustainability-stats {
  margin-top: 105px;

  border-top: 1px solid rgba(255, 255, 255, 0.2);

  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sustainability-stats>div {
  min-height: 240px;

  padding: 34px 38px 20px 0;
}

.sustainability-stats>div:not(:last-child) {
  margin-right: 38px;

  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.sustainability-stats span {
  display: block;

  margin-bottom: 48px;

  color: #d77a56;

  font-size: 11px;

  letter-spacing: 0.16em;
}

.sustainability-stats strong {
  display: block;

  margin-bottom: 15px;

  color: white;

  font-size: 19px;

  line-height: 1.35;

  font-weight: 500;
}

.sustainability-stats p {
  max-width: 340px;

  color: rgba(255, 255, 255, 0.55);

  font-size: 14px;

  line-height: 1.75;
}

.quality-section {
  padding: 135px var(--side) 145px;

  background: var(--cream);
}

.quality-section .section-tag {
  margin-bottom: 80px;
}

.quality-heading {
  display: grid;

  grid-template-columns:
    minmax(0, 1.08fr) minmax(0, 0.92fr);

  gap: clamp(70px, 9vw, 165px);

  align-items: start;
}

.quality-heading h2 {
  max-width: 850px;

  font-size: clamp(56px, 5.2vw, 96px);

  line-height: 0.98;

  letter-spacing: -0.06em;

  font-weight: 500;
}

.quality-heading h2 em {
  color: var(--orange);

  font-style: normal;
}

.quality-heading>div:last-child {
  max-width: 600px;
}

.quality-heading p {
  margin-bottom: 18px;

  color: var(--muted);

  font-size: 16px;

  line-height: 1.82;
}

.strength-grid {
  margin-top: 105px;

  border-top: 1px solid var(--border);

  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.strength-card {
  position: relative;

  min-height: 390px;

  padding: 35px 32px 35px 0;
}

.strength-card:not(:last-child) {
  margin-right: 32px;

  border-right: 1px solid var(--border);
}

.strength-number {
  display: block;

  margin-bottom: 80px;

  color: var(--orange);

  font-size: 11px;

  font-weight: 600;

  letter-spacing: 0.16em;
}

.strength-card h3 {
  max-width: 260px;

  margin-bottom: 18px;

  font-size: clamp(21px, 1.7vw, 28px);

  line-height: 1.22;

  letter-spacing: -0.025em;

  font-weight: 500;
}

.strength-card p {
  max-width: 320px;

  margin-top: 12px;

  color: var(--muted);

  font-size: 14px;

  line-height: 1.75;
}

.founder-section {
  padding: 145px var(--side);

  background: #e9e4d8;
}

.founder-grid {
  width: 100%;
  max-width: 1550px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    minmax(0, 0.88fr) minmax(0, 1.12fr);

  gap: clamp(70px, 9vw, 155px);

  align-items: center;
}

.founder-photo-wrap {
  position: relative;

  max-width: 610px;
}

.founder-photo {
  position: relative;

  width: 100%;
  height: clamp(560px, 47vw, 760px);

  overflow: hidden;

  border-radius: 4px;

  background: #d0cabd;
}

.founder-photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center top;

  transition: transform 0.8s ease;
}

.founder-photo:hover img {
  transform: scale(1.025);
}

.founder-photo-label {
  display: block;

  margin-top: 16px;

  color: var(--muted);

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 0.18em;
}

.founder-content {
  max-width: 720px;
}

.founder-eyebrow {
  display: block;

  margin-bottom: 35px;

  color: var(--orange);

  font-size: 11px;

  font-weight: 600;

  letter-spacing: 0.18em;
}

.founder-content h2 {
  font-size: clamp(60px, 5.3vw, 100px);

  line-height: 0.95;

  letter-spacing: -0.06em;

  font-weight: 500;
}

.founder-content h4 {
  margin-top: 13px;
  margin-bottom: 40px;

  color: var(--muted);

  font-size: 16px;

  font-weight: 500;
}

.founder-content p {
  max-width: 650px;

  margin-top: 18px;

  color: var(--muted);

  font-size: 15px;

  line-height: 1.82;
}

.founder-content .founder-lead {
  color: var(--green);

  font-size: clamp(20px, 1.6vw, 26px);

  line-height: 1.55;

  letter-spacing: -0.015em;
}

.founder-content blockquote {
  position: relative;

  max-width: 650px;

  margin-top: 42px;

  padding: 30px 0 5px 35px;

  border-left: 2px solid var(--orange);

  color: var(--green);

  font-size: clamp(19px, 1.45vw, 24px);

  line-height: 1.55;

  font-weight: 500;

  font-style: normal;
}

.partnership-section {
  padding: 140px var(--side);

  background: var(--cream);
}

.partnership-section .section-tag {
  margin-bottom: 80px;
}

.partnership-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr) minmax(0, 0.95fr);

  gap: clamp(70px, 10vw, 180px);

  align-items: start;
}

.partnership-title h2 {
  max-width: 850px;

  font-size: clamp(55px, 5vw, 94px);

  line-height: 0.99;

  letter-spacing: -0.06em;

  font-weight: 500;
}

.partnership-title h2 em {
  color: var(--orange);

  font-style: normal;
}

.partnership-copy {
  max-width: 620px;
}

.partnership-copy>p {
  margin-bottom: 30px;

  color: var(--muted);

  font-size: 16px;

  line-height: 1.8;
}

.partnership-item {
  min-height: 100px;

  padding: 25px 0;

  border-top: 1px solid var(--border);

  display: grid;

  grid-template-columns: 60px minmax(0, 1fr);

  gap: 20px;
}

.partnership-item:last-of-type {
  border-bottom: 1px solid var(--border);

  margin-bottom: 30px;
}

.partnership-item span {
  padding-top: 4px;

  color: var(--orange);

  font-size: 11px;

  font-weight: 600;

  letter-spacing: 0.15em;
}

.partnership-item p {
  max-width: 480px;

  color: var(--green);

  font-size: 16px;

  line-height: 1.7;
}

.about-ending {
  padding: 150px var(--side) 165px;

  background: #dfd8ca;

  text-align: center;
}

.about-ending>span {
  display: block;

  margin-bottom: 38px;

  color: var(--orange);

  font-size: 11px;

  font-weight: 600;

  letter-spacing: 0.2em;
}

.about-ending h2 {
  font-size: clamp(68px, 7vw, 132px);

  line-height: 0.88;

  letter-spacing: -0.065em;

  font-weight: 500;
}

.about-ending h2 em {
  color: var(--orange);

  font-style: normal;
}

.about-ending>p {
  max-width: 690px;

  margin: 45px auto 0;

  color: var(--muted);

  font-size: 17px;

  line-height: 1.8;
}

.about-values {
  max-width: 1050px;

  margin: 60px auto 0;

  padding: 27px 0;

  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);

  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-values span {
  padding: 0 18px;

  color: var(--green);

  font-size: 13px;

  font-weight: 500;

  line-height: 1.5;
}

.about-values span:not(:last-child) {
  border-right: 1px solid var(--border);
}

.about-ending>strong {
  display: block;

  max-width: 770px;

  margin: 50px auto 0;

  color: var(--green);

  font-size: clamp(20px, 1.7vw, 27px);

  line-height: 1.55;

  font-weight: 500;
}

@media (max-width: 1100px) {

  .about-intro-grid,
  .about-story-grid,
  .sustainability-grid,
  .quality-heading,
  .partnership-grid {
    gap: 60px;
  }

  .mission-vision-wrap {
    margin-bottom: 110px;
  }

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

  .strength-card {
    min-height: 330px;

    padding: 35px;
  }

  .strength-card:not(:last-child) {
    margin-right: 0;
  }

  .strength-card:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

  .strength-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .founder-grid {
    gap: 60px;
  }

  .founder-photo {
    height: 620px;
  }
}

@media (max-width: 900px) {
  .about-intro {
    padding: 80px var(--side) 85px;
  }

  .about-intro .section-tag {
    margin-bottom: 48px;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;

    gap: 42px;
  }

  .about-intro-title h2 {
    max-width: 100%;

    font-size: clamp(46px, 12vw, 68px);

    line-height: 0.98;
  }

  .about-intro-copy {
    max-width: 100%;

    padding-top: 0;
  }

  .about-intro-copy h3 {
    font-size: 22px;

    line-height: 1.4;
  }

  .about-intro-copy p {
    font-size: 15px;

    line-height: 1.75;
  }

  .about-story-section {
    padding: 75px 0 80px;
  }

  .about-story-grid {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .mini-label {
    margin-bottom: 24px;
  }

  .about-story-title h2 {
    font-size: clamp(43px, 11vw, 62px);
  }

  .about-story-copy p {
    font-size: 15px;

    line-height: 1.75;
  }

  .mission-vision-wrap {
    width: calc(100% - (var(--side) * 2));

    margin-bottom: 90px;

    grid-template-columns: 1fr;

    gap: 16px;
  }

  .about-card {
    min-height: auto;

    padding: 32px 27px 38px;
  }

  .about-card-icon {
    width: 52px;
    height: 52px;

    margin-bottom: 55px;
  }

  .about-card-number {
    top: 34px;
    right: 28px;
  }

  .about-card h3 {
    font-size: 31px;
  }

  .about-card p {
    font-size: 15px;

    line-height: 1.72;
  }

  .sustainability-section {
    padding: 85px var(--side) 80px;
  }

  .sustainability-section .section-tag {
    margin-bottom: 50px;
  }

  .sustainability-grid {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .sustainability-title h2 {
    font-size: clamp(47px, 12vw, 67px);
  }

  .sustainability-copy h3 {
    font-size: 22px;
  }

  .sustainability-copy p {
    font-size: 15px;

    line-height: 1.75;
  }

  .sustainability-stats {
    margin-top: 70px;

    grid-template-columns: 1fr;
  }

  .sustainability-stats>div {
    min-height: auto;

    padding: 30px 0;
  }

  .sustainability-stats>div:not(:last-child) {
    margin-right: 0;

    border-right: 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .sustainability-stats span {
    margin-bottom: 25px;
  }

  .quality-section {
    padding: 85px var(--side) 90px;
  }

  .quality-section .section-tag {
    margin-bottom: 50px;
  }

  .quality-heading {
    grid-template-columns: 1fr;

    gap: 42px;
  }

  .quality-heading h2 {
    font-size: clamp(45px, 11.5vw, 65px);
  }

  .quality-heading p {
    font-size: 15px;

    line-height: 1.75;
  }

  .strength-grid {
    margin-top: 65px;

    grid-template-columns: 1fr;
  }

  .strength-card {
    min-height: auto;

    padding: 32px 0 38px;

    border-right: 0 !important;

    border-bottom: 1px solid var(--border);
  }

  .strength-number {
    margin-bottom: 35px;
  }

  .strength-card h3 {
    max-width: 100%;

    font-size: 25px;
  }

  .strength-card p {
    max-width: 100%;

    font-size: 14px;
  }

  .founder-section {
    padding: 85px var(--side) 90px;
  }

  .founder-grid {
    grid-template-columns: 1fr;

    gap: 55px;
  }

  .founder-photo-wrap {
    max-width: 100%;
  }

  .founder-photo {
    width: 100%;

    height: min(125vw, 620px);
  }

  .founder-content {
    max-width: 100%;
  }

  .founder-eyebrow {
    margin-bottom: 25px;
  }

  .founder-content h2 {
    font-size: clamp(55px, 15vw, 78px);
  }

  .founder-content h4 {
    margin-bottom: 32px;
  }

  .founder-content .founder-lead {
    font-size: 20px;

    line-height: 1.55;
  }

  .founder-content p {
    font-size: 15px;

    line-height: 1.75;
  }

  .founder-content blockquote {
    margin-top: 35px;

    padding: 25px 0 3px 25px;

    font-size: 19px;
  }

  .partnership-section {
    padding: 85px var(--side) 90px;
  }

  .partnership-section .section-tag {
    margin-bottom: 50px;
  }

  .partnership-grid {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .partnership-title h2 {
    font-size: clamp(45px, 11.5vw, 65px);
  }

  .partnership-copy>p {
    font-size: 15px;
  }

  .partnership-item {
    grid-template-columns: 45px 1fr;
  }

  .partnership-item p {
    font-size: 15px;
  }

  .about-ending {
    padding: 90px var(--side) 95px;
  }

  .about-ending>span {
    margin-bottom: 30px;

    font-size: 10px;
  }

  .about-ending h2 {
    font-size: clamp(57px, 15vw, 82px);

    line-height: 0.91;
  }

  .about-ending>p {
    margin-top: 35px;

    font-size: 15px;

    line-height: 1.75;
  }

  .about-values {
    margin-top: 45px;

    padding: 0;

    grid-template-columns: 1fr;
  }

  .about-values span {
    padding: 18px 5px;

    border-right: 0 !important;
  }

  .about-values span:not(:last-child) {
    border-bottom: 1px solid var(--border);
  }

  .about-ending>strong {
    margin-top: 40px;

    font-size: 19px;
  }
}

@media (max-width: 520px) {
  .about-intro {
    padding-top: 65px;
  }

  .about-intro-title h2 {
    font-size: 45px;
  }

  .about-story-title h2,
  .quality-heading h2,
  .partnership-title h2 {
    font-size: 43px;
  }

  .sustainability-title h2 {
    font-size: 45px;
  }

  .founder-photo {
    height: 118vw;

    max-height: 520px;
  }

  .founder-content h2 {
    font-size: 58px;
  }

  .about-ending h2 {
    font-size: 57px;
  }
}

.future-intro {
  position: relative;
  width: 100%;
  padding: 120px var(--side);
  background: var(--cream);
  color: var(--green);
  overflow: hidden;
}

.future-intro-inner {
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;

  display: grid;
  grid-template-columns:
    minmax(0, 0.9fr) minmax(0, 1.1fr);

  gap: clamp(70px, 8vw, 150px);
  align-items: center;
}

.future-intro-content {
  max-width: 680px;
}

.future-eyebrow {
  display: block;
  margin-bottom: 35px;

  color: var(--orange);

  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.future-intro-content h2 {
  margin: 0;

  font-size: clamp(52px, 5vw, 86px);
  line-height: 0.98;

  letter-spacing: -0.055em;
  font-weight: 500;
}

.future-intro-content h2 span {
  color: var(--orange);
}

.future-intro-content p {
  max-width: 620px;

  margin-top: 27px;

  color: var(--muted);

  font-size: 16px;
  line-height: 1.8;
}

.future-intro-content p+p {
  margin-top: 15px;
}

.future-btn {
  width: max-content;

  margin-top: 35px;
  padding-bottom: 8px;

  border-bottom: 1px solid var(--border);

  display: inline-flex;
  align-items: center;
  gap: 18px;

  font-size: 15px;
  font-weight: 600;

  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}

.future-btn-arrow {
  color: var(--orange);
  font-size: 20px;

  transition: transform 0.3s ease;
}

.future-btn:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.future-btn:hover .future-btn-arrow {
  transform: translateX(7px);
}

.future-intro-visual {
  width: 100%;

  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.future-image-wrap {
  position: relative;

  width: 100%;
  max-width: 760px;
  height: 620px;

  overflow: hidden;

  border-radius: 18px;

  background: #e6e0d3;
}

.future-image {
  width: 100%;
  height: 100%;

  object-fit: contain;

  padding: 65px;

  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.future-image-wrap:hover .future-image {
  transform: scale(1.035) rotate(-1deg);
}

.future-image-label {
  position: absolute;

  right: 28px;
  bottom: 28px;

  width: 110px;
  height: 110px;

  border: 1px solid rgba(7, 58, 46, 0.35);
  border-radius: 50%;

  background: rgba(243, 240, 231, 0.72);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  transform: rotate(-7deg);
}

.future-image-label span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.future-image-label strong {
  margin-top: 4px;

  color: var(--orange);

  font-size: 19px;
  font-weight: 600;
}

@media (max-width: 1000px) {
  .future-intro {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .future-intro-inner {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .future-image-wrap {
    height: 520px;
  }

  .future-image {
    padding: 45px;
  }
}

@media (max-width: 760px) {
  .future-intro {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .future-intro-inner {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .future-intro-content {
    max-width: 100%;
  }

  .future-eyebrow {
    margin-bottom: 25px;
    font-size: 9px;
  }

  .future-intro-content h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .future-intro-content p {
    font-size: 14px;
    line-height: 1.7;
  }

  .future-intro-visual {
    justify-content: center;
  }

  .future-image-wrap {
    max-width: 100%;
    height: 450px;
  }

  .future-image {
    padding: 35px;
  }

  .future-image-label {
    width: 90px;
    height: 90px;

    right: 18px;
    bottom: 18px;
  }
}

@media (max-width: 430px) {
  .future-intro {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .future-intro-inner {
    gap: 45px;
  }

  .future-intro-content h2 {
    font-size: 42px;
  }

  .future-image-wrap {
    height: 360px;
  }

  .future-image {
    padding: 25px;
  }
}

.sustainability-section {
  position: relative;
  width: 100%;
  padding: 88px var(--side) 72px;
  background: var(--green);
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}

.sustainability-bg-word {
  position: absolute;
  top: 40px;
  right: -25px;

  color: rgba(255, 255, 255, 0.025);

  font-size: clamp(150px, 21vw, 340px);
  line-height: 0.8;
  font-weight: 600;
  letter-spacing: -0.08em;

  pointer-events: none;
  user-select: none;

  z-index: -1;
}

.sustainability-inner {
  position: relative;

  width: 100%;
  max-width: 1700px;

  margin: 0 auto;

  z-index: 2;
}

.sustainability-section .sustainability-tag {
  margin-bottom: 46px;

  color: rgba(255, 255, 255, 0.55);

  font-size: 10px;
}

.sustainability-section .sustainability-tag span {
  color: var(--orange);
}

.sustainability-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr) minmax(0, 0.95fr);

  gap: clamp(55px, 8vw, 125px);

  align-items: start;
}

.sustainability-kicker {
  display: block;

  margin-bottom: 17px;

  color: var(--orange);

  font-size: 9px;
  font-weight: 600;

  letter-spacing: 0.2em;
}

.sustainability-title h2 {
  max-width: 720px;

  margin: 0;

  font-size: clamp(48px, 4.8vw, 78px);

  line-height: 0.94;

  letter-spacing: -0.06em;

  font-weight: 500;
}

.sustainability-title h2 em {
  color: var(--orange);
  font-style: normal;
}

.sustainability-lead {
  max-width: 490px;

  margin-top: 25px;

  color: rgba(255, 255, 255, 0.55);

  font-size: 14px;

  line-height: 1.7;
}

.sustainability-copy {
  max-width: 570px;

  padding-top: 4px;
}

.sustainability-copy h3 {
  max-width: 540px;

  margin: 0 0 22px;

  color: var(--cream);

  font-size: clamp(20px, 1.55vw, 26px);

  line-height: 1.4;

  letter-spacing: -0.025em;

  font-weight: 500;
}

.sustainability-copy p {
  margin-top: 13px;

  color: rgba(255, 255, 255, 0.58);

  font-size: 13px;

  line-height: 1.72;
}

.sustainability-stats {
  margin-top: 62px;

  border-top: 1px solid rgba(255, 255, 255, 0.18);

  border-left: 1px solid rgba(255, 255, 255, 0.18);

  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sustainability-stats>.sustainability-card {
  position: relative;

  min-height: 270px;

  margin: 0;

  padding: 24px 26px;

  border-right: 1px solid rgba(255, 255, 255, 0.18);

  border-bottom: 1px solid rgba(255, 255, 255, 0.18);

  overflow: hidden;

  transition:
    background 0.4s ease,
    transform 0.4s ease;
}

.sustainability-card::before {
  content: "";

  position: absolute;
  inset: 0;

  background: var(--orange);

  transform: scaleY(0);

  transform-origin: bottom;

  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);

  z-index: -1;
}

.sustainability-card:hover::before {
  transform: scaleY(1);
}

.sustainability-card:hover {
  transform: translateY(-3px);
}

.sustainability-card-top {
  display: flex;

  align-items: flex-start;

  justify-content: space-between;
}

.sustainability-number {
  display: block;

  margin: 0;

  color: var(--orange);

  font-size: 9px;

  font-weight: 600;

  letter-spacing: 0.17em;

  transition: color 0.3s ease;
}

.sustainability-icon {
  width: 48px;
  height: 48px;

  border: 1px solid rgba(255, 255, 255, 0.28);

  border-radius: 50%;

  display: grid;

  place-items: center;

  transition:
    transform 0.4s ease,
    background 0.4s ease;
}

.sustainability-icon svg {
  width: 22px;
  height: 22px;

  fill: none;

  stroke: var(--orange);

  stroke-width: 1.7;

  stroke-linecap: round;
  stroke-linejoin: round;

  transition:
    stroke 0.3s ease,
    transform 0.4s ease;
}

.sustainability-card:hover .sustainability-icon {
  transform: rotate(7deg) scale(1.05);

  background: rgba(255, 255, 255, 0.1);
}

.sustainability-card:hover .sustainability-icon svg {
  stroke: white;

  transform: rotate(-7deg);
}

.sustainability-card:hover .sustainability-number {
  color: rgba(255, 255, 255, 0.72);
}

.sustainability-card-content {
  position: absolute;

  left: 26px;
  right: 26px;

  bottom: 40px;
}

.sustainability-card-content small {
  display: block;

  margin-bottom: 8px;

  color: var(--orange);

  font-size: 7px;

  font-weight: 600;

  letter-spacing: 0.19em;

  transition: color 0.3s ease;
}

.sustainability-card-content h3 {
  margin: 0;

  color: var(--cream);

  font-size: clamp(24px, 2vw, 32px);

  line-height: 1;

  letter-spacing: -0.04em;

  font-weight: 500;
}

.sustainability-card-content p {
  max-width: 330px;

  margin-top: 11px;

  color: rgba(255, 255, 255, 0.52);

  font-size: 12px;

  line-height: 1.55;

  transition: color 0.3s ease;
}

.sustainability-card:hover .sustainability-card-content small {
  color: rgba(255, 255, 255, 0.72);
}

.sustainability-card:hover .sustainability-card-content p {
  color: rgba(255, 255, 255, 0.86);
}

.sustainability-card-line {
  position: absolute;

  left: 26px;
  right: 26px;

  bottom: 20px;

  height: 1px;

  background: rgba(255, 255, 255, 0.17);

  overflow: hidden;
}

.sustainability-card-line::after {
  content: "";

  position: absolute;

  inset: 0;

  background: white;

  transform: scaleX(0);

  transform-origin: left;

  transition: transform 0.5s ease;
}

.sustainability-card:hover .sustainability-card-line::after {
  transform: scaleX(1);
}

.sustainability-bottom {
  margin-top: 40px;

  display: grid;

  grid-template-columns:
    minmax(40px, 1fr) auto minmax(40px, 1fr);

  align-items: center;

  gap: 22px;

  text-align: center;
}

.sustainability-bottom>span {
  height: 1px;

  background: rgba(255, 255, 255, 0.16);
}

.sustainability-bottom p {
  color: rgba(255, 255, 255, 0.7);

  font-size: clamp(14px, 1.2vw, 18px);

  font-weight: 500;
}

.sustainability-bottom em {
  color: var(--orange);

  font-style: normal;
}

@media (max-width: 900px) {
  .sustainability-section {
    padding: 72px var(--side) 65px;
  }

  .sustainability-grid {
    grid-template-columns: 1fr;

    gap: 38px;
  }

  .sustainability-title h2 {
    max-width: 650px;

    font-size: clamp(46px, 8vw, 67px);
  }

  .sustainability-copy {
    max-width: 650px;
  }

  .sustainability-stats {
    margin-top: 50px;
  }

  .sustainability-stats>.sustainability-card {
    min-height: 280px;

    padding: 21px;
  }

  .sustainability-card-content {
    left: 21px;
    right: 21px;
  }

  .sustainability-card-line {
    left: 21px;
    right: 21px;
  }
}

@media (max-width: 700px) {
  .sustainability-section {
    padding: 58px var(--side) 52px;
  }

  .sustainability-section .sustainability-tag {
    margin-bottom: 30px;

    font-size: 9px;
  }

  .sustainability-bg-word {
    top: 120px;

    right: -20px;

    font-size: 145px;
  }

  .sustainability-grid {
    gap: 31px;
  }

  .sustainability-title h2 {
    font-size: clamp(39px, 11vw, 51px);
  }

  .sustainability-lead {
    margin-top: 19px;

    font-size: 13px;
  }

  .sustainability-copy h3 {
    margin-bottom: 17px;

    font-size: 20px;
  }

  .sustainability-copy p {
    font-size: 12.5px;
  }

  .sustainability-stats {
    margin-top: 38px;

    grid-template-columns: 1fr;
  }

  .sustainability-stats>.sustainability-card {
    min-height: 255px;

    padding: 20px;
  }

  .sustainability-card-content {
    left: 20px;
    right: 20px;

    bottom: 38px;
  }

  .sustainability-card-content h3 {
    font-size: 27px;
  }

  .sustainability-card-line {
    left: 20px;
    right: 20px;

    bottom: 18px;
  }

  .sustainability-bottom {
    margin-top: 32px;

    grid-template-columns: 1fr;

    gap: 13px;
  }

  .sustainability-bottom p {
    max-width: 270px;

    margin: auto;

    line-height: 1.5;
  }
}

@media (max-width: 430px) {
  .sustainability-section {
    padding-top: 52px;
    padding-bottom: 48px;
  }

  .sustainability-title h2 {
    font-size: 39px;
  }

  .sustainability-stats>.sustainability-card {
    min-height: 245px;
  }
}

.about-page-section {
  position: relative;

  padding: 85px var(--side) 90px;

  background: #f3f0e7;
  color: var(--green);

  overflow: hidden;
}

.about-story-inner {
  width: 100%;
  max-width: 1700px;

  margin: 0 auto;
}

.about-page-section .about-story-tag {
  margin-bottom: 48px;
}

.about-intro-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 0.95fr) minmax(0, 1.05fr);

  gap: clamp(60px, 8vw, 130px);

  align-items: start;
}

.story-eyebrow {
  display: block;

  margin-bottom: 18px;

  color: var(--orange);

  font-size: 9px;
  font-weight: 600;

  letter-spacing: 0.2em;
}

.about-intro-title h2 {
  max-width: 720px;

  margin: 0;

  font-size: clamp(48px, 4.7vw, 78px);

  line-height: 0.96;

  letter-spacing: -0.055em;

  font-weight: 500;
}

.about-intro-title h2 em {
  color: var(--orange);

  font-style: normal;
}

.story-year {
  width: max-content;

  margin-top: 45px;

  padding-top: 14px;

  border-top: 1px solid var(--border);
}

.story-year span {
  display: block;

  margin-bottom: 5px;

  color: var(--muted);

  font-size: 8px;
  font-weight: 600;

  letter-spacing: 0.18em;
}

.story-year strong {
  color: var(--green);

  font-size: clamp(38px, 3vw, 52px);

  line-height: 1;

  font-weight: 500;

  letter-spacing: -0.04em;
}

.about-intro-copy {
  max-width: 650px;
}

.about-intro-copy h3 {
  max-width: 600px;

  margin: 0 0 25px;

  color: var(--green);

  font-size: clamp(21px, 1.6vw, 27px);

  line-height: 1.4;

  letter-spacing: -0.025em;

  font-weight: 500;
}

.about-intro-copy p {
  margin: 0;

  color: var(--muted);

  font-size: 13px;

  line-height: 1.72;
}

.about-intro-copy p+p {
  margin-top: 13px;
}

.mission-vision-wrap {
  margin-top: 65px;

  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 18px;
}

.about-page-section .about-card {
  position: relative;

  min-height: 285px;

  padding: 28px 30px 32px;

  border: 1px solid var(--border);

  background: rgba(255, 255, 255, 0.2);

  overflow: hidden;

  transition:
    transform 0.4s ease,
    background 0.4s ease,
    border-color 0.4s ease;
}

.about-page-section .about-card::before {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  height: 4px;

  background: var(--orange);

  transform: scaleX(0);

  transform-origin: left;

  transition: transform 0.45s ease;
}

.about-page-section .about-card:hover {
  transform: translateY(-4px);

  background: rgba(255, 255, 255, 0.45);

  border-color: rgba(7, 58, 46, 0.28);
}

.about-page-section .about-card:hover::before {
  transform: scaleX(1);
}

.about-card-top {
  display: flex;

  justify-content: space-between;

  align-items: flex-start;

  margin-bottom: 45px;
}

.about-card-number {
  color: var(--orange);

  font-size: 9px;

  font-weight: 600;

  letter-spacing: 0.17em;
}

.about-page-section .about-card-icon {
  width: 42px;
  height: 42px;

  border: 1px solid var(--border);

  border-radius: 50%;

  display: grid;

  place-items: center;

  color: var(--orange);

  font-size: 19px;

  transition:
    transform 0.4s ease,
    background 0.4s ease,
    color 0.4s ease;
}

.about-page-section .about-card-icon.green {
  color: var(--green);
}

.about-page-section .about-card:hover .about-card-icon {
  transform: rotate(12deg);

  background: var(--green);

  color: var(--cream);
}

.about-card-label {
  display: block;

  margin-bottom: 9px;

  color: var(--muted);

  font-size: 8px;

  font-weight: 600;

  letter-spacing: 0.18em;
}

.about-page-section .about-card h3 {
  margin: 0 0 14px;

  color: var(--green);

  font-size: clamp(28px, 2.4vw, 38px);

  line-height: 1;

  letter-spacing: -0.035em;

  font-weight: 500;
}

.about-page-section .about-card p {
  max-width: 600px;

  margin: 0;

  color: var(--muted);

  font-size: 13px;

  line-height: 1.65;
}

.about-card-line {
  position: absolute;

  left: 30px;
  right: 30px;

  bottom: 20px;

  height: 1px;

  background: var(--border);
}

@media (max-width: 900px) {
  .about-page-section {
    padding: 72px var(--side) 75px;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;

    gap: 42px;
  }

  .about-intro-title h2 {
    max-width: 650px;

    font-size: clamp(46px, 8vw, 65px);
  }

  .story-year {
    margin-top: 30px;
  }

  .about-intro-copy {
    max-width: 700px;
  }

  .mission-vision-wrap {
    margin-top: 52px;
  }
}

@media (max-width: 700px) {
  .about-page-section {
    padding: 58px var(--side) 60px;
  }

  .about-page-section .about-story-tag {
    margin-bottom: 30px;
  }

  .about-intro-grid {
    gap: 35px;
  }

  .about-intro-title h2 {
    font-size: clamp(40px, 11vw, 52px);
  }

  .story-year {
    margin-top: 25px;
  }

  .story-year strong {
    font-size: 38px;
  }

  .about-intro-copy h3 {
    font-size: 20px;
  }

  .about-intro-copy p {
    font-size: 12.5px;
  }

  .mission-vision-wrap {
    margin-top: 42px;

    grid-template-columns: 1fr;
  }

  .about-page-section .about-card {
    min-height: 260px;

    padding: 24px;
  }

  .about-card-top {
    margin-bottom: 35px;
  }

  .about-card-line {
    left: 24px;
    right: 24px;
  }
}

@media (max-width: 430px) {
  .about-page-section {
    padding-top: 52px;
    padding-bottom: 55px;
  }

  .about-intro-title h2 {
    font-size: 39px;
  }

  .about-page-section .about-card {
    min-height: 275px;
  }
}

.quality-section {
  position: relative;

  width: 100%;

  margin-top: 0;

  padding: 68px var(--side) 82px;

  background: var(--cream);
  color: var(--green);

  overflow: hidden;
}

.quality-inner {
  width: 100%;
  max-width: 1700px;

  margin: 0 auto;
}

.quality-section .quality-tag {
  margin-bottom: 42px;
}

.quality-heading {
  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr) minmax(0, 0.95fr);

  gap: clamp(55px, 8vw, 125px);

  align-items: start;
}

.quality-eyebrow {
  display: block;

  margin-bottom: 17px;

  color: var(--orange);

  font-size: 9px;
  font-weight: 600;

  letter-spacing: 0.2em;
}

.quality-title h2 {
  max-width: 760px;

  margin: 0;

  font-size: clamp(48px, 4.7vw, 78px);

  line-height: 0.96;

  letter-spacing: -0.055em;

  font-weight: 500;
}

.quality-title h2 em {
  color: var(--orange);

  font-style: normal;
}

.quality-copy {
  max-width: 610px;

  padding-top: 4px;
}

.quality-copy p {
  margin: 0;

  color: var(--muted);

  font-size: 13px;

  line-height: 1.72;
}

.quality-copy p+p {
  margin-top: 14px;
}

.strength-grid {
  margin-top: 58px;

  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  border-top: 1px solid var(--border);

  border-left: 1px solid var(--border);
}

.quality-section .strength-card {
  position: relative;

  min-height: 340px;

  margin: 0;

  padding: 24px 24px 28px;

  border-right: 1px solid var(--border);

  border-bottom: 1px solid var(--border);

  background: rgba(255, 255, 255, 0.1);

  overflow: hidden;

  transition:
    background 0.4s ease,
    transform 0.4s ease;
}

.quality-section .strength-card::before {
  content: "";

  position: absolute;

  inset: 0;

  background: var(--green);

  transform: scaleY(0);

  transform-origin: bottom;

  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);

  z-index: 0;
}

.quality-section .strength-card:hover::before {
  transform: scaleY(1);
}

.quality-section .strength-card:hover {
  transform: translateY(-3px);
}

.strength-card-top,
.strength-card-content,
.strength-line {
  position: relative;
  z-index: 2;
}

.strength-card-top {
  display: flex;

  align-items: center;

  justify-content: space-between;
}

.quality-section .strength-number {
  color: var(--orange);

  font-size: 9px;

  font-weight: 600;

  letter-spacing: 0.17em;

  transition: color 0.3s ease;
}

.strength-symbol {
  width: 32px;
  height: 32px;

  border: 1px solid var(--border);

  border-radius: 50%;

  display: grid;

  place-items: center;

  color: var(--green);

  font-size: 16px;
  font-weight: 300;

  transition:
    transform 0.4s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.strength-card:hover .strength-symbol {
  transform: rotate(45deg);

  color: white;

  border-color: rgba(255, 255, 255, 0.3);
}

.strength-card-content {
  margin-top: 55px;
}

.strength-label {
  display: block;

  margin-bottom: 10px;

  color: var(--orange);

  font-size: 7px;

  font-weight: 600;

  letter-spacing: 0.2em;

  transition: color 0.3s ease;
}

.quality-section .strength-card h3 {
  max-width: 270px;

  margin: 0 0 16px;

  color: var(--green);

  font-size: clamp(21px, 1.7vw, 27px);

  line-height: 1.08;

  letter-spacing: -0.035em;

  font-weight: 500;

  transition: color 0.3s ease;
}

.quality-section .strength-card p {
  max-width: 300px;

  margin: 0;

  color: var(--muted);

  font-size: 11.5px;

  line-height: 1.58;

  transition: color 0.3s ease;
}

.quality-section .strength-card p+p {
  margin-top: 10px;
}

.strength-line {
  position: absolute;

  left: 24px;
  right: 24px;

  bottom: 20px;

  height: 1px;

  background: var(--border);
}

.quality-section .strength-card:hover .strength-number,
.quality-section .strength-card:hover .strength-label {
  color: var(--orange);
}

.quality-section .strength-card:hover h3 {
  color: var(--cream);
}

.quality-section .strength-card:hover p {
  color: rgba(255, 255, 255, 0.65);
}

.quality-section .strength-card:hover .strength-line {
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 1100px) {
  .strength-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quality-section .strength-card {
    min-height: 310px;
  }
}

@media (max-width: 900px) {
  .quality-section {
    padding: 60px var(--side) 70px;
  }

  .quality-heading {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .quality-title h2 {
    max-width: 650px;

    font-size: clamp(45px, 8vw, 65px);
  }

  .quality-copy {
    max-width: 700px;
  }

  .strength-grid {
    margin-top: 48px;
  }
}

@media (max-width: 650px) {
  .quality-section {
    padding: 52px var(--side) 58px;
  }

  .quality-section .quality-tag {
    margin-bottom: 28px;
  }

  .quality-heading {
    gap: 29px;
  }

  .quality-title h2 {
    font-size: clamp(39px, 11vw, 51px);
  }

  .quality-copy p {
    font-size: 12.5px;
  }

  .strength-grid {
    margin-top: 38px;

    grid-template-columns: 1fr;
  }

  .quality-section .strength-card {
    min-height: 270px;

    padding: 21px;
  }

  .strength-card-content {
    margin-top: 42px;
  }

  .quality-section .strength-card h3 {
    max-width: 100%;

    font-size: 24px;
  }

  .quality-section .strength-card p {
    max-width: 100%;

    font-size: 12px;
  }

  .strength-line {
    left: 21px;
    right: 21px;

    bottom: 17px;
  }
}

#product.section {
  padding-top: 70px;
  padding-bottom: 75px;
}

#product .section-tag {
  margin-bottom: 42px;
}

#product .product-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 0.95fr) minmax(0, 1.05fr);

  gap: clamp(45px, 6vw, 90px);

  align-items: center;
}

#product .product-image {
  position: relative;

  width: 100%;
  height: clamp(430px, 43vw, 590px);

  overflow: hidden;
}

#product .product-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.7s ease;
}

#product .product-image:hover img {
  transform: scale(1.025);
}

#product .product-image-text {
  position: absolute;

  left: 22px;
  bottom: 20px;

  padding: 10px 13px;

  background: rgba(7, 58, 46, 0.88);

  color: white;

  font-size: 8px;
  line-height: 1.5;

  letter-spacing: 0.13em;

  backdrop-filter: blur(8px);
}

#product .product-content {
  max-width: 650px;
}

#product .eyebrow {
  margin-bottom: 17px;

  font-size: 9px;
}

#product .product-content h2 {
  margin: 0;

  font-size: clamp(48px, 4.7vw, 76px);

  line-height: 0.95;

  letter-spacing: -0.055em;

  font-weight: 500;
}

#product .product-content h2 em {
  color: var(--orange);

  font-style: normal;
}

#product .product-intro {
  max-width: 570px;

  margin-top: 22px;

  font-size: 14px;
  line-height: 1.7;

  color: var(--muted);
}

#product .product-features {
  margin-top: 30px;

  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  border-top: 1px solid var(--border);
}

#product .product-features>div {
  padding: 18px 20px 18px 0;

  border-bottom: 1px solid var(--border);
}

#product .product-features>div:nth-child(odd) {
  border-right: 1px solid var(--border);
}

#product .product-features>div:nth-child(even) {
  padding-left: 20px;
}

#product .product-features strong {
  display: block;

  margin-bottom: 5px;

  font-size: 13px;
  font-weight: 600;

  color: var(--green);
}

#product .product-features span {
  display: block;

  font-size: 11px;
  line-height: 1.5;

  color: var(--muted);
}

#product .product-actions {
  margin-top: 28px;

  display: flex;
  align-items: center;

  gap: 28px;

  flex-wrap: wrap;
}

#product .product-button {
  margin: 0;
}

#product .product-contact-link {
  padding-bottom: 5px;

  border-bottom: 1px solid rgba(7, 58, 46, 0.35);

  color: var(--green);

  font-size: 12px;
  font-weight: 600;

  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}

#product .product-contact-link:hover {
  color: var(--orange);
  border-color: var(--orange);
}

@media (max-width: 900px) {
  #product.section {
    padding-top: 60px;
    padding-bottom: 65px;
  }

  #product .product-grid {
    gap: 40px;
  }

  #product .product-image {
    height: 480px;
  }
}

@media (max-width: 700px) {
  #product.section {
    padding-top: 52px;
    padding-bottom: 55px;
  }

  #product .section-tag {
    margin-bottom: 28px;
  }

  #product .product-grid {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  #product .product-image {
    height: 400px;
  }

  #product .product-content h2 {
    font-size: clamp(42px, 12vw, 54px);
  }

  #product .product-features {
    grid-template-columns: 1fr;
  }

  #product .product-features>div {
    padding: 15px 0;

    border-right: 0 !important;
  }

  #product .product-features>div:nth-child(even) {
    padding-left: 0;
  }

  #product .product-actions {
    gap: 20px;
  }
}

@media (max-width: 430px) {
  #product .product-image {
    height: 350px;
  }
}

.nav-cta {
  margin-left: 32px;
  white-space: nowrap;
}

#product {
  padding-top: 80px;
  padding-bottom: 90px;
}

#product .section-tag {
  margin-bottom: 45px;
}

#product .product-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

#product .product-image {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

#product .product-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

#product .product-content h2 {
  font-size: clamp(48px, 5vw, 76px);
  line-height: 0.95;
  margin: 20px 0 25px;
}

#product .product-intro {
  max-width: 540px;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 32px;
}

#product .product-features {
  margin-top: 25px;
}

#product .product-features>div {
  padding: 16px 0;
}

#product .product-features strong {
  font-size: 16px;
}

#product .product-features span {
  font-size: 14px;
}

#product .product-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

#product .product-contact-link {
  color: #0b493c;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  border-bottom: 1px solid rgba(11, 73, 60, 0.35);
  padding-bottom: 4px;
}

@media (max-width: 900px) {
  #product {
    padding-top: 60px;
    padding-bottom: 70px;
  }

  #product .product-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  #product .product-image img {
    height: 420px;
  }

  #product .product-actions {
    flex-wrap: wrap;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  #product .product-image img {
    height: 340px;
  }

  #product .product-content h2 {
    font-size: 46px;
  }
}

#applications {
  padding-top: 80px;
  padding-bottom: 90px;
}

#applications .section-tag {
  margin-bottom: 45px;
}

#applications .split-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 50px;
}

#applications .section-title {
  font-size: clamp(48px, 5vw, 76px);
  line-height: 0.98;
  margin: 0;
}

#applications .section-title em {
  font-family: "Playfair Display", serif;
  font-weight: 500;
}

#applications .heading-copy {
  max-width: 480px;
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 6px;
}

#applications .application-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

#applications .application-card {
  overflow: hidden;
}

#applications .application-image {
  position: relative;
  height: 440px;
  overflow: hidden;
  border-radius: 3px;
}

#applications .application-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transition:
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.5s ease;
}

#applications .application-image::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(to top,
      rgba(5, 35, 29, 0.78) 0%,
      rgba(5, 35, 29, 0.22) 48%,
      rgba(5, 35, 29, 0.02) 75%);

  pointer-events: none;
}

#applications .image-overlay {
  position: absolute;
  z-index: 2;

  left: 28px;
  right: 28px;
  bottom: 28px;

  color: #f5f0e6;
}

#applications .image-overlay small {
  display: block;

  margin-bottom: 10px;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

#applications .image-overlay h3 {
  max-width: 320px;

  margin: 0;

  font-size: 26px;
  line-height: 1.12;
  font-weight: 500;
}

#applications .application-card:hover img {
  transform: scale(1.045);
}

@media (max-width: 900px) {
  #applications {
    padding-top: 65px;
    padding-bottom: 75px;
  }

  #applications .split-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }

  #applications .application-grid {
    grid-template-columns: 1fr 1fr;
  }

  #applications .application-image {
    height: 400px;
  }
}

@media (max-width: 600px) {
  #applications {
    padding-top: 55px;
    padding-bottom: 65px;
  }

  #applications .section-tag {
    margin-bottom: 32px;
  }

  #applications .section-title {
    font-size: 46px;
  }

  #applications .heading-copy {
    font-size: 15px;
  }

  #applications .application-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  #applications .application-image {
    height: 380px;
  }

  #applications .image-overlay {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  #applications .image-overlay h3 {
    font-size: 23px;
  }
}

#gallery {
  padding-top: 75px;
  padding-bottom: 85px;
}

#gallery .section-tag {
  margin-bottom: 42px;
}

#gallery .split-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;

  gap: 70px;
  align-items: end;

  margin-bottom: 45px;
}

#gallery .section-title {
  margin: 0;

  font-size: clamp(48px, 5vw, 76px);
  line-height: 0.97;
  letter-spacing: -0.05em;
}

#gallery .section-title em {
  color: var(--orange);
  font-style: normal;
}

#gallery .heading-copy {
  max-width: 470px;

  margin: 0 0 5px;

  font-size: 16px;
  line-height: 1.7;

  color: var(--muted);
}

#gallery .gallery-grid {
  display: grid;

  grid-template-columns: 1.35fr 0.825fr 0.825fr;

  gap: 14px;

  height: 480px;
}

#gallery .gallery-item {
  position: relative;

  min-height: 0;

  overflow: hidden;

  border-radius: 3px;

  background: #ddd7ca;
}

#gallery .gallery-large {
  grid-column: auto;
  grid-row: auto;
}

#gallery .gallery-item img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.5s ease;
}

#gallery .gallery-item::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(to top,
      rgba(5, 35, 29, 0.78) 0%,
      rgba(5, 35, 29, 0.16) 48%,
      transparent 75%);

  pointer-events: none;
}

#gallery .image-overlay {
  position: absolute;

  left: 25px;
  right: 25px;
  bottom: 25px;

  z-index: 2;

  color: #f5f0e6;
}

#gallery .image-overlay small {
  display: block;

  margin-bottom: 8px;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.17em;
}

#gallery .image-overlay h3 {
  max-width: 300px;

  margin: 0;

  font-size: clamp(20px, 1.7vw, 27px);
  line-height: 1.12;

  font-weight: 500;
}

#gallery .gallery-item:hover img {
  transform: scale(1.045);
}

#gallery .gallery-item::before {
  content: "";

  position: absolute;

  left: 25px;
  right: 25px;
  bottom: 16px;

  height: 1px;

  background: var(--orange);

  z-index: 3;

  transform: scaleX(0);

  transform-origin: left;

  transition: transform 0.45s ease;
}

#gallery .gallery-item:hover::before {
  transform: scaleX(1);
}

@media (max-width: 900px) {
  #gallery {
    padding-top: 65px;
    padding-bottom: 70px;
  }

  #gallery .split-heading {
    grid-template-columns: 1fr;

    gap: 22px;

    margin-bottom: 38px;
  }

  #gallery .gallery-grid {
    grid-template-columns: 1.2fr 1fr;

    height: auto;
  }

  #gallery .gallery-item {
    height: 380px;
  }

  #gallery .gallery-large {
    grid-column: 1 / -1;

    height: 450px;
  }
}

@media (max-width: 600px) {
  #gallery {
    padding-top: 52px;
    padding-bottom: 60px;
  }

  #gallery .section-tag {
    margin-bottom: 30px;
  }

  #gallery .section-title {
    font-size: 44px;
  }

  #gallery .heading-copy {
    font-size: 14px;
  }

  #gallery .gallery-grid {
    grid-template-columns: 1fr;

    gap: 12px;
  }

  #gallery .gallery-item,
  #gallery .gallery-large {
    grid-column: auto;

    height: 340px;
  }

  #gallery .image-overlay {
    left: 20px;
    right: 20px;
    bottom: 22px;
  }

  #gallery .image-overlay h3 {
    font-size: 22px;
  }

  #gallery .gallery-item::before {
    left: 20px;
    right: 20px;
  }
}

.faq {
  padding-top: 90px;
  padding-bottom: 100px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: start;

  margin-top: 55px;
}

.faq .section-title {
  margin: 0;
  max-width: 520px;

  font-size: clamp(48px, 5vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.faq .section-title em {
  font-weight: 400;
}

.faq-intro {
  max-width: 400px;

  margin-top: 30px;

  font-size: 17px;
  line-height: 1.7;

  opacity: 0.7;
}

.faq-list {
  width: 100%;
  border-top: 1px solid rgba(0, 65, 50, 0.18);
}

.faq-item {
  width: 100%;

  border-bottom: 1px solid rgba(0, 65, 50, 0.18);
}

.faq-question {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 40px;

  padding: 25px 4px;

  border: none;
  background: transparent;

  text-align: left;
  cursor: pointer;
}

.faq-question>span:first-child {
  max-width: 85%;

  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;

  color: var(--green, #063f34);
}

.faq-question .plus {
  width: 34px;
  height: 34px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(0, 65, 50, 0.25);
  border-radius: 50%;

  font-size: 20px;
  font-weight: 300;
  line-height: 1;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.faq-question:hover .plus {
  background: #06483b;
  color: #f5f0e6;
}

.faq-answer {
  max-width: 680px;
}

.faq-answer p {
  margin: 0;

  padding: 0 65px 25px 4px;

  font-size: 15.5px;
  line-height: 1.75;

  color: rgba(0, 55, 45, 0.72);
}

.faq-item.active .plus {
  transform: rotate(45deg);
}

@media (max-width: 1000px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .faq .section-title {
    max-width: 650px;
  }

  .faq-intro {
    max-width: 520px;
  }
}

@media (max-width: 650px) {
  .faq {
    padding-top: 65px;
    padding-bottom: 70px;
  }

  .faq-grid {
    margin-top: 35px;
    gap: 40px;
  }

  .faq .section-title {
    font-size: 46px;
  }

  .faq-question {
    padding: 21px 0;
    gap: 20px;
  }

  .faq-question>span:first-child {
    max-width: 82%;
    font-size: 16px;
  }

  .faq-question .plus {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }

  .faq-answer p {
    padding: 0 40px 22px 0;

    font-size: 14.5px;
    line-height: 1.7;
  }
}

#contact {
  position: relative;

  padding: 80px var(--side) 0;

  background: var(--green);
  color: var(--cream);

  overflow: hidden;
}

#contact .section-tag {
  margin-bottom: 48px;
}

#contact .contact-grid {
  display: grid;

  grid-template-columns: 1.05fr 0.95fr;

  gap: clamp(60px, 8vw, 130px);

  align-items: start;

  max-width: 1700px;
  margin: 0 auto;

  padding-bottom: 80px;
}

.contact-eyebrow {
  display: block;

  margin-bottom: 18px;

  color: var(--orange);

  font-size: 9px;
  font-weight: 600;

  letter-spacing: 0.2em;
}

#contact h2 {
  max-width: 720px;

  margin: 0;

  color: var(--cream);

  font-size: clamp(54px, 5.5vw, 88px);

  line-height: 0.94;

  letter-spacing: -0.055em;

  font-weight: 500;
}

#contact h2 em {
  color: var(--orange);
  font-style: normal;
}

#contact .contact-copy {
  max-width: 600px;
}

#contact .contact-copy>p {
  max-width: 520px;

  margin: 0;

  color: rgba(255, 255, 255, 0.68);

  font-size: 16px;
  line-height: 1.7;
}

.contact-options-mini {
  margin-top: 35px;
  margin-bottom: 34px;

  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-options-mini>div {
  display: grid;

  grid-template-columns: 45px 1fr;

  align-items: center;

  padding: 16px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-options-mini span {
  color: var(--orange);

  font-size: 9px;

  letter-spacing: 0.15em;
}

.contact-options-mini strong {
  color: var(--cream);

  font-size: 14px;
  font-weight: 500;
}

#contact .outline-light {
  display: inline-flex;

  align-items: center;
  justify-content: space-between;

  gap: 45px;

  min-width: 190px;

  padding: 14px 18px;

  border: 1px solid rgba(255, 255, 255, 0.35);

  color: var(--cream);

  text-decoration: none;

  font-size: 12px;
  font-weight: 600;

  transition:
    background 0.3s ease,
    color 0.3s ease;
}

#contact .outline-light:hover {
  background: var(--cream);
  color: var(--green);
}

#contact footer {
  max-width: 1700px;

  margin: 0 auto;

  padding: 38px 0 25px;

  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-main {
  display: flex;

  justify-content: space-between;

  align-items: flex-start;

  gap: 60px;

  padding-bottom: 35px;
}

.footer-brand-area {
  max-width: 300px;
}

#contact .footer-logo {
  display: inline-block;

  margin-bottom: 14px;

  color: var(--cream);

  font-size: 28px;
  font-weight: 700;

  letter-spacing: 0.12em;

  text-decoration: none;
}

.footer-brand-area p {
  margin: 0;

  color: rgba(255, 255, 255, 0.48);

  font-size: 11px;
  line-height: 1.6;

  letter-spacing: 0.04em;
}

#contact .footer-links {
  display: flex;

  flex-wrap: wrap;

  justify-content: flex-end;

  gap: 12px 28px;
}

#contact .footer-links a {
  color: rgba(255, 255, 255, 0.68);

  text-decoration: none;

  font-size: 11px;

  transition: color 0.3s ease;
}

#contact .footer-links a:hover {
  color: var(--orange);
}

#contact .footer-bottom {
  display: flex;

  align-items: center;
  justify-content: space-between;

  padding-top: 20px;

  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#contact .footer-bottom p,
#contact .footer-bottom a {
  margin: 0;

  color: rgba(255, 255, 255, 0.4);

  font-size: 9px;

  letter-spacing: 0.08em;

  text-decoration: none;
}

#contact .footer-bottom a:hover {
  color: var(--cream);
}

@media (max-width: 900px) {
  #contact {
    padding-top: 65px;
  }

  #contact .contact-grid {
    grid-template-columns: 1fr;

    gap: 45px;

    padding-bottom: 65px;
  }
}

@media (max-width: 650px) {
  #contact {
    padding-top: 55px;
  }

  #contact .section-tag {
    margin-bottom: 32px;
  }

  #contact h2 {
    font-size: clamp(48px, 14vw, 62px);
  }

  #contact .contact-copy>p {
    font-size: 14px;
  }

  .contact-options-mini {
    margin-top: 28px;
  }

  .footer-main {
    flex-direction: column;

    gap: 30px;
  }

  #contact .footer-links {
    justify-content: flex-start;

    gap: 12px 22px;
  }

  #contact .footer-bottom {
    gap: 20px;
  }
}

/* =========================================================
   FINAL HOMEPAGE SPACING POLISH
========================================================= */

/* Founder → Our Story */
.founder-section {
  padding-bottom: 75px;
}

.about-page-section {
  padding-top: 75px;
  padding-bottom: 75px;
}

/* Story content → Mission / Vision */
.mission-vision-wrap {
  margin-top: 48px;
}

/* Quality section */
.quality-section {
  padding-top: 75px;
  padding-bottom: 80px;
}

/* Product */
#product {
  padding-top: 75px;
  padding-bottom: 80px;
}

/* Applications */
#applications {
  padding-top: 75px;
  padding-bottom: 80px;
}

/* Gallery */
#gallery {
  padding-top: 70px;
  padding-bottom: 75px;
}

/* FAQ */
#faq {
  padding-top: 75px;
  padding-bottom: 85px;
}

/* =========================================================
   ISTIKA — FOOTER
========================================================= */

.site-footer {
  width: 100%;
  margin-top: 70px;
  padding: 50px 0 28px;

  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

/* =========================================================
   FOOTER MAIN
========================================================= */

.site-footer .footer-grid {
  width: 100%;

  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr;

  gap: 70px;

  padding-bottom: 50px;
}

/* BRAND */

.site-footer .footer-brand {
  max-width: 330px;
}

.site-footer .footer-logo {
  display: inline-block;

  margin-bottom: 22px;

  color: var(--cream);

  font-size: 28px;
  font-weight: 700;

  letter-spacing: 0.15em;

  text-decoration: none;
}

.site-footer .footer-brand p {
  max-width: 300px;

  margin: 0;

  color: rgba(255, 255, 255, 0.58);

  font-size: 12px;
  line-height: 1.8;
}

/* =========================================================
   TITLES
========================================================= */

.site-footer .footer-title {
  display: block;

  margin-bottom: 22px;

  color: var(--orange);

  font-size: 9px;
  font-weight: 600;

  letter-spacing: 0.2em;
}

/* =========================================================
   COLUMNS
========================================================= */

.site-footer .footer-nav,
.site-footer .footer-contact,
.site-footer .footer-social {
  display: flex;
  flex-direction: column;

  align-items: flex-start;

  gap: 13px;
}

.site-footer a {
  text-decoration: none;
}

.site-footer .footer-nav a,
.site-footer .footer-contact a,
.site-footer .footer-contact p,
.site-footer .footer-social a {
  margin: 0;

  color: rgba(255, 255, 255, 0.65);

  font-size: 11px;
  line-height: 1.65;

  transition: color 0.25s ease;
}

.site-footer .footer-nav a:hover,
.site-footer .footer-contact a:hover,
.site-footer .footer-social a:hover {
  color: var(--cream);
}

/* =========================================================
   FOOTER BOTTOM
========================================================= */

.site-footer .footer-bottom {
  width: 100%;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;

  padding-top: 24px;

  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer .footer-bottom p {
  margin: 0;

  color: rgba(255, 255, 255, 0.4);

  font-size: 9px;

  letter-spacing: 0.07em;
}

/* LEGAL */

.site-footer .footer-legal {
  display: flex;

  align-items: center;

  gap: 25px;
}

.site-footer .footer-legal a,
.site-footer .back-to-top {
  color: rgba(255, 255, 255, 0.45);

  font-size: 9px;

  letter-spacing: 0.07em;

  transition: color 0.25s ease;
}

.site-footer .footer-legal a:hover,
.site-footer .back-to-top:hover {
  color: var(--cream);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;

    gap: 45px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {
  .site-footer {
    margin-top: 55px;

    padding-top: 40px;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr;

    gap: 35px;

    padding-bottom: 40px;
  }

  .site-footer .footer-brand {
    max-width: 100%;
  }

  .site-footer .footer-bottom {
    flex-direction: column;

    align-items: flex-start;

    gap: 14px;
  }

  .site-footer .footer-legal {
    flex-wrap: wrap;

    gap: 15px 20px;
  }
}

/* =========================================================
   FOOTER BRAND LOGO
========================================================= */

.site-footer .footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 3px;

  margin-bottom: 20px;

  text-decoration: none;
}

.site-footer .footer-logo-text {
  color: var(--cream);

  font-size: 27px;
  font-weight: 600;

  line-height: 1;
  letter-spacing: 0.12em;
}


html,body{overflow-x:hidden;}

/* =========================================================
   CROSS-BROWSER MOBILE WIDTH GUARD
   Prevent legacy fixed-width children from pushing the page
   sideways in Microsoft Edge.
========================================================= */
@media (max-width: 768px) {
  html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .hero,
  .hero-grid,
  .hero-copy,
  .hero-image,
  .hero-buttons {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero h1,
  .hero-copy > p {
    max-width: 100%;
    min-width: 0;
  }

  .primary-btn {
    max-width: 100%;
  }
}
