:root {
  --ink: #45463f;
  --ink-deep: #292a29;
  --green: #9a7b45;
  --green-bright: #b99a5f;
  --mint: #e7dcc5;
  --mint-pale: #f2ece0;
  --sage: #e6e0d4;
  --cream: #f7f5f0;
  --white: #fffefb;
  --gray: #706d66;
  --line: rgba(69, 70, 63, 0.15);
  --shadow: 0 30px 70px rgba(64, 56, 43, 0.13);
  --container: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

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

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

img,
svg {
  display: block;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 118px 0;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(247, 245, 240, 0.94);
  box-shadow: 0 8px 35px rgba(64, 56, 43, 0.08);
  backdrop-filter: blur(16px);
}

.header-inner {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-deep);
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.09em;
  white-space: nowrap;
}

.brand b {
  color: var(--green-bright);
  font-weight: 800;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
}

.brand-mark svg {
  width: 100%;
  fill: var(--green-bright);
}

.brand-mark svg path:last-child {
  fill: none;
  stroke: var(--cream);
  stroke-linecap: round;
  stroke-width: 2;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.1vw, 32px);
}

.desktop-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 13px;
}

.language-switch {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
  color: var(--ink);
  border: 1px solid rgba(154, 123, 69, 0.35);
  border-radius: 100px;
  background: rgba(255, 254, 251, 0.72);
  cursor: pointer;
}

.language-switch:hover {
  border-color: var(--green);
  background: var(--white);
}

.language-switch svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.language-current {
  font-weight: 800;
}

.language-divider,
.language-alt {
  color: #928b80;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 0 25px;
  border: 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
}

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

.button-dark:hover {
  background: var(--green);
  box-shadow: 0 12px 25px rgba(154, 123, 69, 0.22);
}

.button-primary {
  color: var(--white);
  background: var(--green);
}

.button-primary:hover {
  background: var(--green-bright);
  box-shadow: 0 14px 35px rgba(154, 123, 69, 0.25);
}

.button-mint {
  color: var(--ink-deep);
  background: var(--mint);
}

.button-mint:hover {
  background: #f0e7d5;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(247, 245, 240, 1) 0%, rgba(247, 245, 240, 0.97) 34%, rgba(247, 245, 240, 0.1) 63%);
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 70%;
  background-image: url("assets/hero-products.webp");
  background-position: center right;
  background-size: cover;
  filter: sepia(0.22) saturate(0.62) hue-rotate(350deg) brightness(1.02);
}

.hero-layout {
  position: relative;
  z-index: 2;
  padding-top: 70px;
}

.hero-copy {
  width: min(650px, 54vw);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 23px;
  color: var(--green-bright);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

.eyebrow-light {
  color: var(--mint);
}

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

h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 24px;
  color: var(--ink-deep);
  font-size: clamp(54px, 5.3vw, 78px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.hero h1 em {
  color: var(--green-bright);
  font-family: Georgia, serif;
  font-weight: 400;
}

.hero-copy > p {
  max-width: 560px;
  margin-bottom: 35px;
  color: var(--gray);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(69, 70, 63, 0.28);
  padding: 8px 1px;
  font-size: 13px;
  font-weight: 700;
}

.text-link:hover {
  border-color: var(--green);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 42px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.hero-points i {
  width: 7px;
  height: 7px;
  border: 2px solid var(--green-bright);
  border-radius: 50%;
}

.hero-points b {
  font-weight: 600;
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  bottom: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  transform: rotate(-90deg);
  transform-origin: left bottom;
}

.scroll-line {
  width: 50px;
  height: 1px;
  background: var(--green);
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  min-height: 104px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 30px;
  border-left: 1px solid var(--line);
}

.trust-grid > div:last-child {
  border-right: 1px solid var(--line);
}

.trust-grid strong {
  color: var(--green-bright);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
}

.trust-grid span {
  font-size: 13px;
  font-weight: 600;
}

.section-heading h2,
.factory-copy h2,
.custom-copy h2,
.contact-copy h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
  gap: 90px;
  margin-bottom: 62px;
}

.split-heading p {
  margin-bottom: 3px;
  color: var(--gray);
  font-size: 15px;
  line-height: 1.75;
}

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

.category-card {
  min-height: 510px;
  display: grid;
  grid-template-rows: 56% 44%;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--cream);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.category-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.category-art {
  position: relative;
  overflow: hidden;
  background: #e7dcc5;
}

.category-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-card:hover .category-art img {
  transform: scale(1.025);
}

.category-personal .category-art img {
  object-position: center 57%;
}

.category-home .category-art img {
  object-position: center 58%;
}

.category-pet .category-art img {
  object-position: center 48%;
}

.category-special .category-art img {
  object-position: center 55%;
}

.category-tissue .category-art img {
  object-position: center 52%;
}

.category-card .category-art::after {
  display: none;
}

.category-content {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  align-content: start;
  padding: 30px 34px;
  background: var(--white);
}

.category-number {
  grid-row: 1 / 5;
  padding-top: 8px;
  color: var(--green-bright);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.category-content h3 {
  margin-bottom: 14px;
  font-size: 25px;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.category-content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 15px;
  margin: 0 0 20px;
  padding: 0;
  color: var(--gray);
  font-size: 12px;
  line-height: 1.5;
  list-style: none;
}

.category-content li {
  position: relative;
  padding-left: 11px;
}

.category-content li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--mint);
}

.category-content a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
}

.category-content a b {
  font-size: 18px;
  transition: transform 0.25s ease;
}

.category-content a:hover b {
  transform: translate(3px, -3px);
}

.featured-section {
  padding-top: 0;
  background:
    linear-gradient(180deg, var(--cream) 0, var(--cream) 30%, #eee8dc 30%, #eee8dc 100%);
}

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

.featured-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 38px;
  border: 1px solid var(--line);
  background: rgba(255, 254, 251, 0.97);
  box-shadow: 0 18px 45px rgba(64, 56, 43, 0.07);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.35s ease, color 0.35s ease;
}

.featured-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.featured-card.is-expanded {
  min-height: 470px;
  grid-column: 1 / -1;
  color: var(--white);
  border-color: transparent;
  background:
    radial-gradient(circle at 92% 10%, rgba(231, 220, 197, 0.2), transparent 32%),
    var(--ink-deep);
}

.featured-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 42px;
}

.featured-expand-toggle {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin: -4px -4px -4px 0;
  padding: 0;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.featured-expand-toggle span {
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.featured-expand-toggle:hover,
.featured-expand-toggle:focus-visible {
  color: var(--white);
  border-color: var(--gold, var(--green-bright));
  outline: 0;
  background: var(--green-bright);
}

.featured-card.is-expanded .featured-expand-toggle {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.featured-card.is-expanded .featured-expand-toggle:hover,
.featured-card.is-expanded .featured-expand-toggle:focus-visible {
  color: var(--ink-deep);
  border-color: var(--mint);
  background: var(--mint);
}

.product-tag {
  padding: 6px 9px;
  color: var(--green);
  background: var(--mint-pale);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.featured-card.is-expanded .product-tag {
  color: var(--ink-deep);
  background: var(--mint);
}

.featured-index {
  margin-left: auto;
  color: var(--green-bright);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.featured-card.is-expanded .featured-index {
  color: var(--mint);
}

.featured-card h3 {
  margin-bottom: 15px;
  font-size: 28px;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.featured-card > p {
  margin-bottom: 25px;
  color: var(--gray);
  font-size: 13px;
  line-height: 1.75;
}

.featured-card.is-expanded > p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.67);
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: auto 0 26px;
  border-top: 1px solid var(--line);
}

.product-specs div {
  padding: 17px 8px 15px 0;
  border-bottom: 1px solid var(--line);
}

.product-specs div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.product-specs div:nth-child(even) {
  padding-left: 20px;
}

.product-specs dt {
  margin-bottom: 5px;
  color: var(--green-bright);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-specs dd {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
}

.featured-card:not(.is-expanded) .product-specs {
  display: none;
}

.featured-card.is-expanded .product-specs {
  border-color: rgba(255, 255, 255, 0.14);
}

.featured-card.is-expanded .product-specs div {
  border-color: rgba(255, 255, 255, 0.14);
}

.featured-card.is-expanded .product-specs dt {
  color: var(--mint);
}

.compact-specs {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 19px 0 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  list-style: none;
}

.compact-specs li {
  position: relative;
  padding-left: 14px;
}

.compact-specs li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green-bright);
}

.featured-card.is-expanded .compact-specs {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.14);
}

.featured-card.is-expanded .compact-specs li::before {
  background: var(--mint);
}

.featured-pending {
  background: linear-gradient(145deg, var(--white), #f0e9dc);
}

.featured-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
}

.featured-card.is-expanded .featured-link {
  border-color: rgba(255, 255, 255, 0.16);
}

.featured-link b {
  font-size: 18px;
  transition: transform 0.2s ease;
}

.featured-link:hover b {
  transform: translateX(4px);
}

.product-disclaimer {
  margin: 22px 0 0;
  color: var(--gray);
  font-size: 10px;
  line-height: 1.55;
}

.category-personal .category-art {
  background: radial-gradient(circle at 75% 25%, #e9f9f3 0, transparent 34%), #d6eee5;
}

.pack {
  position: absolute;
  top: 53px;
  left: 50%;
  width: 190px;
  height: 116px;
  border-radius: 24px 24px 19px 19px;
  background: linear-gradient(150deg, #fff 20%, #eff8f4);
  box-shadow: 0 30px 35px rgba(34, 100, 83, 0.17);
  transform: translateX(-42%) rotate(-5deg);
}

.pack::before,
.pack::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 13px;
  opacity: 0.6;
  background: repeating-linear-gradient(0deg, transparent 0 4px, rgba(25, 123, 105, 0.13) 4px 6px);
}

.pack::before {
  left: -4px;
}

.pack::after {
  right: -4px;
}

.pack span {
  position: absolute;
  top: 33px;
  left: 57px;
  width: 80px;
  height: 51px;
  border: 5px solid white;
  border-radius: 12px;
  background: #c6e9dc;
  box-shadow: 0 5px 12px rgba(37, 93, 77, 0.14);
}

.wipe-sheet {
  position: absolute;
  top: 47px;
  left: calc(50% + 26px);
  width: 68px;
  height: 70px;
  border-radius: 0 30px 0 35px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 20px rgba(37, 93, 77, 0.08);
  transform: rotate(14deg);
}

.bubble {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.bubble-one {
  top: 36px;
  right: 18%;
  width: 27px;
  height: 27px;
}

.bubble-two {
  bottom: 32px;
  left: 22%;
  width: 18px;
  height: 18px;
}

.category-home .category-art {
  background: linear-gradient(145deg, #dfeadd, #f1f4e8);
}

.category-home .category-art::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -38px;
  width: 220px;
  height: 190px;
  border: 28px solid rgba(102, 135, 94, 0.12);
  border-radius: 50%;
}

.floor-sheet {
  position: absolute;
  top: 74px;
  left: 50%;
  width: 205px;
  height: 104px;
  border-radius: 55% 35% 45% 40%;
  background: linear-gradient(140deg, #fff, #e5efe8);
  box-shadow: 0 25px 38px rgba(63, 89, 63, 0.15);
}

.sheet-one {
  transform: translateX(-58%) rotate(-8deg);
}

.sheet-two {
  top: 93px;
  background: rgba(255, 255, 255, 0.75);
  transform: translateX(-42%) rotate(9deg);
}

.counter-line {
  position: absolute;
  bottom: 44px;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(65, 96, 65, 0.18);
  transform: rotate(-5deg);
}

.spark {
  position: absolute;
  color: #7aaa7b;
  font-size: 24px;
}

.spark-one {
  top: 45px;
  right: 25%;
}

.spark-two {
  bottom: 40px;
  left: 23%;
  font-size: 15px;
}

.category-pet .category-art {
  background: #e9dfd0;
}

.pet-line,
.shoe-line {
  position: absolute;
  top: 28px;
  left: 50%;
  width: 300px;
  max-width: 78%;
  fill: none;
  stroke: #896e53;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transform: translateX(-50%);
}

.paw {
  position: absolute;
  color: rgba(137, 110, 83, 0.26);
  font-size: 13px;
}

.paw::before,
.paw::after {
  content: "●";
  position: absolute;
  top: -9px;
  font-size: 7px;
}

.paw::before {
  left: -5px;
}

.paw::after {
  right: -5px;
}

.paw-one {
  top: 45px;
  left: 20%;
  transform: rotate(-18deg);
}

.paw-two {
  right: 18%;
  bottom: 42px;
  transform: rotate(23deg);
}

.category-special .category-art {
  background: #dce5e4;
}

.shoe-line {
  top: 38px;
  stroke: #426762;
  stroke-width: 2.2;
}

.clean-stroke {
  position: absolute;
  width: 45px;
  height: 4px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
}

.stroke-one {
  top: 48px;
  right: 20%;
  transform: rotate(-25deg);
}

.stroke-two {
  top: 66px;
  right: 16%;
  width: 27px;
  transform: rotate(-25deg);
}

.category-wide {
  min-height: 390px;
  grid-column: 1 / -1;
  grid-template-columns: 55% 45%;
  grid-template-rows: 1fr;
}

.category-tissue .category-art {
  background: linear-gradient(130deg, #f5efe5, #e5eee6);
}

.category-tissue .category-content {
  align-content: center;
  grid-template-columns: 56px 1fr;
}

.category-label {
  width: max-content;
  margin: -1px 0 10px;
  padding: 5px 8px;
  color: var(--green);
  background: var(--mint-pale);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.tissue-box {
  position: absolute;
  top: 110px;
  left: 24%;
  width: 210px;
  height: 105px;
  border-radius: 7px;
  background: linear-gradient(145deg, #fff 35%, #dfebe4);
  box-shadow: 0 25px 40px rgba(64, 83, 72, 0.15);
  transform: rotate(-5deg);
}

.tissue-box span {
  position: absolute;
  top: -77px;
  left: 72px;
  width: 75px;
  height: 100px;
  border-radius: 80% 0 60% 20%;
  background: rgba(255, 255, 255, 0.95);
  transform: rotate(-12deg);
}

.paper-roll {
  position: absolute;
  right: 15%;
  bottom: 63px;
  width: 105px;
  height: 130px;
  border-radius: 10px;
  background: repeating-linear-gradient(90deg, #fff 0 3px, #f5f5f1 3px 5px);
  box-shadow: 0 22px 35px rgba(64, 83, 72, 0.13);
}

.paper-roll i {
  position: absolute;
  top: -15px;
  left: 0;
  width: 105px;
  height: 31px;
  border-radius: 50%;
  background: #fff;
}

.paper-roll i::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 35px;
  width: 34px;
  height: 16px;
  border-radius: 50%;
  background: #d8d2c7;
}

.paper-arc {
  position: absolute;
  top: -120px;
  right: -90px;
  width: 350px;
  height: 350px;
  border: 44px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
}

.custom-section {
  color: var(--white);
  background: var(--ink-deep);
}

.custom-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 120px;
  align-items: center;
}

.custom-copy h2 {
  margin-bottom: 27px;
  color: var(--white);
}

.custom-copy p {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 15px;
  line-height: 1.8;
}

.process-list {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.process-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  padding: 27px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  outline: 0;
  transition: background 0.25s ease, padding 0.25s ease;
}

.process-item:hover,
.process-item:focus-visible {
  padding-inline: 25px;
  background: rgba(231, 220, 197, 0.09);
}

.process-item > span {
  padding-top: 4px;
  color: var(--mint);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.process-item h3 {
  margin-bottom: 6px;
  font-size: 19px;
  font-weight: 600;
}

.process-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.commercial-terms {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 75px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.commercial-terms > div {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.commercial-terms > div:last-child {
  border-right: 0;
}

.commercial-terms small {
  margin-bottom: 12px;
  color: var(--mint);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.commercial-terms strong {
  margin-bottom: 8px;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 17px;
}

.commercial-terms span {
  color: rgba(255, 255, 255, 0.53);
  font-size: 11px;
  line-height: 1.55;
}

.factory-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 95px;
  align-items: center;
}

.factory-image {
  position: relative;
}

.placeholder-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 7px 10px;
  color: var(--ink-deep);
  background: rgba(255, 255, 255, 0.87);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  backdrop-filter: blur(7px);
}

.factory-image img {
  width: 100%;
  min-height: 580px;
  filter: sepia(0.1) saturate(0.75);
  object-fit: cover;
}

.image-note {
  position: absolute;
  right: -30px;
  bottom: 35px;
  width: 270px;
  padding: 24px;
  color: var(--white);
  background: var(--green);
  box-shadow: var(--shadow);
}

.image-note span {
  display: block;
  margin-bottom: 10px;
  color: var(--mint);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.image-note b {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  line-height: 1.45;
}

.factory-copy h2 {
  margin-bottom: 25px;
}

.factory-copy > p {
  margin-bottom: 37px;
  color: var(--gray);
  font-size: 15px;
  line-height: 1.8;
}

.factory-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 28px;
  margin-bottom: 32px;
}

.factory-features div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
}

.factory-features svg {
  width: 27px;
  min-width: 27px;
  fill: none;
  stroke: var(--green-bright);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.text-link-dark {
  border-color: var(--line);
}

.values-section {
  background: var(--mint-pale);
}

.centered-heading {
  max-width: 730px;
  margin: 0 auto 63px;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

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

.values-grid article {
  min-height: 260px;
  padding: 42px;
  border-right: 1px solid var(--line);
}

.values-grid article:last-child {
  border-right: 0;
}

.values-grid span {
  display: block;
  margin-bottom: 50px;
  color: var(--green-bright);
  font-size: 11px;
  font-weight: 800;
}

.values-grid h3 {
  margin-bottom: 13px;
  font-size: 21px;
}

.values-grid p {
  margin: 0;
  color: var(--gray);
  font-size: 13px;
  line-height: 1.7;
}

.faq-section {
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
}

.faq-layout .section-heading {
  position: sticky;
  top: 125px;
  align-self: start;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 25px 50px 25px 0;
  color: var(--ink-deep);
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 21px;
  right: 4px;
  color: var(--green-bright);
  font-size: 24px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  max-width: 680px;
  margin: -5px 0 24px;
  padding-right: 50px;
  color: var(--gray);
  font-size: 13px;
  line-height: 1.75;
}

.contact-section {
  padding: 118px 0;
  color: var(--white);
  background: var(--ink);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}

.contact-copy h2 {
  margin-bottom: 27px;
}

.contact-copy > p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.8;
}

.contact-methods {
  display: flex;
  gap: 40px;
  margin-top: 50px;
}

.contact-methods a {
  display: grid;
  gap: 7px;
}

.contact-methods small {
  color: var(--mint);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.contact-methods strong {
  font-size: 14px;
}

.inquiry-form {
  padding: 43px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 25px 65px rgba(32, 29, 24, 0.24);
}

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

.inquiry-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.inquiry-form label > span {
  font-size: 11px;
  font-weight: 700;
}

.honeypot-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #d3ccbf;
  border-radius: 0;
  outline: 0;
  padding: 10px 2px;
  color: var(--ink);
  background: transparent;
  font-size: 14px;
  transition: border-color 0.2s ease;
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--green);
}

.form-submit {
  width: 100%;
  margin-top: 6px;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.turnstile-wrap {
  display: grid;
  gap: 7px;
  margin: 3px 0 18px;
}

.turnstile-wrap small {
  color: var(--gray);
  font-size: 9px;
  line-height: 1.45;
}

.privacy-consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 9px !important;
}

.privacy-consent input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: var(--green);
}

.privacy-consent span {
  color: var(--gray);
  font-weight: 500 !important;
  line-height: 1.5;
}

.privacy-consent a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-note {
  display: block;
  margin-top: 12px;
  color: var(--gray);
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.form-status {
  min-height: 20px;
  margin: 12px 0 -10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
}

.form-status.is-success {
  color: #527451;
}

.form-status.is-error {
  color: #a44336;
}

.site-footer {
  color: rgba(255, 255, 255, 0.68);
  background: #242521;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 70px;
  padding: 77px 0 65px;
}

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

.footer-brand p {
  max-width: 330px;
  margin: 24px 0 0;
  font-size: 13px;
  line-height: 1.75;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 13px;
  font-size: 12px;
}

.footer-column h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 13px;
}

.footer-column a:hover {
  color: var(--mint);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 10px;
  letter-spacing: 0.06em;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-legal a:hover {
  color: var(--mint);
}

.cookie-banner {
  position: fixed;
  z-index: 120;
  right: 24px;
  bottom: 24px;
  left: 24px;
  width: min(760px, calc(100% - 48px));
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  margin: 0 auto;
  padding: 22px 24px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 20px 60px rgba(32, 29, 24, 0.24);
}

.cookie-banner strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink-deep);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
}

.cookie-banner p {
  margin: 0;
  color: var(--gray);
  font-size: 11px;
  line-height: 1.55;
}

.cookie-banner a {
  color: var(--green);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--green);
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.cookie-primary {
  color: var(--white);
  background: var(--green);
}

.cookie-secondary {
  color: var(--green);
  background: transparent;
}

.legal-page {
  background: var(--white);
}

.legal-header {
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.legal-header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-nav {
  display: flex;
  gap: 22px;
  color: var(--gray);
  font-size: 12px;
  font-weight: 700;
}

.legal-nav a:hover {
  color: var(--green);
}

.legal-content {
  max-width: 900px;
  padding-top: 92px;
  padding-bottom: 100px;
}

.legal-content article + article {
  margin-top: 110px;
  padding-top: 100px;
  border-top: 1px solid var(--line);
}

.legal-content h1 {
  margin-bottom: 14px;
  color: var(--ink-deep);
  font-size: clamp(42px, 6vw, 66px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.legal-updated {
  margin-bottom: 44px !important;
  color: var(--green-bright) !important;
  font-size: 11px !important;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-content h2 {
  margin: 40px 0 12px;
  color: var(--ink-deep);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.legal-content p,
.legal-content li {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.85;
}

.legal-content ul {
  padding-left: 22px;
}

.legal-content a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-footer {
  color: rgba(255, 255, 255, 0.68);
  background: #242521;
}

.legal-footer .container {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 11px;
}

.legal-footer a:hover {
  color: var(--mint);
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 24px;
  top: 55%;
  display: flex;
  align-items: center;
  border-radius: 100px;
  filter: drop-shadow(0 13px 22px rgba(17, 73, 61, 0.25));
  transform: translateY(-50%);
}

.whatsapp-label {
  max-width: 0;
  overflow: hidden;
  padding: 13px 0;
  color: var(--white);
  border-radius: 100px 0 0 100px;
  background: #128c7e;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: max-width 0.3s ease, padding 0.3s ease;
}

.whatsapp-float:hover .whatsapp-label {
  max-width: 120px;
  padding-inline: 17px 9px;
}

.whatsapp-icon {
  width: 57px;
  height: 57px;
  display: grid;
  place-items: center;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: #18a992;
}

.whatsapp-icon svg {
  width: 31px;
  fill: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 0;
    border-radius: 50%;
    background: var(--mint-pale);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 18px;
    height: 1px;
    background: var(--ink);
    transition: transform 0.25s ease;
  }

  .menu-toggle.active span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle.active span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-nav {
    position: absolute;
    top: 84px;
    left: 0;
    width: 100%;
    display: grid;
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    background: var(--white);
    box-shadow: 0 20px 30px rgba(64, 56, 43, 0.11);
    transition: max-height 0.35s ease, padding 0.35s ease;
  }

  .mobile-nav.open {
    max-height: 460px;
    padding-block: 20px 30px;
  }

  .mobile-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    font-weight: 700;
  }

  .mobile-nav a:last-child {
    margin-top: 13px;
    color: var(--white);
    border: 0;
    background: var(--green);
    text-align: center;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(247, 245, 240, 1) 0%, rgba(247, 245, 240, 0.94) 45%, rgba(247, 245, 240, 0.15) 78%);
  }

  .hero-image {
    width: 78%;
    opacity: 0.72;
  }

  .hero-copy {
    width: min(630px, 67vw);
  }

  .split-heading {
    gap: 45px;
  }

  .custom-layout,
  .factory-layout,
  .contact-layout,
  .faq-layout {
    gap: 60px;
  }

  .footer-main {
    gap: 40px;
  }
}

@media (max-width: 800px) {
  :root {
    --container: min(100% - 36px, 680px);
  }

  .section {
    padding: 82px 0;
  }

  .header-inner {
    height: 72px;
  }

  .header-quote {
    display: none;
  }

  .mobile-nav {
    top: 72px;
  }

  .hero {
    min-height: 790px;
    align-items: flex-end;
    padding-bottom: 65px;
  }

  .hero::before {
    background: linear-gradient(0deg, #f7f5f0 0%, rgba(247, 245, 240, 0.97) 49%, rgba(247, 245, 240, 0.13) 78%);
  }

  .hero-image {
    top: 0;
    width: 100%;
    height: 54%;
    opacity: 1;
    background-position: 65% center;
  }

  .hero-layout {
    padding-top: 300px;
  }

  .hero-copy {
    width: 100%;
  }

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

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

  .hero-scroll {
    display: none;
  }

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

  .trust-grid > div:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .trust-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .split-heading,
  .custom-layout,
  .factory-layout,
  .contact-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 22px;
    margin-bottom: 45px;
  }

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

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

  .featured-card.is-expanded {
    grid-column: auto;
  }

  .category-wide {
    min-height: 510px;
    grid-column: auto;
    grid-template-columns: 1fr;
    grid-template-rows: 56% 44%;
  }

  .custom-layout {
    gap: 60px;
  }

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

  .commercial-terms > div:nth-child(2) {
    border-right: 0;
  }

  .commercial-terms > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .factory-layout {
    gap: 72px;
  }

  .factory-image img {
    min-height: 440px;
  }

  .image-note {
    right: 20px;
    bottom: -25px;
  }

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

  .values-grid article {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .values-grid article:last-child {
    border-bottom: 0;
  }

  .values-grid span {
    margin-bottom: 35px;
  }

  .contact-layout {
    gap: 50px;
  }

  .faq-layout {
    gap: 42px;
  }

  .faq-layout .section-heading {
    position: static;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 520px) {
  :root {
    --container: calc(100% - 28px);
  }

  .brand {
    font-size: 15px;
  }

  .brand-mark {
    width: 27px;
    height: 27px;
  }

  .language-switch {
    min-height: 38px;
    padding: 0 9px;
  }

  .language-switch svg {
    width: 15px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-image {
    height: 43%;
  }

  .hero-layout {
    padding-top: 270px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-actions,
  .contact-methods {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-points {
    gap: 12px 18px;
  }

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

  .trust-grid > div {
    min-height: 72px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .category-card,
  .category-wide {
    min-height: 500px;
  }

  .category-content {
    grid-template-columns: 38px 1fr;
    padding: 27px 23px;
  }

  .category-content h3 {
    font-size: 21px;
  }

  .featured-card {
    min-height: 0;
    padding: 28px 23px;
  }

  .featured-card.is-expanded {
    min-height: 520px;
  }

  .featured-card.is-expanded .compact-specs {
    grid-template-columns: 1fr;
  }

  .featured-top {
    margin-bottom: 28px;
  }

  .product-specs {
    grid-template-columns: 1fr;
  }

  .product-specs div:nth-child(odd) {
    border-right: 0;
  }

  .product-specs div:nth-child(even) {
    padding-left: 0;
  }

  .commercial-terms {
    grid-template-columns: 1fr;
  }

  .commercial-terms > div {
    min-height: 125px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .commercial-terms > div:last-child {
    border-bottom: 0;
  }

  .factory-features,
  .form-row {
    grid-template-columns: 1fr;
  }

  .factory-image img {
    min-height: 350px;
  }

  .image-note {
    width: calc(100% - 40px);
  }

  .inquiry-form {
    padding: 30px 22px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    gap: 13px;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .cookie-banner {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: calc(100% - 28px);
    padding: 19px;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-button {
    flex: 1;
  }

  .whatsapp-float {
    top: auto;
    right: 15px;
    bottom: 18px;
    transform: none;
  }

  .whatsapp-label {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
