/* Home first screen: full-viewport hero carousel */

.home-main {
  position: relative;
}

.home-intro-hero {
  display: grid;
  grid-template-columns: minmax(320px, 33vw) minmax(0, 1fr);
  min-height: 60vh;
  margin: 0;
  padding: 0;
  background: var(--color-bg);
}

.home-intro-hero__copy {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(48px, 7vw, 112px) clamp(28px, 5vw, 76px);
  text-align: center;
}

.home-intro-hero__copy-inner {
  display: grid;
  justify-items: center;
  gap: 24px;
  max-width: 520px;
}

.home-intro-hero h1 {
  margin: 0;
  color: var(--color-heading);
  font-family: var(--font-display);
  font-size: clamp(34px, 3.2vw, 52px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.home-intro-hero p {
  margin: 0;
  max-width: 36ch;
  color: var(--color-text);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.72;
}

.home-intro-hero__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 18px;
  padding: 0 0 7px;
  border-bottom: 1px solid currentColor;
  color: var(--color-heading);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.12em;
}

.home-intro-hero__link:hover {
  color: var(--color-accent-strong);
}

.home-intro-hero__media {
  min-width: 0;
  min-height: inherit;
  overflow: hidden;
}

.home-intro-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-category-showcase {
  background: var(--color-bg);
  padding-top: clamp(44px, 5vw, 66px);
  padding-bottom: clamp(48px, 6vw, 88px);
  border-radius: 0;
  overflow: hidden;
}

.home-category-showcase .container {
  padding-top: 0;
  padding-bottom: 0;
}

.home-category-showcase__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

.home-category-showcase__header h2 {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.04;
  color: var(--color-heading);
}

.home-category-showcase__desc {
  margin: 16px 0 0;
  max-width: 58ch;
  color: var(--color-text);
  font-size: clamp(15px, 1.35vw, 19px);
}

.home-category-showcase__accordion {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 14px;
  min-height: 0;
}

.home-category-showcase__item {
  position: relative;
  min-width: 0;
  display: flex;
  min-height: 620px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 18px 44px rgba(56, 35, 23, 0.08);
  isolation: isolate;
}

.home-category-showcase__poster,
.home-category-showcase__overlay {
  position: absolute;
  inset: 0;
}

.home-category-showcase__poster {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.home-category-showcase__poster--fallback {
  background: linear-gradient(180deg, #d9c5b7 0%, #8e6f5b 100%);
}

.home-category-showcase__overlay {
  background:
    linear-gradient(180deg, rgba(18, 12, 9, 0.12) 0%, rgba(18, 12, 9, 0.22) 34%, rgba(18, 12, 9, 0.68) 100%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 38%);
}

.home-category-showcase__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  padding: 24px 20px 24px;
}

.home-category-showcase__meta {
  display: none;
}

.home-category-showcase__content {
  display: grid;
  gap: 12px;
  max-width: 340px;
  color: rgba(255, 250, 245, 0.92);
  opacity: 1;
  transform: translateY(0);
}

.home-category-showcase__content h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 3vw, 36px);
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: rgba(255, 250, 245, 0.96);
}

.home-category-showcase__discover {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 4px;
  color: rgba(255, 247, 241, 0.88);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.16em;
}

.home-category-showcase__discover::after {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
}

.home-curtain-reveal {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  z-index: -1;
  pointer-events: none;
}

.home-curtain-spacer {
  position: relative;
  height: 50vh;
  margin: 0;
  padding: 0;
  background: transparent;
}

.home-curtain-reveal__sticky {
  height: 100%;
  padding: 0;
}

.home-curtain-reveal__frame {
  height: 100%;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-curtain-reveal__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  padding: 0;
  overflow: hidden;
  background: #000;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.home-hero-carousel__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.home-hero-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.home-hero-carousel__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.home-hero-carousel__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-carousel__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(9, 20, 30, 0.56) 0%, rgba(9, 20, 30, 0.38) 34%, rgba(9, 20, 30, 0.12) 62%, rgba(9, 20, 30, 0.05) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.24) 100%);
}

.home-hero-carousel__content-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 2;
}

.home-hero-carousel__content {
  max-width: min(660px, 92%);
  color: #f6fbff;
  display: grid;
  gap: 18px;
}

.home-hero-carousel__eyebrow {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(236, 246, 255, 0.86);
}

.home-hero-carousel__content h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 1.04;
  letter-spacing: 0.01em;
  max-width: 11ch;
}

.home-hero-carousel__content p {
  margin: 0;
  color: rgba(243, 249, 255, 0.9);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.62;
  max-width: 50ch;
}

.home-hero-carousel__cta {
  justify-self: start;
}

.home-hero-carousel__controls {
  position: absolute;
  right: clamp(16px, 4vw, 52px);
  bottom: clamp(16px, 4vw, 44px);
  z-index: 3;
  display: flex;
  gap: 8px;
}

.home-hero-carousel__arrow {
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 50%;
  border: 0;
  background: #ffffff;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(8, 22, 32, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.home-hero-carousel__arrow:hover {
  transform: translateY(-1px);
  background: #f8fbff;
  box-shadow: 0 8px 18px rgba(8, 22, 32, 0.24);
}

.home-hero-carousel__arrow:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.home-hero-carousel__arrow i {
  font-size: 18px;
}

@media (max-width: 992px) {
  .home-intro-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .home-intro-hero__copy {
    min-height: 360px;
    padding: 72px 24px 56px;
  }

  .home-intro-hero__media {
    min-height: 52vh;
  }

  .home-category-showcase__accordion {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
  }

  .home-category-showcase__item {
    min-height: 420px;
  }

  .home-products__action {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .home-hero-carousel {
    min-height: 560px;
  }

  .home-hero-carousel__content {
    max-width: min(560px, 92%);
    gap: 14px;
  }

  .home-hero-carousel__content h1 {
    max-width: 12ch;
  }
}

@media (max-width: 640px) {
  .home-intro-hero__copy {
    min-height: 330px;
    padding: 58px 20px 46px;
  }

  .home-intro-hero__copy-inner {
    gap: 18px;
  }

  .home-intro-hero h1 {
    font-size: clamp(31px, 9vw, 42px);
  }

  .home-intro-hero p {
    font-size: 15px;
  }

  .home-intro-hero__media {
    min-height: 46vh;
  }

  .home-category-showcase .container {
    padding-top: 0;
    padding-bottom: 0;
  }

  .home-category-showcase__header {
    align-items: center;
    justify-content: center;
  }

  .home-category-showcase__header h2 {
    max-width: 9ch;
    font-size: clamp(31px, 9vw, 44px);
  }

  .home-category-showcase__desc {
    margin-top: 14px;
    font-size: 15px;
  }

  .home-category-showcase__accordion {
    margin-top: 30px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    min-height: 0;
  }

  .home-category-showcase__item {
    min-height: 220px;
  }

  .home-category-showcase__content {
    opacity: 1;
    transform: none;
  }

  .home-hero-carousel {
    min-height: 100svh;
  }

  .home-hero-carousel__content-wrap {
    align-items: flex-end;
    padding-bottom: 110px;
  }

  .home-hero-carousel__content {
    gap: 12px;
  }

  .home-hero-carousel__content h1 {
    font-size: clamp(34px, 11vw, 56px);
    max-width: 14ch;
  }

  .home-hero-carousel__content p {
    font-size: 15px;
  }

  .home-hero-carousel__cta {
    min-height: 44px;
    padding: 10px 20px;
  }

  .home-hero-carousel__controls {
    right: 16px;
    bottom: 22px;
  }

  .home-hero-carousel__arrow {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .home-hero-carousel__arrow i {
    font-size: 16px;
  }

  .home-curtain-reveal {
    height: 100vh;
  }
}

/* Products showcase section */
.home-products {
  position: relative;
  z-index: 2;
  background: var(--color-bg);
  padding: clamp(88px, 10vw, 132px) 0 140px;
  margin-bottom: 0;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  overflow: hidden;
}

.home-products__inner {
  display: grid;
  gap: 0;
}

.home-products__section {
  display: grid;
  gap: clamp(30px, 3vw, 40px);
}

.home-products__section:first-child {
  padding-top: 0;
}

.home-products__header {
  display: grid;
  justify-items: center;
  text-align: center;
}

.home-products__title {
  margin: 0;
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1.04;
  color: var(--color-heading);
  max-width: 18ch;
}

.home-products__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 48px);
}

.home-products__card {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 20px);
  cursor: pointer;
}

.home-products__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.home-products__image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.home-products__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
  transition: opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1), transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-products__image--product {
  opacity: 1;
  transform: scale(1);
}

.home-products__image--scene {
  opacity: 0;
  transform: scale(1.065);
}

.home-products__card:hover .home-products__image--product {
  opacity: 0.08;
  transform: scale(1.045);
}

.home-products__card:hover .home-products__image--scene {
  opacity: 1;
  transform: scale(1);
}

.home-products__name {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  color: var(--color-heading);
  line-height: 1.3;
  text-align: center;
}
.home-products__name a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.home-products__category {
  margin: 0;
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.62;
  max-width: 34ch;
}

.home-products__action {
  display: none;
}

.home-products__footer {
  display: flex;
  justify-content: center;
}

.home-products__button {
  display: inline-flex;
  align-items: center;
  min-height: 2.8em;
  padding: 0.35em;
  padding-left: 1.2em;
  padding-right: 3.3em;
  border: none;
  border-radius: 0.9em;
  background: var(--color-accent-strong);
  color: #ffffff;
  text-decoration: none;
  text-decoration-line: none;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: relative;
  box-shadow: inset 0 0 1.6em -0.6em rgba(47, 91, 116, 0.78);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.home-products__button-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding-right: 0;
  font-size: inherit;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.home-products__button-icon {
  position: absolute;
  right: 0.3em;
  width: 2.2em;
  height: 2.2em;
  margin-left: 1em;
  border-radius: 0.7em;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0.1em 0.1em 0.6em 0.2em rgba(93, 152, 190, 0.28);
  transition: all 0.3s ease;
}

.home-products__button-icon svg {
  width: 1.1em;
  color: var(--color-accent-strong);
  transition: transform 0.3s ease;
}

.home-products__button:hover {
  transform: translateY(-1px);
  color: #ffffff;
  background: var(--color-accent);
  box-shadow: inset 0 0 1.6em -0.6em rgba(47, 91, 116, 0.62), 0 12px 24px rgba(93, 152, 190, 0.2);
}

.home-products__button:hover .home-products__button-icon {
  width: calc(100% - 0.6em);
}

.home-products__button:hover .home-products__button-icon svg {
  transform: translateX(0.1em);
}

.home-story {
  position: relative;
  z-index: 2;
  background: var(--color-bg);
  padding: 56px 0 clamp(88px, 10vw, 132px);
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
  overflow: hidden;
}

.home-story__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 1fr);
  gap: 0;
  align-items: center;
}

.home-story__media {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.home-story__image {
  display: block;
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
  border-radius: 0;
}

.home-story__content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
  align-content: center;
  align-self: center;
  margin-left: clamp(-150px, -9vw, -90px);
  padding: clamp(28px, 3.6vw, 46px);
  background: rgba(247, 252, 255, 0.97);
  border: 1px solid rgba(207, 228, 240, 0.88);
  box-shadow: 0 18px 46px rgba(93, 152, 190, 0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.home-story__eyebrow {
  margin: 0;
  color: var(--color-muted);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-story__title {
  margin: 0;
  font-size: clamp(40px, 5vw, 52px);
  line-height: 1.02;
  color: var(--color-heading);
}

.home-story__text {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.72;
}

.home-story__cta {
  justify-self: start;
  margin-top: 10px;
}

.home-testimonials {
  position: relative;
  z-index: 2;
  background: var(--color-bg);
  padding: 0 0 110px;
}

.home-testimonials__track {
  position: relative;
}

.home-testimonials__slide {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  align-items: stretch;
}

.home-testimonials__media {
  min-width: 0;
}

.home-testimonials__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
}

.home-testimonials__panel {
  padding: clamp(44px, 5vw, 72px) clamp(34px, 3.6vw, 56px);
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.home-testimonials__copies {
  position: relative;
  width: 100%;
  max-width: 620px;
  min-height: 0;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-testimonials__copy {
  position: relative;
  inset: auto;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 22px;
  opacity: 1;
  visibility: visible;
  transform: none;
}

.home-testimonials__copy.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.home-testimonials__quote {
  margin: 0;
  font-size: clamp(30px, 3vw, 36px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--color-heading);
  font-weight: 500;
  max-width: 18ch;
}

.home-testimonials__author {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.8;
  max-width: 44ch;
}

/* ── News / Community ── */

.home-news {
  position: relative;
  z-index: 2;
  background: var(--color-bg);
  padding: 0 0 120px;
}

.home-news__layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: clamp(28px, 3vw, 48px);
  align-items: stretch;
}

.home-news__featured {
  order: 1;
}

.home-news__sidebar {
  order: 0;
}

.home-news__featured-link,
.home-news__card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
  text-decoration-line: none;
}

.home-news__featured-media {
  overflow: hidden;
  border-radius: 0;
}

.home-news__featured-image {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.home-news__featured-link:hover .home-news__featured-image {
  transform: scale(1.03);
}

.home-news__featured-title {
  margin: 20px 0 8px;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 400;
  line-height: 1.22;
  color: var(--color-heading);
}

.home-news__date {
  display: block;
  margin-top: auto;
  font-size: clamp(13px, 1vw, 15px);
  color: var(--color-muted);
  letter-spacing: 0.01em;
  text-decoration: none;
  text-decoration-line: none;
}

.home-news__sidebar {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.home-news__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.home-news__title {
  margin: 0;
  font-size: clamp(36px, 3.6vw, 52px);
  font-weight: 400;
  line-height: 1.06;
  color: var(--color-heading);
  letter-spacing: -0.02em;
}

.home-news__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 28px);
}

.home-news__card-media {
  overflow: hidden;
  border-radius: 0;
}

.home-news__card-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.home-news__card-link:hover .home-news__card-image {
  transform: scale(1.03);
}

.home-news__card-title {
  margin: 14px 0 6px;
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 400;
  line-height: 1.28;
  color: var(--color-heading);
  text-decoration: none;
  text-decoration-line: none;
}

.home-news__featured-title {
  text-decoration: none;
  text-decoration-line: none;
}



@media (max-width: 992px) {
  .home-story {
    padding: 48px 0 38px;
  }

  .home-category-showcase {
    padding-top: 34px;
    padding-bottom: 56px;
  }

  .home-products {
    padding-top: 72px;
  }

  .home-products__inner {
    gap: 0;
  }

  .home-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(20px, 3.5vw, 36px);
  }

  .home-story__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .home-story__title {
    max-width: 14ch;
  }

  .home-story__content {
    margin-left: 0;
    margin-top: -42px;
    width: min(100%, 720px);
    margin-right: auto;
    padding: 26px 22px;
  }

  .home-story__image {
    aspect-ratio: 1.04;
  }

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

  .home-testimonials__image {
    min-height: 520px;
    border-radius: 28px 28px 0 0;
  }

  .home-testimonials__panel {
    margin-top: 0;
  }

  .home-testimonials__copy {
    gap: 20px;
  }

  .home-testimonials__quote {
    max-width: 18ch;
  }

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

  .home-news__sidebar {
    order: -1;
  }

  .home-news__head {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .home-news__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .home-category-showcase {
    padding-top: 28px;
    padding-bottom: 44px;
  }

  .home-products {
    padding: 64px 0 56px;
  }

  .home-products__title {
    font-size: clamp(30px, 9vw, 42px);
  }

  .home-products__inner {
    gap: 0;
  }

  .home-products__section {
    gap: 26px;
  }

  .home-products__grid {
    grid-template-columns: 1fr;
    gap: clamp(16px, 3vw, 24px);
  }

  .home-products__name {
    font-size: clamp(18px, 5vw, 26px);
  }

  .home-products__category {
    font-size: 15px;
  }

  .home-products__action {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .home-products__button {
    max-width: 100%;
    min-height: 2.8em;
  }

  .home-products__button-text {
    letter-spacing: 0.05em;
  }

  .home-story {
    padding: 36px 0 44px;
  }

  .home-story__inner {
    gap: 0;
  }

  .home-story__image {
    aspect-ratio: 1.04;
    border-radius: 0;
  }

  .home-story__content {
    margin-top: -24px;
    width: 100%;
  }

  .home-story__title {
    font-size: clamp(30px, 10vw, 46px);
    max-width: none;
  }

  .home-story__text {
    font-size: 15px;
  }

  .home-story__cta {
    min-height: 46px;
    padding: 10px 22px;
    font-size: 13px;
  }

  .home-testimonials {
    padding: 56px 0 72px;
  }

  .home-testimonials__image {
    min-height: 320px;
    border-radius: 22px 22px 0 0;
  }

  .home-testimonials__panel {
    padding: 28px 22px 30px;
  }

  .home-testimonials__copies {
    min-height: 0;
  }

  .home-testimonials__quote {
    font-size: clamp(24px, 8vw, 34px);
  }

  .home-testimonials__author {
    font-size: 15px;
  }

  .home-news {
    padding: 0 0 72px;
  }

  .home-news__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-news__cards {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .home-news__card-image {
    aspect-ratio: 1 / 1;
  }

  .home-news__featured-title {
    font-size: clamp(18px, 5vw, 24px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-category-showcase__item,
  .home-category-showcase__poster,
  .home-category-showcase__overlay {
    transition: none;
  }

  .home-curtain-reveal__sticky,
  .home-curtain-reveal__image {
    transform: none;
    transition: none;
  }

  .home-hero-carousel {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}
