/* ============================================
   LA EVA — Homepage Sections
   ============================================ */

/* ---- Campaign Banner ---- */
.campaign-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
}

.campaign-banner__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.campaign-banner__image {
  position: relative;
  overflow: hidden;
}

.campaign-banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.campaign-banner:hover .campaign-banner__image img {
  transform: scale(1.03);
}

.campaign-banner__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.campaign-banner__text {
  font-family: var(--font-heading);
  font-size: 8rem;
  font-weight: var(--fw-bold);
  color: var(--color-text-white);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.campaign-banner__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-3xl);
}

.campaign-banner__cta {
  margin-top: var(--space-xl);
}

/* ---- Product Highlight (3-column Animated) ---- */
.product-highlight {
  min-height: 80vh;
  background-color: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-5xl) 0;
  overflow: hidden;
}

.ph-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-2xl);
  gap: var(--space-xl);
  width: 100%;
}

.ph-left {
  text-align: left;
}

.ph-title {
  font-family: var(--font-heading);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-regular);
  color: var(--color-text-primary);
  line-height: var(--lh-tight);
}

.ph-center {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.ph-bottle-wrap {
  position: relative;
  z-index: 2;
}

/* Keyframes for continuous bobbing/floating */
@keyframes ph-float-up {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

@keyframes ph-float-down {
  0% { transform: translateY(0); }
  50% { transform: translateY(15px); }
  100% { transform: translateY(0); }
}

.ph-bottle {
  max-height: 600px;
  width: auto;
  position: relative;
  z-index: 3;
  animation: ph-float-up 6s ease-in-out infinite;
}

.ph-floating {
  position: absolute;
}

.ph-floating--1 {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 4;
  animation: ph-float-down 5s ease-in-out infinite;
  transform-origin: center center;
}

.ph-floating--3 {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1; /* Furthest behind */
  animation: ph-float-down 6.5s ease-in-out infinite;
}

.ph-right {
  text-align: left;
}

.ph-desc {
  font-size: var(--fs-sm);
  color: var(--color-text-body);
  line-height: var(--lh-loose);
  margin-bottom: var(--space-2xl);
}

.ph-link {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  transition: color var(--transition-fast);
}

.ph-link:hover {
  color: var(--color-gold);
}

.ph-link-arrow {
  margin-left: var(--space-xs);
  font-size: var(--fs-base);
  transition: transform var(--transition-fast);
}

.ph-link:hover .ph-link-arrow {
  transform: translateX(4px);
}

/* ---- Brand Philosophy ---- */
.brand-philosophy {
  padding: 0;
  background-color: #c8a96e;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  position: relative;
}

.brand-philosophy__inner {
  background-color: rgba(253, 248, 240, 0.93);
  max-width: 600px;
  width: 90%;
  margin: 0 auto;
  text-align: center;
  padding: 56px 48px 48px;
  position: relative;
  z-index: 2;
}

.brand-philosophy__title {
  margin-bottom: 24px;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.brand-philosophy__title .bp-italic {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 500;
  font-style: normal;
  color: #2c2c2c;
}

.brand-philosophy__title .bp-bold {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 800;
  color: #2c2c2c;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.brand-philosophy__text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 32px;
  padding: 0 8px;
}

.brand-philosophy__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  background-color: #333;
  color: #ffffff;
  padding: 18px 32px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}

.brand-philosophy__btn:hover {
  background-color: #1a1a1a;
  color: #fff;
}

/* ---- Certifications ---- */
.certifications {
  padding: 80px 0 90px;
  background: #faf8f5;
}

.certifications__title {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
  color: #2c2c2c;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.certifications__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.cert-card {
  text-align: center;
  padding: 0 20px;
}

.cert-card__logo {
  width: 140px;
  height: 120px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-card__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cert-card__name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 12px;
}

.cert-card__label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c8956c;
  margin-bottom: 22px;
}

.cert-card__desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #777;
  line-height: 1.7;
}

/* ---- Best Sellers ---- */
.best-sellers.split-layout {
  padding: 80px 0;
  background: #faf8f5;
  overflow: hidden;
}

.split-layout__container {
  display: flex;
  margin: 0 auto;
  gap: 60px;
  padding: 0 40px;
  align-items: center;
}

.best-sellers__sidebar {
  width: 32%;
  display: flex;
  flex-direction: column;
}

.best-sellers__title {
  margin-bottom: 24px;
  line-height: 1.1;
  color: #2c2c2c;
}

.bs-title-italic {
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: 500;
  font-size: 3.2rem;
}

.bs-title-bold {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 3.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.best-sellers__subtitle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #777;
  line-height: 1.6;
}

.best-sellers__content {
  width: 68%;
  position: relative;
}

.best-sellers__grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.best-sellers__grid::-webkit-scrollbar {
  display: none;
}

.best-sellers .product-card {
  min-width: 400px;
  max-width: 400px;
  flex-shrink: 0;
  scroll-snap-align: start;
  text-align: left;
}

.best-sellers .product-card__image-wrap {
  display: block;
  width: 400px;
  background-color: #f6f5f3;
  border-radius: 4px;
  padding: 0;
  margin-bottom: 16px;
  position: relative;
  transition: transform 0.3s;
  overflow: hidden;
}

.best-sellers .product-card__image-wrap:hover {
  transform: translateY(-5px);
}

.best-sellers .product-card__image {
  background: transparent;
  width: 400px;
  height: 500px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.best-sellers .product-card__image img {
  width: 400px;
  height: 500px;
  max-width: 100%;
  max-height: 100%;
  mix-blend-mode: multiply;
  object-fit: contain;
}

.best-sellers .product-card__image .img-main {
  transition: opacity 0.4s ease;
  z-index: 1;
}

.best-sellers .product-card__image .img-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 400px;
  height: 500px;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.best-sellers .product-card__image-wrap:hover .has-hover .img-main {
  opacity: 0;
}

.best-sellers .product-card__image-wrap:hover .has-hover .img-hover {
  opacity: 1;
}

.best-sellers .product-card__badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #c8956c;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
}

.best-sellers .product-card__info {
  padding: 0 5px;
}

.best-sellers .product-card__name {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.best-sellers .product-card__name a {
  color: #2c2c2c;
  text-decoration: none;
}

.best-sellers .product-card__desc {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #777;
  letter-spacing: 1px;
  margin-bottom: 16px;
  line-height: 1.4;
}

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

.best-sellers .product-card__price {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  color: #2c2c2c;
}

.best-sellers .product-card__price.price-out {
  color: #d9534f;
}

.best-sellers .product-card__add-btn {
  background: #ebdcc5;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2c2c2c;
  transition: all 0.3s;
}

.best-sellers .product-card__add-btn:hover {
  background: #daba94;
}

.best-sellers__nav {
  position: absolute;
  left: -20px;
  top: 40%;
  transform: translateY(-50%);
  z-index: 10;
}

.best-sellers__nav .bs-nav-prev {
  width: 44px;
  height: 44px;
  background: #2c2c2c;
  color: white;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

/* ---- Ingredients Story ---- */
.ingredients-story {
  padding: 80px 0;
  background: #faf8f5;
  overflow: hidden;
}

.ingredients-story__container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0 16px;
}

.ingredients-story__sidebar {
  text-align: center;
  padding: 0 16px 8px;
}

.ingredients-story__title {
  margin-bottom: 16px;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.ingredients-story__title .is-title-italic {
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: 500;
  font-size: 2rem;
  color: #2c2c2c;
}

.ingredients-story__title .is-title-bold {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 2.4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #2c2c2c;
}

.ingredients-story__desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #777;
  line-height: 1.6;
  max-width: 410px;
  margin: 0 auto;
}

.ingredients-story__btn {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 400px;
  height: 60px;
  margin: 66px auto 0;
  padding: 22px 27px;
  border: 1px solid #ede0cc;
  border-radius: 4px;
  background-color: #fefbf4;
  color: #1f1c17;
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.ingredients-story__btn:hover {
  background-color: #ede0cc;
  border-color: #ede0cc;
  color: #1f1c17;
}

.ingredients-story__btn-arrow {
  font-size: 1.5rem;
  line-height: 1;
  flex: 1;
  display: flex;
  justify-content: flex-end;
  transition: transform 0.5s ease;
}

.ingredients-story__btn:hover .ingredients-story__btn-arrow {
  transform: translateX(10px);
}

.ingredients-story__slider-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.ingredients-story__carousel {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 16px 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.ingredients-story__carousel::-webkit-scrollbar {
  display: none;
}

.ingredient-card {
  min-width: 280px;
  max-width: 280px;
  flex-shrink: 0;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ingredient-card__image {
  width: 280px;
  height: 331px;
  overflow: hidden;
  border-radius: 4px;
}

.ingredient-card__image img {
  width: 280px;
  height: 331px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.ingredient-card__name {
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #2c2c2c;
  text-align: center;
}

.ingredients-story__nav {
  display: none;
}

.ingredients-story__nav .is-nav-prev,
.ingredients-story__nav .is-nav-next {
  width: 44px;
  height: 44px;
  background: #2c2c2c;
  color: #fff;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s;
}

.ingredients-story__nav .is-nav-prev:hover,
.ingredients-story__nav .is-nav-next:hover {
  background: #1a1a1a;
}

@media (min-width: 1024px) {
  .ingredients-story__container {
    flex-direction: row-reverse;
    align-items: flex-end;
    gap: 0;
    padding: 0 44px 0 12px;
  }

  .ingredients-story__sidebar {
    width: 36%;
    flex-shrink: 0;
    text-align: left;
    padding: 0 0 40px 28px;
  }

  .ingredients-story__title {
    align-items: flex-start;
  }

  .ingredients-story__title .is-title-italic {
    font-size: 4.25rem;
    line-height: 1.05;
  }

  .ingredients-story__title .is-title-bold {
    font-size: 4.25rem;
    line-height: 1.05;
  }

  .ingredients-story__desc {
    margin: 66px 0 0;
    font-size: 1rem;
    color: #666;
    line-height: 1.75;
    max-width: 410px;
  }

  .ingredients-story__btn {
    display: flex;
    margin: 66px 0 0;
    height: 70px;
    max-width: 400px;
    padding: 27px;
    font-size: 1.375rem;
  }

  .ingredients-story__slider-wrap {
    width: 64%;
    padding-left: 40px;
  }

  .ingredients-story__carousel {
    padding: 0 0 20px;
    gap: 30px;
    overflow-x: auto;
  }

  .ingredient-card {
    min-width: 550px;
    max-width: 550px;
  }

  .ingredient-card__image,
  .ingredient-card__image img {
    width: 550px;
    height: 650px;
  }

  .ingredient-card__name {
    margin-top: 16px;
    font-size: 1.75rem;
  }

  .ingredients-story__nav {
    display: block;
  }

  .ingredients-story__nav .is-nav-prev {
    position: absolute;
    left: 0;
    top: 42%;
    transform: translateY(-50%);
    z-index: 10;
  }

  .ingredients-story__nav .is-nav-next {
    position: absolute;
    right: 20px;
    top: 42%;
    transform: translateY(-50%);
    z-index: 10;
  }
}

/* ---- Latest Articles ---- */
.latest-articles {
  padding: 24px 0 28px;
  background: #fefbf4;
}

.latest-articles__inner {
  padding: 0 16px;
}

.latest-articles__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.latest-articles__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  color: #1f1c17;
  margin: 0;
}

.latest-articles__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #ede0cc;
  border-radius: 4px;
  background-color: #fefbf4;
  color: #1f1c17;
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.latest-articles__btn:hover {
  background-color: #ede0cc;
  border-color: #ede0cc;
  color: #1f1c17;
}

.latest-articles__btn-arrow {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.5s ease;
}

.latest-articles__btn:hover .latest-articles__btn-arrow {
  transform: translateX(10px);
}

.latest-articles__btn--desktop {
  display: none;
}

.latest-articles__btn--mobile {
  width: 100%;
  height: 50px;
  margin-top: 28px;
  padding: 17px 30px;
  font-size: 1rem;
}

.latest-articles__grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.latest-articles__grid::-webkit-scrollbar {
  display: none;
}

.latest-articles .article-card {
  min-width: 85%;
  flex: 0 0 85%;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}

.latest-articles .article-card__image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 10px;
}

.latest-articles .article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.5s ease;
}

.latest-articles .article-card:hover .article-card__image img {
  transform: scale(1.1);
}

.latest-articles .article-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 0 0 6px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  color: #1f1c17;
}

.latest-articles .article-card__meta-prefix {
  display: none;
}

.latest-articles .article-card__tag {
  color: #1f1c17;
  text-decoration: none;
  font-weight: 600;
}

.latest-articles .article-card__tag:hover {
  color: #1f1c17;
}

.latest-articles .article-card__date {
  color: #c5a25d;
  font-weight: 500;
}

.latest-articles .article-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
}

.latest-articles .article-card__title {
  margin: 6px 0;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  color: #1f1c17;
  display: block;
}

.latest-articles .article-card__title .animate-underline {
  background:
    linear-gradient(90deg, transparent, transparent),
    linear-gradient(90deg, #1f1c17, #1f1c17);
  background-size: 100% 1px, 0 1px;
  background-position: 100% calc(100% - 3px), 0 calc(100% - 3px);
  background-repeat: no-repeat;
  transition: background-size 0.3s ease;
}

.latest-articles .article-card:hover .animate-underline {
  background-size: 0 1px, 100% 1px;
}

.latest-articles .article-card__excerpt {
  margin: 6px 0 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.4;
  color: #777;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.latest-articles .article-card__read-more {
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: #1f1c17;
  text-decoration: underline;
}

@media (min-width: 1024px) {
  .latest-articles {
    padding: 56px 0 28px;
  }

  .latest-articles__inner {
    padding: 0 44px;
  }

  .latest-articles__header {
    margin-bottom: 24px;
  }

  .latest-articles__title {
    font-size: 4.5rem;
  }

  .latest-articles__btn--desktop {
    display: flex;
    width: 400px;
    height: 70px;
    padding: 27px;
    font-size: 1.375rem;
    letter-spacing: 0.02em;
  }

  .latest-articles__btn--mobile {
    display: none;
  }

  .latest-articles__grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    overflow: visible;
    padding-bottom: 0;
  }

  .latest-articles .article-card {
    flex: 1;
    min-width: 0;
    max-width: 576px;
  }

  .latest-articles .article-card + .article-card {
    margin-left: 0;
  }

  .latest-articles .article-card__meta {
    margin-top: 10px;
    font-size: 1rem;
  }

  .latest-articles .article-card__title {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .latest-articles .article-card__excerpt {
    font-size: 1rem;
  }

  .latest-articles .article-card__read-more {
    display: none;
  }
}

/* ---- Instagram Feed ---- */
.instagram-feed {
  padding: 28px 0;
  background: #fefbf4;
}

.instagram-feed__inner {
  padding: 0 16px;
}

.instagram-feed__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.instagram-feed__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  color: #1f1c17;
}

.instagram-feed__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #ede0cc;
  border-radius: 4px;
  background-color: #fefbf4;
  color: #1f1c17;
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.instagram-feed__btn:hover {
  background-color: #ede0cc;
  border-color: #ede0cc;
  color: #1f1c17;
}

.instagram-feed__btn-icon {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  line-height: 0;
}

.instagram-feed__btn--desktop {
  display: none;
}

.instagram-feed__icon-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1f1c17;
  text-decoration: none;
  line-height: 0;
}

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

.instagram-feed__item:nth-child(n + 5) {
  display: none;
}

.instagram-feed__item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  text-decoration: none;
}

.instagram-feed__image {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 4px;
}

.instagram-feed__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.instagram-feed__overlay {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(31, 28, 23, 0.8);
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
  color: #fff;
  pointer-events: none;
}

@media (min-width: 1024px) {
  .instagram-feed {
    padding: 28px 0 44px;
  }

  .instagram-feed__inner {
    padding: 0 44px;
  }

  .instagram-feed__header {
    margin-bottom: 12px;
  }

  .instagram-feed__title {
    font-size: 4.5rem;
  }

  .instagram-feed__btn--desktop {
    display: flex;
    width: 400px;
    height: 70px;
    padding: 27px;
    font-size: 1.375rem;
    letter-spacing: 0.02em;
  }

  .instagram-feed__icon-mobile {
    display: none;
  }

  .instagram-feed__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
  }

  .instagram-feed__item:nth-child(n + 5) {
    display: block;
  }

  .instagram-feed__item {
    height: 100%;
  }

  .instagram-feed__item:first-child {
    grid-column: span 2;
    grid-row: span 2;
  }

  .instagram-feed__item:first-child .instagram-feed__image {
    aspect-ratio: auto;
    height: 100%;
    min-height: 100%;
  }

  .instagram-feed__item:first-child .instagram-feed__image img {
    height: 100%;
    min-height: 100%;
  }

  .instagram-feed__overlay {
    display: flex;
  }

  .instagram-feed__item:hover .instagram-feed__overlay {
    opacity: 1;
  }
}

/* ---- Press Quotes Marquee ---- */
.press-marquee {
  padding: var(--space-3xl) 0;
  overflow: hidden;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.press-marquee__track {
  display: flex;
  gap: var(--space-4xl);
  animation: marquee 30s linear infinite;
  width: max-content;
}

.press-marquee__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  min-width: 400px;
  text-align: center;
  flex-shrink: 0;
}

.press-marquee__quote {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-style: normal;
  color: var(--color-text-primary);
}

.press-marquee__source {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-text-muted);
}
