.home-video-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: min(88vh, 860px);
  overflow: hidden;
  background: #0b0b0c;
}

.home-video-banner__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
}

.home-video-banner__fallback {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.32;
}

.home-video-banner__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 8, 9, 0.93) 0%, rgba(8, 8, 9, 0.8) 40%, rgba(8, 8, 9, 0.42) 68%, rgba(8, 8, 9, 0.22) 100%),
    radial-gradient(ellipse 85% 65% at 58% 38%, rgba(255, 255, 255, 0.045), transparent 58%);
  pointer-events: none;
}

.home-video-banner__body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(4.5rem, 10vw, 7rem) 0 clamp(1.25rem, 3vw, 2rem);
}

.home-video-banner__grid {
  flex: 1;
  display: block;
}

.home-video-banner__content {
  text-align: left;
  max-width: 34rem;
}

.home-video-banner__eyebrow {
  margin: 0 0 1.1rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.home-video-banner__title {
  margin: 0 0 1.25rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  line-height: 1.02;
  font-size: clamp(2.6rem, 6vw, 4.25rem);
  letter-spacing: 0.01em;
  color: #faf8f4;
}

.home-video-banner__title-line {
  display: block;
}

.home-video-banner__title-line--accent {
  color: #c4b08e;
}

.home-video-banner__lead {
  margin: 0 0 1.85rem;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  line-height: 1.65;
  color: rgba(250, 248, 244, 0.88);
  max-width: 38ch;
}

.home-video-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 0.85rem;
}

.home-video-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0.55rem 1.35rem;
  font-family: var(--e47-button-font-family);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: var(--e47-tracking-button);
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--e47-button-radius);
  transition: var(--e47-button-transition);
}

.home-video-banner__btn--primary {
  background: var(--e47-button-on-dark-primary-bg);
  color: var(--e47-button-on-dark-primary-fg);
  border: 1px solid var(--e47-button-on-dark-primary-border);
}

.home-video-banner__btn--primary:hover {
  background: var(--e47-button-on-dark-primary-bg-hover);
  border-color: var(--e47-button-on-dark-primary-bg-hover);
  color: var(--e47-button-on-dark-primary-fg-hover);
}

.home-video-banner__btn--ghost {
  background: transparent;
  color: var(--e47-button-on-dark-ghost-fg);
  border: 1px solid var(--e47-button-on-dark-ghost-border);
}

.home-video-banner__btn--ghost:hover {
  border-color: var(--e47-button-on-dark-ghost-border-hover);
  background: var(--e47-button-on-dark-ghost-bg-hover);
}

.home-video-banner__strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: "DM Sans", sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.42);
}

.home-video-banner__content > * {
  opacity: 0;
  transform: translateY(14px);
  animation: homeBannerTextIn 760ms ease forwards;
}

.home-video-banner__content > *:nth-child(1) {
  animation-delay: 80ms;
}

.home-video-banner__content > *:nth-child(2) {
  animation-delay: 200ms;
}

.home-video-banner__content > *:nth-child(3) {
  animation-delay: 320ms;
}

.home-video-banner__content > *:nth-child(4) {
  animation-delay: 440ms;
}

@keyframes homeBannerTextIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-video-banner__content > * {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .home-video-banner__content {
    margin: 0 auto;
    text-align: center;
    max-width: 36rem;
  }

  .home-video-banner__actions {
    justify-content: center;
  }

  .home-video-banner__lead {
    margin-left: auto;
    margin-right: auto;
  }

  .home-video-banner__strip {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .home-video-banner {
    min-height: auto;
  }

  .home-video-banner__body {
    padding-top: 5.25rem;
  }
}

/* Homepage: Our philosophy */
.home-philosophy {
  padding: 8rem 0 8rem;
  background: #fffef9;
}

.home-philosophy__kicker {
  margin: 0 0 1rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b09a78;
}

.home-philosophy__title {
  margin: 0 0 1.25rem;
  max-width: 22ch;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.01em;
  color: #2a2622;
}

.home-philosophy__title-line {
  display: block;
}

.home-philosophy__lead {
  margin: 0 0 2.75rem;
  max-width: 52rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: #5c574e;
}

.home-philosophy__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid #e3e3e3;
}

.home-philosophy__cell {
  margin: 0;
  padding: 2rem 1.35rem 2.25rem;
  text-align: center;
}

.home-philosophy__cell + .home-philosophy__cell {
  border-left: 1px solid #e3e3e3;
}

.home-philosophy__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: #b09a78;
}

.home-philosophy__icon--ag {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.75rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
}

.home-philosophy__svg {
  display: block;
}

.home-philosophy__cell-title {
  margin: 0 0 0.85rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #2a2622;
}

.home-philosophy__cell-text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #5c574e;
}

@media (max-width: 960px) {
  .home-philosophy__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-philosophy__cell {
    border-left: 0;
  }

  .home-philosophy__cell:nth-child(2),
  .home-philosophy__cell:nth-child(4) {
    border-left: 1px solid #e3e3e3;
  }

  .home-philosophy__cell:nth-child(3),
  .home-philosophy__cell:nth-child(4) {
    border-top: 1px solid #e3e3e3;
  }
}

@media (max-width: 560px) {
  .home-philosophy {
    padding: 2.75rem 0 3rem;
  }

  .home-philosophy__grid {
    grid-template-columns: 1fr;
  }

  .home-philosophy__cell {
    border-left: 0 !important;
  }

  .home-philosophy__cell + .home-philosophy__cell {
    border-top: 1px solid #e3e3e3;
  }
}

/* Homepage: The science of Element47 */
.home-science {
  padding: 8rem 0 8rem;
  background: #141312;
  color: #e8e6e3;
}

.home-science__header {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 2rem 3rem;
  align-items: start;
  margin-bottom: 2.75rem;
  padding-bottom: 2.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.home-science__kicker {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232, 230, 227, 0.55);
}

.home-science__title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: 0.02em;
  color: #f5f2ed;
}

.home-science__title-accent {
  display: inline;
  font-style: italic;
  font-weight: 400;
}

.home-science__header-aside {
  align-self: end;
  padding-bottom: 0.15rem;
}

.home-science__rule {
  margin: 0 0 1.15rem;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.home-science__tagline {
  margin: 0;
  max-width: 32ch;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(232, 230, 227, 0.72);
}

.home-science__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 2.5rem;
}

.home-science__cell {
  margin: 0;
  padding: 2rem 1.75rem 2.35rem;
  transition: background-color 260ms ease;
}

.home-science__cell:hover {
  background-color: rgba(255, 255, 255, 0.06);
}

@media (prefers-reduced-motion: reduce) {
  .home-science__cell {
    transition: none;
  }
}

.home-science__cell:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.home-science__cell:nth-child(-n + 2) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.home-science__num {
  display: block;
  margin: 0 0 0.35rem;
  font-family: initial;
  font-size: clamp(3.25rem, 7vw, 4.75rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.07);
}

.home-science__cell-title {
  margin: 0 0 0.9rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #f5f2ed;
}

.home-science__cell-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.58;
  color: rgba(232, 230, 227, 0.78);
}

.home-science__callout {
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
  padding: 1.75rem 1.85rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.home-science__callout-mark {
  flex-shrink: 0;
  width: 4.25rem;
  height: 4.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #f5f2ed;
}

.home-science__callout-body {
  min-width: 0;
}

.home-science__callout-title {
  margin: 0 0 0.65rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #f5f2ed;
  line-height: 1.3;
}

.home-science__callout-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.58;
  color: rgba(232, 230, 227, 0.76);
}

@media (max-width: 820px) {
  .home-science__header {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding-bottom: 2rem;
    margin-bottom: 2.25rem;
  }

  .home-science__header-aside {
    align-self: start;
    padding-bottom: 0;
  }

  .home-science__rule {
    max-width: 12rem;
  }
}

@media (max-width: 560px) {
  .home-science {
    padding: 2.75rem 0 3.25rem;
  }

  .home-science__grid {
    grid-template-columns: 1fr;
  }

  .home-science__cell:nth-child(odd) {
    border-right: 0;
  }

  .home-science__cell:nth-child(-n + 2) {
    border-bottom: 0;
  }

  .home-science__cell + .home-science__cell {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .home-science__callout {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
}

.eyebrow {
  display: inline;
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: #5e584f;
  padding: 5px 8px;
  margin-bottom: 10px;
  display: inline-block;
}

.btn {
  display: inline-block;
  border: 1px solid var(--e47-button-banner-border);
  padding: 0.85rem 1.1rem;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--e47-button-banner-bg);
  font-weight: 800;
  line-height: normal;
  border-radius: var(--e47-button-radius);
  transition: var(--e47-button-transition);
}

.btn:hover {
  background: var(--e47-button-banner-bg-hover);
  color: var(--e47-button-banner-fg-hover);
  transform: translateY(-1px);
}

/*
 * Content
 */
.site-main {
  flex: 1;
  padding: 0rem 0 0rem;
}

body:not(.home) .site-main > .container {
  width: min(var(--e47-container-max), calc(100% - var(--e47-container-gutter)));
}

body:not(.home) .site-main .container {
  text-align: left;
}

body:not(.home) .site-main .container p,
body:not(.home) .site-main .container ul,
body:not(.home) .site-main .container ol {
  max-width: 100%;
}

body:not(.home) .site-main .container ul,
body:not(.home) .site-main .container ol {
  margin: 0 0 2.4rem;
  padding-left: 1.35rem;
}

body:not(.home) .site-main .container li + li {
  margin-top: 0.35rem;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: #1f1c18;
  color: #fffef9;
  text-decoration: none;
  font-size: 0.85rem;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  overflow: visible;
}

.section-title {
  margin: 0 0 1.2rem;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 500;
}

/* Homepage: collection (new arrivals) grid */
.home-collection {
  padding: 8rem 0 8rem;
  background: #faf8f4;
}

.home-collection__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
  flex-wrap: wrap;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.home-collection__intro {
  max-width: 36rem;
  text-align: left;
}

.home-collection__kicker {
  margin: 0 0 0.65rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #a38f6e;
}

.home-collection__title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.02em;
  color: #2a2622;
  font-style: normal;
}

.home-collection__title-line {
  display: block;
  margin-top: 0.08em;
}

.home-collection__title-line em {
  font-family: inherit;
  font-style: italic;
  font-weight: 400;
  color: #6b655c;
}

.home-collection__link-all {
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 0.15rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3a342c;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.home-collection__link-all:hover {
  opacity: 0.75;
}

.home-collection__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.home-collection__card {
  margin: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  /* border-left: 1px #e5e2db solid; */
  /* border-bottom: 1px #e5e2db solid; */
}

.home-collection__media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f0ebe3;
}

.home-collection__image-link {
  display: block;
  width: 100%;
  height: 100%;
}

.home-collection__image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 380ms ease;
}

.home-collection__card:hover .home-collection__image-link img {
  transform: scale(1.03);
}

.home-collection__badges {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  right: auto;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  z-index: 1;
}

.home-collection__badges li {
  font-family: "DM Sans", sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2a2622;
  background: #d4c4a8;
  padding: 0.28rem 0.45rem;
  line-height: 1.2;
}

.home-collection__media-tools {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.4rem;
}

.home-collection__media-tools .e47-wishlist-btn--collection,
.home-collection__media-tools .home-collection__icon-btn {
  flex: 0 0 var(--e47-touch-target-min, 2.75rem);
  width: var(--e47-touch-target-min, 2.75rem);
  min-height: var(--e47-touch-target-min, 2.75rem);
  border: 1px solid rgba(26, 24, 22, 0.12);
  background: rgba(255, 254, 249, 0.94);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.home-collection__media-tools .e47-wishlist-btn--collection:hover,
.home-collection__media-tools .home-collection__icon-btn:hover {
  background: #fff;
}

.home-collection__body {
  padding: 1.15rem 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.home-collection__name {
  margin: 0 0 0.4rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: #14110e;
}

.home-collection__name a {
  color: inherit;
  text-decoration: none;
}

.home-collection__name a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.home-collection__tagline {
  margin: 0 0 0.65rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  line-height: 1.45;
  color: #5c574e;
}

.home-collection__features {
  margin: 0 0 0.85rem;
  padding: 0 0 0 1rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  line-height: 1.45;
  color: #4a453d;
}

.home-collection__features li {
  margin-bottom: 0.2rem;
}

.home-collection__features li:last-child {
  margin-bottom: 0;
}

.home-collection__price {
  margin: 0 0 1rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #14110e;
}

.home-collection__price del {
  opacity: 0.65;
  font-weight: 500;
}

.home-collection__actions {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: auto;
}

.home-collection__actions a.button,
.home-collection__actions a.add_to_cart_button,
.home-collection__actions .added_to_cart {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  margin: 0 !important;
  padding: 0.72rem 0.6rem !important;
  font-family: var(--e47-button-font-family) !important;
  font-size: 0.68rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  line-height: 1.2 !important;
  border-radius: var(--e47-button-radius) !important;
  text-align: center;
  text-decoration: none !important;
}

.home-collection__actions a.button,
.home-collection__actions a.add_to_cart_button {
  background: var(--e47-button-shop-dark-bg) !important;
  color: var(--e47-button-shop-dark-fg) !important;
  border: 1px solid var(--e47-button-shop-dark-border) !important;
}

.home-collection__actions .added_to_cart {
  background: var(--e47-button-shop-outline-bg) !important;
  color: var(--e47-button-shop-outline-fg) !important;
  border: 1px solid var(--e47-button-shop-outline-border) !important;
}

.home-collection__actions a.button:hover,
.home-collection__actions a.add_to_cart_button:hover {
  background: var(--e47-button-shop-dark-bg-hover) !important;
  border-color: var(--e47-button-shop-dark-border-hover) !important;
  color: var(--e47-button-shop-dark-fg-hover) !important;
}

.home-collection__add::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  background-color: currentcolor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M6 6h15l-1.5 9h-11L6 6z'/%3E%3Ccircle cx='10' cy='20' r='1' fill='white'/%3E%3Ccircle cx='17' cy='20' r='1' fill='white'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M6 6h15l-1.5 9h-11L6 6z'/%3E%3Ccircle cx='10' cy='20' r='1' fill='white'/%3E%3Ccircle cx='17' cy='20' r='1' fill='white'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.home-collection__icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1a1816;
  transition: background-color 180ms ease, color 180ms ease;
}

.home-collection__icon-btn:hover {
  background: #f4efe6;
}

.home-collection__icon-btn svg {
  display: block;
}

@media (max-width: 1100px) {
  .home-collection__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .home-collection {
    padding: 2.5rem 0 2.75rem;
  }

  .home-collection__header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1.75rem;
  }

  .home-collection__grid {
    grid-template-columns: 1fr;
  }
}

/*
 * WooCommerce
 */
.home-why {
  padding: 8rem 0 8rem;
  background: #f3f2eb;
}

.home-why__header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.75rem;
}

.home-why__kicker {
  margin: 0 0 0.85rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #a08f6e;
}

.home-why__title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.85rem, 3.6vw, 2.65rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: #2a2622;
}

.home-why__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.2rem 0.2rem;
}

.home-why__cell {
  margin: 0;
  text-align: center;
  background: #fffdf9;
  padding: 2.5rem;
  transition: background-color 240ms ease;
}

.home-why__cell:hover {
  background-color: #0e0f12;
}

.home-why__cell:hover .home-why__cell-title {
  color: #faf8f4;
}

.home-why__cell:hover .home-why__cell-text {
  color: rgba(240, 237, 232, 0.82);
}

.home-why__cell:hover .home-why__icon-wrap {
  color: #b09a78;
}

.home-why__cell:hover .home-why__svg {
  border-color: rgba(250, 248, 244, 0.28);
}

@media (prefers-reduced-motion: reduce) {
  .home-why__cell {
    transition: none;
  }

  .home-why__cell-title,
  .home-why__cell-text,
  .home-why__icon-wrap,
  .home-why__svg {
    transition: none;
  }
}

.home-why__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  color: #a08f6e;
  border: none;
  outline: none;
  box-shadow: none;
  transition: color 240ms ease;
}

.home-why__svg {
  display: block;
  border: 2px solid #e5e4e0;
  transition: border-color 240ms ease;
}

.home-why__cell-title {
  margin: 0 0 0.45rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #2a2622;
  transition: color 240ms ease;
}

.home-why__cell-text {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 0.84rem;
  line-height: 1.5;
  color: #5c574e;
  transition: color 240ms ease;
}

@media (max-width: 960px) {
  .home-why__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.2rem 0.2rem;
  }
}

@media (max-width: 560px) {
  .home-why {
    padding: 2.75rem 0 3rem;
  }

  .home-why__header {
    margin-bottom: 2rem;
  }

  .home-why__grid {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
}

/* Homepage: founder note */
.home-founder-note {
  padding: 8rem 0 8rem;
  background: #0e0f12;
  color: #f0ede8;
}

.home-founder-note__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: stretch;
}

.home-founder-note__media {
  min-height: 22rem;
}

.home-founder-note__img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-founder-note__placeholder {
  height: 100%;
  min-height: 22rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: #15161c;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.home-founder-note__placeholder-letter {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: rgba(240, 237, 232, 0.45);
}

.home-founder-note__placeholder-label {
  font-family: "DM Sans", sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.35);
}

.home-founder-note__content {
  text-align: left;
  padding: 5rem 2rem;
}

.home-founder-note__kicker {
  margin: 0 0 0.85rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b09a78;
}

.home-founder-note__rule {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 0 0 1.5rem;
}

.home-founder-note__quote {
  margin: 0 0 1.5rem;
  padding: 0;
  border: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: #faf8f4;
}

.home-founder-note__body {
  margin: 0 0 1.1rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(240, 237, 232, 0.82);
}

.home-founder-note__body + .home-founder-note__rule {
  margin: 1.75rem 0 1.25rem;
}

.home-founder-note__sign-name {
  margin: 0 0 0.35rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #faf8f4;
}

.home-founder-note__sign-line {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.45);
}

@media (max-width: 900px) {
  .home-founder-note__layout {
    grid-template-columns: 1fr;
  }

  .home-founder-note__media {
    min-height: 18rem;
    max-height: 28rem;
  }

  .home-founder-note__img,
  .home-founder-note__placeholder {
    min-height: 18rem;
    max-height: 28rem;
  }

  .home-founder-note__img {
    object-position: center top;
  }
}

@media (max-width: 560px) {
  .home-founder-note {
    padding: 2.75rem 0 3rem;
  }
}

/* Homepage: testimonials */
.home-testimonials {
  background: #fcfbf9;
  color: #1f1c18;
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(3.5rem, 8vw, 5.25rem);
}

.home-testimonials__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem 2.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.home-testimonials__intro {
  max-width: 32rem;
}

.home-testimonials__label {
  margin: 0 0 0.65rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #a38f6e;
}

.home-testimonials__title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400;
  line-height: 1.12;
  color: #1a1816;
  font-style: normal;
}

.home-testimonials__title-line {
  display: block;
  margin-top: 0.08em;
}

.home-testimonials__title-line em {
  font-family: inherit;
  font-style: italic;
}

.home-testimonials__summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
  margin: 0.2rem 0 0;
}

.home-testimonials__summary-stars {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #b89f6e;
}

.home-testimonials__summary-text {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: #2a2622;
}

.home-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: none;
}

.home-testimonials__card {
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2.35rem) clamp(1.25rem, 2.5vw, 2rem);
  border-right: 1px solid #e5e0d6;
  border-bottom: 1px solid #e5e0d6;
  display: flex;
  flex-direction: column;
  min-height: 0;
  font-family: "DM Sans", sans-serif;
}

.home-testimonials__card:nth-child(2n) {
  border-right: none;
}

.home-testimonials__card:nth-child(n + 3) {
  border-bottom: none;
}

.home-testimonials__card-stars {
  margin: 0 0 1rem;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: #b89f6e;
}

.home-testimonials__quote {
  margin: 0;
  flex: 1 1 auto;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #25201c;
}

.home-testimonials__card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem 1.5rem;
  margin-top: 1.35rem;
  padding-top: 1.2rem;
  border-top: 1px solid #e8e4dc;
}

.home-testimonials__cite {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin: 0;
  font-style: normal;
}

.home-testimonials__cite-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: #1f1c18;
}

.home-testimonials__cite-city {
  font-size: 0.8rem;
  color: #454037;
}

.home-testimonials__product {
  flex: 0 0 auto;
  max-width: 50%;
  text-align: right;
  font-family: "DM Sans", sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.35;
  color: #a38f6e;
}

a.home-testimonials__product {
  text-decoration: none;
  color: #a38f6e;
}

a.home-testimonials__product:hover,
a.home-testimonials__product:focus-visible {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .home-testimonials__grid {
    grid-template-columns: 1fr;
  }

  .home-testimonials__card {
    border-right: none;
  }

  .home-testimonials__card:nth-child(n + 3) {
    border-bottom: 1px solid #e5e0d6;
  }

  .home-testimonials__card:last-child {
    border-bottom: none;
  }
}
