.hero-banner {
  position: relative;
  width: 100%;
  min-height: clamp(560px, calc(100vh - var(--announcement-height) - var(--header-height) - 30px), 760px);
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 39%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgb(255 255 255 / 0.22), rgb(255 255 255 / 0.45) 50%, rgb(255 255 255 / 0.18)),
    linear-gradient(180deg, rgb(18 18 18 / 0.05), rgb(18 18 18 / 0.16));
}

.hero-content {
  width: min(100% - 40px, 620px);
  margin: 0 auto;
  padding: 28px 0;
  text-align: center;
  color: var(--ink);
}

.hero-content h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
  color: var(--ink);
}

.hero-content p {
  margin: 16px 0 24px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #6a6a6a;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 160ms ease, border-color 160ms ease;
}

.hero-cta:hover,
.hero-cta:focus-visible {
  color: var(--muted);
  border-color: var(--muted);
}

.hero-cta:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 6px;
}

.value-ticker {
  height: 30px;
  overflow: hidden;
  background: var(--heritage-green);
  color: var(--paper);
  display: flex;
  align-items: center;
  border: 0;
}

.value-track {
  display: flex;
  min-width: max-content;
  animation: value-marquee 28s linear infinite;
  will-change: transform;
}

.value-group {
  display: flex;
  align-items: center;
  min-width: max-content;
}

.value-group span {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 34px;
  font-size: 11px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
}

.value-group span::after {
  content: "|";
  position: absolute;
  right: -2px;
  color: rgb(255 255 255 / 0.68);
}

.category-section,
.best-sellers-section {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 76px clamp(18px, 3vw, 48px) 0;
}

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

.category-tile {
  display: block;
}

.category-tile figure {
  margin: 0;
}

.category-tile img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #f4f1ec;
  transition: opacity 180ms ease, transform 220ms ease;
}

.category-tile figcaption {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  color: var(--ink);
}

.category-tile:hover img,
.category-tile:focus-visible img {
  opacity: 0.88;
  transform: scale(1.012);
}

.category-tile:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 6px;
}

.product-carousel {
  position: relative;
  padding: 0 46px;
}

.product-carousel-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.product-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.product-carousel-viewport:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 8px;
}

.product-carousel-track {
  display: flex;
  gap: 18px;
}

.product-carousel .product-card {
  flex: 0 0 calc((100% - 90px) / 6);
  scroll-snap-align: start;
}

.product-carousel-button {
  position: absolute;
  top: calc(50% - 34px);
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 1px solid rgb(18 18 18 / 0.18);
  border-radius: 50%;
  background: rgb(255 255 255 / 0.92);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: opacity 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.product-carousel-button span {
  display: block;
  margin-top: -2px;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
}

.product-carousel-button-prev {
  left: 0;
}

.product-carousel-button-next {
  right: 0;
}

.product-carousel-button:hover,
.product-carousel-button:focus-visible {
  border-color: rgb(18 18 18 / 0.48);
  transform: scale(1.04);
}

.product-carousel-button:disabled {
  cursor: default;
  opacity: 0.32;
  transform: none;
}

.split-story-banner {
  width: 100vw;
  height: 480px;
  margin: 86px 0 0 50%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transform: translateX(-50%);
}

.split-story-content {
  min-width: 0;
  padding: 40px;
  background: #f9f9f9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.split-story-tagline {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.split-story-content h2 {
  margin: 0 0 15px;
  max-width: 520px;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
  color: var(--ink);
}

.split-story-copy {
  max-width: min(80%, 500px);
  margin: 0 0 25px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--muted);
}

.split-story-cta {
  display: inline-flex;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  transition: opacity 180ms ease, border-color 180ms ease;
}

.split-story-cta:hover,
.split-story-cta:focus-visible {
  opacity: 0.7;
  border-color: rgb(18 18 18 / 0.7);
}

.split-story-cta:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 6px;
}

.split-story-image {
  min-width: 0;
  overflow: hidden;
  background: #f1ede6;
}

.split-story-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.know-more-section {
  width: min(100%, 1780px);
  margin: 0 auto;
  padding: 62px 46px 72px;
}

.know-more-section > .section-title {
  margin: 0 0 34px;
  text-align: center;
}

.know-more-scaled-content {
  width: 70%;
  margin: 0 auto;
}

.know-more-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 86px;
}

.know-more-video-frame {
  position: relative;
  margin: 0 0 0 26px;
}

.know-more-video-frame::before {
  content: "";
  position: absolute;
  left: -24px;
  right: 30px;
  top: 24px;
  bottom: -24px;
  border: 3px solid #e9b58e;
}

.know-more-video-frame img {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1.43 / 1;
  object-fit: cover;
}

.know-more-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 112px;
  height: 80px;
  border: 0;
  border-radius: 16px;
  background: rgb(18 18 18 / 0.72);
  cursor: pointer;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  transition: background 180ms ease, opacity 180ms ease;
}

.know-more-play span {
  width: 0;
  height: 0;
  margin-left: 8px;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 28px solid var(--paper);
}

.know-more-play:hover,
.know-more-play:focus-visible {
  background: rgb(18 18 18 / 0.82);
}

.know-more-story-copy {
  position: relative;
  min-width: 0;
  padding: 18px 112px 0 0;
  text-align: center;
}

.know-more-story-copy h3 {
  margin: 0 0 30px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
  color: var(--ink);
}

.know-more-story-copy p {
  margin: 0 auto 30px;
  max-width: 710px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0;
  color: var(--muted);
}

.know-more-outline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 32px;
  border: 1px solid var(--ink);
  background: transparent;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: var(--ink);
  transition: opacity 180ms ease, border-color 180ms ease;
}

.know-more-outline-link:hover,
.know-more-outline-link:focus-visible {
  opacity: 0.7;
  border-color: rgb(18 18 18 / 0.7);
}

.know-more-outline-link:focus-visible,
.know-more-play:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 6px;
}

.know-more-dots {
  position: absolute;
  right: 18px;
  top: 72px;
  display: grid;
  gap: 12px;
}

.know-more-dots::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -54px;
  width: 2px;
  height: 54px;
  background: var(--ink);
  transform: translateX(-50%);
}

.know-more-dots span {
  width: 18px;
  height: 18px;
  border: 2px solid #6a6a6a;
  border-radius: 50%;
  background: var(--paper);
}

.know-more-dots .is-active {
  background: #6a6a6a;
}

.know-more-sustainability {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 96px;
  margin-top: 86px;
}

.know-more-mission {
  min-width: 0;
  text-align: center;
}

.know-more-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 62px;
  max-width: 660px;
  margin: 0 auto 54px;
}

.know-more-pillars a {
  display: grid;
  justify-items: center;
  gap: 18px;
  color: #444;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
  text-align: center;
  transition: color 160ms ease;
}

.know-more-pillars a:hover,
.know-more-pillars a:focus-visible {
  color: var(--ink);
}

.pillar-icon {
  width: 82px;
  height: 82px;
  border: 1px dashed #9c9c9c;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.pillar-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: #333;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.know-more-mission > p {
  max-width: 660px;
  margin: 0 auto 48px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.know-more-sustain-link {
  min-height: 64px;
  padding: 0 34px;
}

.know-more-earth {
  position: relative;
  min-width: 0;
  height: 480px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.know-more-earth::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 390px;
  background: #f4f4f4;
}

.know-more-earth img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.calytris-gallery-section {
  width: 100vw;
  overflow: hidden;
  padding: 62px 0 60px;
  background: #ffffff;
}

.calytris-gallery-section .section-title {
  margin: 0 20px 35px;
  text-align: center;
}

.marquee-track {
  display: flex;
  flex-direction: row;
  width: max-content;
  animation: infiniteScroll 82s linear infinite;
  will-change: transform;
}

.marquee-gallery-set {
  display: flex;
  flex-direction: row;
  gap: 12px;
  padding-right: 12px;
}

.gallery-card {
  flex: 0 0 auto;
  height: 360px;
  aspect-ratio: 9 / 16;
  margin: 0;
  overflow: hidden;
  border: 0;
  box-shadow: none;
  background: #f9f9f9;
}

.gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 300ms ease, transform 300ms ease;
}

.gallery-card:hover img {
  opacity: 0.85;
  transform: scale(1.02);
}

.customer-review-section {
  width: 100vw;
  margin: 0;
  padding: 58px 0 72px;
  background: #ffffff;
  color: #121212;
}

.customer-review-header {
  margin: 0 20px 54px;
  text-align: center;
}

.customer-review-header .section-title {
  margin: 0;
}

.customer-review-showcase {
  position: relative;
  width: min(calc(100% - 80px), 1880px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(430px, 1.1fr) minmax(260px, 0.9fr);
  align-items: center;
  gap: clamp(48px, 5vw, 92px);
}

.review-image {
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f6f2ed;
}

.review-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 240ms ease;
}

.customer-review-panel {
  min-width: 0;
}

.review-stars {
  margin: 0 0 24px;
  color: #4b8ec2;
  font-size: 17px;
  line-height: 1;
  letter-spacing: 0.06em;
}

.review-copy {
  margin: 0 0 28px;
  font-family: "Cormorant Garamond", var(--serif);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.65;
  letter-spacing: 0;
  color: #121212;
}

.reviewer {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.12em;
  color: #6a6a6a;
}

.reviewer span:first-child,
.review-product {
  font-weight: 700;
}

.review-next-button {
  position: absolute;
  right: -34px;
  top: 50%;
  width: 72px;
  height: 90px;
  border: 0;
  padding: 0;
  background: #4b2a26;
  color: #ffffff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
}

.review-next-button span {
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
}

.review-next-button:hover,
.review-next-button:focus-visible {
  background: #3f221f;
  transform: translateY(-50%) translateX(3px);
}

@keyframes value-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.333%);
  }
}

@keyframes infiniteScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .value-track,
  .marquee-track {
    animation: none;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .customer-review-showcase {
    width: min(calc(100% - 40px), 820px);
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .customer-review-panel {
    text-align: center;
  }

  .review-image-right {
    display: none;
  }

  .review-next-button {
    right: 0;
    top: auto;
    bottom: 0;
    width: 54px;
    height: 54px;
    transform: none;
  }

  .review-next-button:hover,
  .review-next-button:focus-visible {
    transform: translateX(3px);
  }
}

@media (max-width: 900px) {
  .category-section,
  .best-sellers-section {
    padding: 62px 18px 0;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 14px;
  }

  .product-carousel {
    padding: 0 36px;
  }

  .product-carousel-track {
    gap: 14px;
  }

  .product-carousel .product-card {
    flex-basis: calc((100% - 14px) / 2);
  }

  .product-carousel-button {
    width: 32px;
    height: 32px;
  }

  .split-story-banner {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-areas:
      "image"
      "content";
  }

  .split-story-content {
    grid-area: content;
    min-height: 360px;
    padding: 46px 28px;
  }

  .split-story-image {
    grid-area: image;
    height: 360px;
  }

  .split-story-content h2 {
    font-size: 26px;
  }

  .split-story-copy {
    max-width: 92%;
  }

  .know-more-section {
    width: 100%;
    padding: 48px 18px 58px;
  }

  .know-more-section > .section-title {
    margin-bottom: 28px;
  }

  .know-more-hero {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .know-more-video-frame {
    margin: 0 0 0 14px;
  }

  .know-more-video-frame::before {
    left: -14px;
    right: 20px;
    top: 14px;
    bottom: -14px;
    border-width: 2px;
  }

  .know-more-play {
    width: 84px;
    height: 60px;
    border-radius: 12px;
  }

  .know-more-play span {
    border-top-width: 14px;
    border-bottom-width: 14px;
    border-left-width: 22px;
  }

  .know-more-story-copy {
    padding: 0;
  }

  .know-more-story-copy h3 {
    max-width: 720px;
    margin: 0 auto 18px;
  }

  .know-more-story-copy p {
    max-width: 720px;
    margin-bottom: 24px;
    line-height: 1.75;
  }

  .know-more-outline-link {
    min-height: 54px;
    padding: 0 26px;
  }

  .know-more-dots {
    display: none;
  }

  .know-more-sustainability {
    grid-template-columns: 1fr;
    gap: 44px;
    margin-top: 62px;
  }

  .know-more-pillars {
    gap: 26px;
    max-width: 720px;
    margin-bottom: 36px;
  }

  .pillar-icon {
    width: 70px;
    height: 70px;
  }

  .pillar-icon svg {
    width: 32px;
    height: 32px;
  }

  .know-more-mission > p {
    max-width: 660px;
    margin-bottom: 30px;
  }

  .know-more-earth {
    height: 360px;
  }

  .know-more-earth::before {
    height: 280px;
  }

  .category-tile figcaption {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .customer-review-section {
    padding: 48px 20px;
  }

  .gallery-card {
    height: 280px;
  }
}

@media (max-width: 520px) {
  .hero-banner {
    min-height: 560px;
  }

  .hero-image {
    object-position: center 36%;
  }

  .hero-content {
    width: min(100% - 32px, 360px);
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    margin: 14px 0 22px;
    font-size: 13px;
  }

  .value-group span {
    padding: 0 24px;
    font-size: 10px;
  }

  .product-carousel {
    padding: 0 30px;
  }

  .product-carousel .product-card {
    flex-basis: 100%;
  }

  .product-carousel-button {
    width: 28px;
    height: 28px;
  }

  .product-carousel-button span {
    font-size: 24px;
  }

  .know-more-section {
    padding: 40px 16px 48px;
  }

  .know-more-pillars {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .know-more-earth {
    height: 300px;
  }

  .know-more-earth::before {
    height: 220px;
  }
}
