:root {
  --collection-mineral: #4739ff;
  --collection-mineral-soft: #dedbff;
  --collection-forest: #257a4a;
  --collection-forest-soft: #dcebdc;
  --collection-taste: #bd4b32;
  --collection-taste-soft: #f3ded4;
}

.thematic-collection {
  background: #efedef;
}

.thematic-hero {
  padding: 34px 0 92px;
  overflow: hidden;
}

.thematic-hero--minerals { background: linear-gradient(135deg, #f0eef5 0%, #dedbff 100%); }
.thematic-hero--forest { background: linear-gradient(135deg, #edf0eb 0%, #dcebdc 100%); }
.thematic-hero--taste { background: linear-gradient(135deg, #f2edeb 0%, #f3ded4 100%); }

.thematic-hero__grid {
  display: grid;
  grid-template-columns: minmax(380px, .84fr) minmax(560px, 1.16fr);
  gap: 64px;
  align-items: center;
  padding-top: 36px;
}

.thematic-hero h1 {
  margin: 15px 0 28px;
  max-width: 760px;
  font-size: clamp(58px, 5.75vw, 92px);
  line-height: .9;
  letter-spacing: -.065em;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.thematic-hero__lead {
  max-width: 650px;
  margin: 0;
  font-size: clamp(20px, 1.8vw, 27px);
  line-height: 1.38;
}

.thematic-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.thematic-hero__visual {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  min-height: 620px;
}

.thematic-hero__visual figure {
  margin: 0;
  min-width: 0;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255,255,255,.66);
  box-shadow: 0 24px 65px rgba(22,20,35,.14);
}

.thematic-hero__visual figure:first-child { grid-row: 1 / -1; }
.thematic-hero__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thematic-hero__visual figure:first-child img { object-position: 50% 42%; }

.thematic-hero--minerals .thematic-hero__visual figure { background: #f7f5fb; }
.thematic-hero--forest .thematic-hero__visual figure { background: #f3f4ee; }
.thematic-hero--taste .thematic-hero__visual figure { background: #fbf5ef; }

.thematic-intro {
  padding: 100px 0;
  background: #fff;
}

.thematic-intro__grid {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(480px, 1.18fr);
  gap: 90px;
  align-items: start;
}

.thematic-intro h2,
.thematic-products h2,
.thematic-makers h2 {
  margin: 10px 0 0;
  font-size: clamp(46px, 5.3vw, 82px);
  line-height: .95;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.thematic-intro__copy {
  font-size: 20px;
  line-height: 1.55;
}

.thematic-intro__copy p { margin: 0 0 18px; }

.thematic-intro__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.thematic-intro__tags span {
  padding: 10px 13px;
  border: 1px solid rgba(35,31,32,.22);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.thematic-products { padding: 100px 0 110px; }
.thematic-products__heading,
.thematic-makers__heading {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(480px, 1.18fr);
  gap: 90px;
  align-items: end;
  margin-bottom: 46px;
}

.thematic-products__heading > p,
.thematic-makers__heading > p {
  max-width: 680px;
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
}

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

.thematic-product {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 15px 40px rgba(35,31,32,.08);
}

.thematic-product--wide { grid-column: span 2; }
.thematic-product__media {
  display: block;
  height: 340px;
  overflow: hidden;
  background: #e8e6e9;
}

.thematic-product--wide .thematic-product__media { height: 440px; }
.thematic-product__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.thematic-product__media .arctic-placeholder {
  min-height: 100%;
  border: 0;
  border-radius: 0;
}

.thematic-product:hover .thematic-product__media img { transform: scale(1.025); }
.thematic-collection--minerals .thematic-product__media { background: #e8e5f1; }
.thematic-collection--forest .thematic-product__media { background: #e2e9df; }
.thematic-collection--taste .thematic-product__media { background: #eee3dd; }

.thematic-product__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.thematic-product__body h3 {
  margin: 7px 0 10px;
  font-size: 25px;
  line-height: 1.05;
}

.thematic-product__body > p:not(.eyebrow) {
  margin: 0 0 20px;
  color: #5e5a5f;
  line-height: 1.42;
}

.thematic-product__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: auto;
}

.thematic-makers {
  padding: 105px 0 115px;
  background: #fff;
}

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

.thematic-maker {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(35,31,32,.1);
  border-radius: 18px;
  background: #f7f5f7;
}

.thematic-maker__photo {
  display: block;
  height: 285px;
  overflow: hidden;
  background: #e6e4e7;
}

.thematic-maker__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 10%;
}

.thematic-maker__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.thematic-maker h3 {
  margin: 8px 0 5px;
  font-size: 25px;
  line-height: 1.05;
}

.thematic-maker__brand {
  margin: 0 0 12px;
  color: #5f5b60;
  font-weight: 700;
}

.thematic-maker__body > p:not(.eyebrow):not(.thematic-maker__brand) {
  margin: 0 0 20px;
  line-height: 1.42;
}

.thematic-maker__body .more { margin-top: auto; }

.collection-cards-new {
  padding: 90px 0 105px;
  background: #fff;
}

.collection-cards-new__heading { margin-bottom: 34px; }
.collection-cards-new__heading h2 {
  margin: 8px 0 0;
  font-size: clamp(44px, 5vw, 72px);
  letter-spacing: -.05em;
}

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

.collection-card-new {
  position: relative;
  display: flex;
  min-height: 570px;
  overflow: hidden;
  border-radius: 22px;
  color: #fff;
  box-shadow: 0 22px 55px rgba(35,31,32,.12);
}

.collection-card-new::after {
  content: "";
  position: absolute;
  inset: 25% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(12,10,18,.88));
}

.collection-card-new > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-card-new--minerals { background: #292056; }
.collection-card-new--forest { background: #244f38; }
.collection-card-new--taste { background: #6e2e21; }

.collection-card-new__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-self: flex-end;
  gap: 10px;
  padding: 28px;
}

.collection-card-new__copy em {
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .08em;
}

.collection-card-new__copy strong {
  font-size: 36px;
  line-height: .96;
}

.collection-card-new__copy small {
  font-size: 16px;
  line-height: 1.35;
}

.featured-collections--expanded {
  grid-template-columns: 2fr 1fr;
  grid-template-rows: repeat(3, 205px);
  min-height: 0;
}

.featured-collections--expanded .collection-feature { min-height: 0; }
.featured-collections--expanded .collection-feature--1 {
  grid-column: 1;
  grid-row: 1 / -1;
}
.featured-collections--expanded .collection-feature--2 { grid-column: 2; grid-row: 1; }
.featured-collections--expanded .collection-feature--3 { grid-column: 2; grid-row: 2; }
.featured-collections--expanded .collection-feature--4 { grid-column: 2; grid-row: 3; }
.featured-collections--expanded .collection-feature > span { padding: 22px; }
.featured-collections--expanded .collection-feature:not(.collection-feature--priority) strong { font-size: 25px; }
.featured-collections--expanded .collection-feature:not(.collection-feature--priority) small { font-size: 13px; }

.featured-collections--expanded .collection-feature__cover {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.featured-collections--expanded .collection-feature__cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-collections--expanded .collection-feature--priority > img:is([src*="collection-square-water"],[src="/assets/web/c1d82853e95b128ba7cb88ae-1254.webp"]) {
  padding: 0;
  object-fit: cover;
  object-position: 50% 50%;
  background: #071c3b;
}

@media (max-width: 1080px) {
  .thematic-hero__grid,
  .thematic-intro__grid,
  .thematic-products__heading,
  .thematic-makers__heading { grid-template-columns: 1fr; gap: 38px; }
  .thematic-hero__visual { min-height: 570px; }
  .thematic-product-grid,
  .thematic-maker-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .collection-cards-new__grid { grid-template-columns: 1fr 1fr; }
  .collection-card-new:first-child { grid-column: 1 / -1; min-height: 500px; }
}

@media (max-width: 820px) {
  .featured-collections--expanded {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 440px 360px 360px;
  }
  .featured-collections--expanded .collection-feature--1 { grid-column: 1 / -1; grid-row: 1; }
  .featured-collections--expanded .collection-feature--2 { grid-column: 1; grid-row: 2; }
  .featured-collections--expanded .collection-feature--3 { grid-column: 2; grid-row: 2; }
  .featured-collections--expanded .collection-feature--4 { grid-column: 1 / -1; grid-row: 3; }
}

@media (max-width: 640px) {
  .thematic-hero { padding-bottom: 62px; }
  .thematic-hero__grid { padding-top: 20px; }
  .thematic-hero h1 { font-size: clamp(48px, 15vw, 66px); line-height: .9; }
  .thematic-hero__visual { grid-template-columns: 1fr 1fr; min-height: 480px; }
  .thematic-hero__visual figure:first-child { grid-column: 1 / -1; grid-row: 1; }
  .thematic-intro,
  .thematic-products,
  .thematic-makers { padding: 68px 0; }
  .thematic-product-grid,
  .thematic-maker-grid,
  .collection-cards-new__grid { grid-template-columns: 1fr; }
  .thematic-product--wide,
  .collection-card-new:first-child { grid-column: auto; }
  .thematic-product__media,
  .thematic-product--wide .thematic-product__media { height: 330px; }
  .thematic-maker__photo { height: 320px; }
  .collection-card-new { min-height: 470px; }
  .featured-collections--expanded { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(4, 390px); }
  .featured-collections--expanded .collection-feature--1,
  .featured-collections--expanded .collection-feature--2,
  .featured-collections--expanded .collection-feature--3,
  .featured-collections--expanded .collection-feature--4 { grid-column: 1; grid-row: auto; }
  .featured-collections--expanded .collection-feature--priority > span { padding-bottom: 145px; }
}
