:root {
  --ink: #15110c;
  --muted: #6f675b;
  --line: #e8e1d6;
  --surface: #fffdf8;
  --soft: #f7f0e6;
  --warm: #c88b2d;
  --warm-dark: #8a5a13;
  --olive: #354634;
  --teal: #276569;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(28, 22, 15, .12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button,
input {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 248, .95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.top-strip {
  background: var(--ink);
  color: rgba(255, 255, 255, .86);
  font-size: .82rem;
}

.top-strip__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.top-strip p {
  margin: 0;
  font-weight: 650;
}

.top-strip__links {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, .72);
}

.top-strip__links a:hover {
  color: var(--white);
}

.main-header {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto minmax(280px, 1fr) auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand__mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--warm-dark);
  background: #fff4da;
  border: 1px solid #f0d49c;
  border-radius: 8px;
}

.brand__mark svg {
  width: 34px;
  height: 34px;
}

.brand__text {
  display: grid;
  line-height: 1;
}

.brand__text strong {
  font-size: 1.45rem;
  letter-spacing: 0;
}

.brand__text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
}

.search {
  height: 48px;
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 5px 5px 5px 15px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(21, 17, 12, .06);
}

.search:focus-within {
  border-color: var(--warm);
  box-shadow: 0 0 0 3px rgba(200, 139, 45, .16);
}

.search__icon {
  width: 20px;
  height: 20px;
  color: var(--muted);
}

.search input {
  min-width: 0;
  color: var(--ink);
  border: 0;
  outline: 0;
  background: transparent;
}

.search button,
.button {
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.search button {
  height: 38px;
  padding: 0 18px;
  color: var(--white);
  background: var(--olive);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.action,
.icon-link,
.menu-toggle {
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.action {
  gap: 8px;
  padding: 0 14px;
  font-weight: 800;
  color: var(--teal);
}

.action svg,
.icon-link svg {
  width: 21px;
  height: 21px;
}

.icon-link {
  position: relative;
  width: 44px;
}

.icon-link--cart {
  color: var(--ink);
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  padding: 0 5px;
  color: var(--white);
  background: var(--warm-dark);
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 900;
}

.menu-toggle {
  width: 44px;
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
}

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

.nav__inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav__inner::-webkit-scrollbar {
  display: none;
}

.nav a {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: .93rem;
  font-weight: 800;
}

.nav a:hover,
.nav__highlight {
  color: var(--warm-dark);
}

.showcase-slider {
  padding: 28px 0 42px;
  background: #fffaf1;
}

.slider {
  position: relative;
}

.slider__track {
  position: relative;
  min-height: 520px;
}

.slider__slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 2.05fr) minmax(320px, .95fr);
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px);
  transition: opacity .35s ease, transform .35s ease;
}

.slider__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.feature-card,
.promo-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
}

.feature-card {
  min-height: 520px;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.feature-card img,
.promo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 9, 6, .86) 0%, rgba(12, 9, 6, .56) 42%, rgba(12, 9, 6, .08) 100%);
}

.feature-card__content {
  position: relative;
  z-index: 1;
  width: min(540px, calc(100% - 52px));
  padding: 62px 0 0 60px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  color: #ffc20f;
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-card h1 {
  margin: 0;
  font-size: clamp(2.45rem, 4.8vw, 4.55rem);
  line-height: .98;
}

.feature-card p {
  width: min(480px, 100%);
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .74);
  font-size: 1.05rem;
  font-weight: 650;
  line-height: 1.55;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
}

.button svg {
  width: 19px;
  height: 19px;
}

.button--primary {
  color: var(--ink);
  background: #ffc20f;
  margin-top: 24px;
}

.button--ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .08);
}

.promo-stack {
  display: grid;
  gap: 28px;
}

.promo-card {
  min-height: 246px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46%;
  align-items: center;
  isolation: isolate;
  background: #f4f0eb;
}

.promo-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 48%;
  z-index: -1;
  border-radius: 0 999px 999px 0;
}

.promo-card--mint::before {
  background: #c8e8e6;
}

.promo-card--sand::before {
  background: #ece5dd;
}

.promo-card__copy {
  position: relative;
  z-index: 2;
  padding: 28px 10px 28px 32px;
}

.promo-card__copy span {
  color: var(--teal);
  font-size: .82rem;
  font-weight: 900;
}

.promo-card h2 {
  margin: 14px 0 0;
  color: #202026;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.05;
}

.promo-card p {
  margin: 12px 0 0;
  color: #6b6a70;
  font-size: 1rem;
  line-height: 1.45;
}

.promo-card__price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-top: 22px;
  color: #65646a;
  font-size: .95rem;
}

.promo-card__price strong {
  color: #202026;
  font-size: 1.35rem;
  font-weight: 950;
}

.promo-card img {
  inset: 12px 0 12px auto;
  width: 49%;
  height: calc(100% - 24px);
  object-fit: cover;
  border-radius: 8px 0 0 8px;
}

.slider__controls {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(232, 225, 214, .9);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(21, 17, 12, .12);
}

.slider__arrow,
.slider__dots button {
  border: 0;
  cursor: pointer;
}

.slider__arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: transparent;
  border-radius: 8px;
}

.slider__arrow:hover {
  background: var(--soft);
}

.slider__arrow svg {
  width: 20px;
  height: 20px;
}

.slider__dots {
  display: inline-flex;
  gap: 6px;
}

.slider__dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  background: #c8beb0;
  border-radius: 999px;
}

.slider__dots button.is-active {
  width: 22px;
  background: var(--warm);
}

.section {
  padding: 72px 0;
}

.section-heading {
  width: min(680px, 100%);
  margin-bottom: 28px;
}

.section-heading--row {
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
}

.section-heading h2,
.solutions-panel h2 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  line-height: 1.02;
}

.section-heading p,
.solutions-panel p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.section-kicker {
  color: var(--warm-dark);
  font-size: .82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.text-link {
  flex: 0 0 auto;
  color: var(--teal);
  font-weight: 900;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.category-card {
  min-height: 260px;
  position: relative;
  display: flex;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(15, 12, 8, .08), rgba(15, 12, 8, .82));
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

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

.category-card div {
  position: relative;
  z-index: 2;
  padding: 24px;
}

.category-card h3 {
  margin: 0;
  font-size: 1.45rem;
}

.category-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .78);
  line-height: 1.45;
}

.category-card span {
  display: inline-flex;
  margin-top: 18px;
  color: #ffd987;
  font-weight: 900;
}

.products-section {
  background: #f8f4ec;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(21, 17, 12, .06);
}

.product-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1 / .82;
  background: var(--soft);
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__media span {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  color: var(--ink);
  background: #ffd987;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 950;
}

.product-card__body {
  padding: 18px;
}

.product-card small {
  color: var(--teal);
  font-weight: 900;
}

.product-card h3 {
  min-height: 52px;
  margin: 9px 0 18px;
  font-size: 1.08rem;
  line-height: 1.28;
}

.product-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-card__bottom strong {
  font-size: 1.2rem;
}

.product-card__bottom a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--olive);
  border-radius: 8px;
}

.product-card__bottom svg {
  width: 18px;
  height: 18px;
}

.solutions-section {
  background: var(--surface);
}

.solutions-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: stretch;
}

.solutions-panel {
  padding: 42px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(21, 17, 12, .92), rgba(53, 70, 52, .86)),
    url("https://images.unsplash.com/photo-1558002038-bb4237b3512f?auto=format&fit=crop&w=1200&q=82") center/cover;
  border-radius: 8px;
}

.solutions-panel h2,
.solutions-panel p {
  color: var(--white);
}

.solutions-panel p {
  color: rgba(255, 255, 255, .78);
}

.solution-list {
  display: grid;
  gap: 16px;
}

.solution-list article {
  padding: 28px;
  background: #f6efe5;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.solution-list h3 {
  margin: 0;
  font-size: 1.3rem;
}

.solution-list p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.trust-section {
  padding: 0 0 70px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.trust-item {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trust-item svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  color: var(--teal);
}

.trust-item span {
  font-weight: 800;
  line-height: 1.35;
}

@media (max-width: 920px) {
  .top-strip__inner {
    justify-content: center;
  }

  .top-strip__links {
    display: none;
  }

  .main-header {
    grid-template-columns: auto auto;
    min-height: 76px;
  }

  .search {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-bottom: 14px;
  }

  .header-actions {
    justify-self: end;
  }

  .action--whatsapp span,
  .icon-link:not(.icon-link--cart) {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
  }

  .nav.is-open {
    display: block;
  }

  .nav__inner {
    min-height: 0;
    display: grid;
    gap: 0;
    padding: 8px 0 16px;
    overflow: visible;
  }

  .nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .showcase-slider {
    padding-top: 18px;
  }

  .slider__track {
    min-height: 860px;
  }

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

  .feature-card {
    min-height: 430px;
  }

  .feature-card__content {
    padding: 44px 0 0 34px;
  }

  .promo-stack {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .promo-card {
    min-height: 280px;
    grid-template-columns: 1fr;
    align-items: end;
  }

  .promo-card::before {
    width: 78%;
  }

  .promo-card__copy {
    padding: 24px;
  }

  .promo-card img {
    inset: 0 0 auto auto;
    width: 58%;
    height: 54%;
  }

  .section {
    padding: 54px 0;
  }

  .section-heading--row {
    display: block;
  }

  .text-link {
    display: inline-flex;
    margin-top: 12px;
  }

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

  .solutions-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

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

  .brand__text strong {
    font-size: 1.2rem;
  }

  .search {
    grid-template-columns: 20px 1fr;
    height: auto;
    padding: 12px;
  }

  .search button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .slider__track {
    min-height: 1040px;
  }

  .feature-card {
    min-height: 420px;
  }

  .feature-card__content {
    width: calc(100% - 34px);
    padding: 34px 0 0 24px;
  }

  .feature-card h1 {
    font-size: 2.35rem;
  }

  .promo-stack {
    grid-template-columns: 1fr;
  }

  .promo-card {
    min-height: 290px;
  }

  .slider__controls {
    right: 12px;
    bottom: 12px;
  }

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

  .category-card {
    min-height: 230px;
  }

  .solutions-panel {
    padding: 28px;
  }
}
