:root {
  --color-dark: #1a1a1a;
  --color-text: #1a1a1a;
  --color-muted: #6b6b6b;
  --color-bg: #ffffff;
  --color-cream: #f6f1e8;
  --color-cream-soft: #faf6ef;
  --color-teal: #7fc9d6;
  --color-teal-deep: #5fb4c4;
  --color-orange: #e87a5d;
  --color-orange-deep: #d8654a;
  --color-green: #6b8e5a;
  --color-line: #ececec;

  --fs-12: 0.75rem;
  --fs-14: 0.875rem;
  --fs-16: 1rem;
  --fs-18: 1.125rem;
  --fs-20: 1.25rem;
  --fs-24: 1.5rem;
  --fs-32: 2rem;
  --fs-40: 2.5rem;
  --fs-48: 3rem;
  --fs-64: 4rem;
  --fs-72: 4.5rem;

  --sp-4: 4px;
  --sp-8: 8px;
  --sp-12: 12px;
  --sp-16: 16px;
  --sp-24: 24px;
  --sp-32: 32px;
  --sp-48: 48px;
  --sp-64: 64px;
  --sp-96: 96px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 76px;
}

/* ============== Utilities ============== */

.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: var(--fs-14);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform 0.3s var(--ease), background-color 0.3s var(--ease),
    color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.btn--orange {
  background: var(--color-orange);
  color: #fff;
}
.btn--orange:hover {
  background: var(--color-orange-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--dark {
  background: var(--color-dark);
  color: #fff;
}
.btn--dark:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
}
.btn--outline-light:hover {
  background: #fff;
  color: var(--color-dark);
}

.eyebrow {
  display: inline-block;
  font-size: var(--fs-12);
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: var(--sp-12);
}

.section-title {
  font-size: clamp(1.75rem, 3vw, var(--fs-40));
  font-weight: 500;
  letter-spacing: -0.02em;
}

.section-link {
  font-size: var(--fs-14);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color 0.25s var(--ease);
}
.section-link:hover {
  color: var(--color-dark);
}

/* ============== Reveal animation ============== */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-reveal="left"] {
  transform: translateX(-32px);
}
[data-reveal="right"] {
  transform: translateX(32px);
}
[data-reveal="left"].is-visible,
[data-reveal="right"].is-visible {
  transform: none;
}

/* ============== Top utility bar ============== */

.topbar {
  background: var(--color-dark);
  color: #f5f5f5;
  font-size: var(--fs-12);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
}
.topbar__lang {
  display: flex;
  gap: 10px;
  align-items: center;
}
.topbar__lang button {
  color: #f5f5f5;
  opacity: 0.6;
  font-size: var(--fs-12);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: opacity 0.25s var(--ease);
}
.topbar__lang button.is-active,
.topbar__lang button:hover {
  opacity: 1;
}
.topbar__lang span {
  opacity: 0.4;
}

/* ============== HERO ============== */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  margin-top: calc(-1 * var(--header-h));
  padding-top: var(--header-h);
}

.hero__bg {
  position: absolute;
  inset: -10% 0 -10% 0;
  background-image: url("../images/Asset 2.png");
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.15) 40%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: var(--sp-32) var(--sp-16);
}

.hero__logo {
  width: 180px;
  margin: 0 auto var(--sp-32);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.hero__title {
  font-size: clamp(2rem, 5vw, var(--fs-64));
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: var(--sp-32);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.hero__cta {
  margin-top: var(--sp-16);
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: #fff;
  font-size: var(--fs-12);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.7;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bob 2.4s ease-in-out infinite;
}
.hero__scroll::after {
  content: "";
  width: 1px;
  height: 28px;
  background: #fff;
  display: block;
}

@keyframes bob {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 6px);
  }
}

/* ============== Products carousel ============== */

.products {
  padding: clamp(48px, 8vw, 96px) 0;
  background: var(--color-bg);
}

.products__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--sp-16);
  margin-bottom: var(--sp-48);
}

.carousel {
  position: relative;
}

.carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 3 * var(--sp-24)) / 4);
  gap: var(--sp-24);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 4px;
  padding-bottom: var(--sp-16);
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel__track::-webkit-scrollbar {
  display: none;
}

.product-card {
  scroll-snap-align: start;
  background: var(--color-cream-soft);
  border-radius: var(--radius-lg);
  padding: var(--sp-24);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--sp-16);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* Stretched link: makes the whole card clickable while inner buttons stay usable */
.card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.product-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--color-teal);
  color: #fff;
  font-size: var(--fs-12);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  z-index: 1;
}

.product-card__img {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.product-card__img img {
  width: 86%;
  height: 86%;
  object-fit: contain;
  transition: transform 0.5s var(--ease);
}
.product-card:hover .product-card__img img {
  transform: scale(1.05);
}

.product-card__title {
  font-size: var(--fs-18);
  font-weight: 500;
}

.product-card__desc {
  font-size: var(--fs-14);
  color: var(--color-muted);
  flex: 1;
}

.product-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card__price {
  font-size: var(--fs-18);
  font-weight: 600;
  color: var(--color-dark);
}

.product-card__buy {
  font-size: var(--fs-12);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 16px;
  background: var(--color-dark);
  color: #fff;
  border-radius: var(--radius-pill);
  transition: background-color 0.3s var(--ease);
}
.product-card__buy:hover {
  background: var(--color-orange);
}

.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-24);
  margin-top: var(--sp-32);
}

.carousel__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-line);
  background: #fff;
  display: grid;
  place-items: center;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.carousel__btn:hover {
  background: var(--color-dark);
  color: #fff;
  border-color: var(--color-dark);
}
.carousel__btn svg {
  width: 18px;
  height: 18px;
}

.carousel__dots {
  display: flex;
  gap: 8px;
}
.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-line);
  transition: width 0.3s var(--ease), background-color 0.3s var(--ease);
}
.carousel__dot.is-active {
  background: var(--color-dark);
  width: 24px;
  border-radius: var(--radius-pill);
}

/* ============== Promo banner ============== */

.promo {
  background: linear-gradient(
    135deg,
    var(--color-teal) 0%,
    var(--color-teal-deep) 100%
  );
  color: #fff;
  overflow: hidden;
}
.promo__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--sp-48);
  min-height: 280px;
}
.promo__image {
  position: relative;
  height: 100%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo__image img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: cover;
  object-position: center;
}
.promo__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-16);
  padding: var(--sp-48) var(--sp-24) var(--sp-48) 0;
}
.promo__logo {
  width: 56px;
  margin-bottom: var(--sp-8);
}
.promo__title {
  font-size: clamp(1.25rem, 2.4vw, var(--fs-32));
  font-weight: 500;
  line-height: 1.25;
  max-width: 420px;
}
.promo__text {
  font-size: var(--fs-14);
  opacity: 0.9;
  max-width: 460px;
}

/* ============== Beautifully Lived ============== */

.lived {
  padding: clamp(64px, 10vw, 120px) 0;
  background: #fff;
}
.lived__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
}
.lived__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.lived__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.lived__inner:hover .lived__image img {
  transform: scale(1.04);
}
.lived__body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-16);
  position: relative;
}
.lived__num {
  font-size: var(--fs-14);
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--color-orange);
}
.lived__title {
  font-size: clamp(1.75rem, 3.2vw, var(--fs-48));
  font-weight: 500;
  letter-spacing: -0.02em;
}
.lived__text {
  position: relative;
  font-size: var(--fs-16);
  color: var(--color-muted);
  line-height: 1.7;
  padding: var(--sp-12) 0;
}
.lived__text::before,
.lived__text::after {
  display: inline-block;
  width: 18px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: top;
  opacity: 0.55;
}
.lived__text::before {
  content: "";
  background-image: url("../images/Asset 7.png");
  margin-right: 8px;
}
.lived__text::after {
  content: "";
  background-image: url("../images/Asset 8.png");
  margin-left: 8px;
  transform: translateY(4px);
}
.lived__cta {
  margin-top: var(--sp-12);
  align-self: flex-start;
}

/* ============== Blog ============== */

.blog {
  padding: clamp(48px, 8vw, 96px) 0;
  background: var(--color-cream);
}
.blog__head {
  text-align: center;
  margin-top: 40px;
  margin-bottom: var(--sp-48);
}
.blog__intro {
  max-width: 560px;
  margin: var(--sp-12) auto 0;
  color: var(--color-muted);
  font-size: var(--fs-16);
}
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-32);
}
.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.blog-card__img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.blog-card:hover .blog-card__img img {
  transform: scale(1.06);
}
.blog-card__body {
  padding: var(--sp-24);
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
  flex: 1;
}
.blog-card__cat {
  font-size: var(--fs-12);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-orange);
}
.blog-card__title {
  font-size: var(--fs-20);
  font-weight: 500;
}
.blog-card__excerpt {
  color: var(--color-muted);
  font-size: var(--fs-14);
  flex: 1;
}
.blog-card__more {
  font-size: var(--fs-12);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-dark);
  margin-top: var(--sp-12);
}
.blog-card__more::after {
  content: " →";
  transition: transform 0.3s var(--ease);
  display: inline-block;
}
.blog-card:hover .blog-card__more::after {
  transform: translateX(4px);
}

/* ============== Features row ============== */

.features {
  padding: clamp(48px, 6vw, 80px) 0;
  background: #fff;
  border-top: 1px solid var(--color-line);
}
.features__row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-24);
  align-items: start;
}
.feature {
  display: flex;
  justify-content: center;
}
.feature img {
  height: 80px;
  width: auto;
  transition: transform 0.4s var(--ease);
}
.feature:hover img {
  transform: translateY(-4px);
}

/* ============== Healthy Living ============== */

.healthy {
  position: relative;
  padding: clamp(64px, 10vw, 120px) 0;
  background-color: var(--color-orange);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.healthy__bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/Asset 20.png");
  background-size: cover;
  background-position: center;
}
.healthy__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(232, 122, 93, 0.15) 0%,
    rgba(232, 122, 93, 0.0) 50%,
    rgba(232, 122, 93, 0.25) 100%
  );
}
.healthy__inner {
  position: relative;
  z-index: 2;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-24);
}
.healthy__sub {
  font-size: var(--fs-14);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.9;
}

/* ============== Responsive ============== */

@media (max-width: 1023px) {
  .carousel__track {
    grid-auto-columns: calc((100% - var(--sp-24)) / 2);
  }
  .features__row {
    grid-template-columns: repeat(3, 1fr);
  }
  .blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .promo__inner {
    grid-template-columns: 1fr;
  }
  .promo__body {
    padding: var(--sp-32);
    text-align: center;
    align-items: center;
  }
  .promo__image img {
    max-height: 280px;
  }
  .lived__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 639px) {
  :root {
    --header-h: 64px;
  }
  .carousel__track {
    grid-auto-columns: 86%;
  }
  .features__row {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog__grid {
    grid-template-columns: 1fr;
  }
  .topbar__inner {
    font-size: 10px;
    letter-spacing: 0.1em;
  }
  .hero__logo {
    width: 140px;
  }
}
