/* =========================
   HOME / GLOBAL
   ========================= */

@keyframes home-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes home-history-reveal {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-main > .site-hero {
  animation: home-fade-in 0.5s ease both;
}

@media (prefers-reduced-motion: reduce) {
  .site-main > .site-hero {
    opacity: 1;
    animation: none;
  }
}

/* =========================
   HOME INTRO
   ========================= */

.home-intro {
  display: grid;
  justify-items: center;
  width: min(calc(100% - (var(--page-padding) * 2)), var(--site-width-wide));
  margin: clamp(1rem, 1.8vw, 1.7rem) auto 0;
  padding: clamp(0.85rem, 1.5vw, 1.3rem) 0 clamp(1.45rem, 2.6vw, 2.25rem);
  border-bottom: 1px solid rgba(32, 18, 12, 0.14);
  text-align: center;
  animation: home-fade-in 0.5s ease 0.08s both;
}

.home-intro__header {
  width: min(100%, 64rem);
}

.home-intro__eyebrow {
  margin: 0 0 0.55rem;
  color: var(--color-gold-dark);
  font-family: var(--font-body);
  font-size: var(--font-size-small);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
}

.home-intro__title {
  max-width: 20ch;
  margin: 0 auto;
  color: var(--color-brown-dark);
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-heading);
}

.home-intro__title span {
  display: block;
}

.home-intro__content {
  width: 100%;
}

.home-intro__text {
  width: min(100%, 62ch);
  margin: clamp(0.75rem, 1.4vw, 1.1rem) auto 0;
  color: var(--color-text-soft);
  font-family: var(--font-body);
  font-weight: 500;
  text-wrap: pretty;
}

.home-intro__text span {
  display: inline;
}

.home-intro__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.7rem, 2vw, 1.4rem);
  width: min(100%, 68rem);
  margin: clamp(1rem, 2.35vw, 1.9rem) 0 0;
}

.home-intro__fact {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 0.18rem;
  min-width: 0;
}

.home-intro__fact strong {
  color: var(--color-brown-dark);
  font-family: var(--font-heading);
  font-size: clamp(1.28rem, 1.04rem + 1vw, 1.9rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: var(--letter-spacing-heading);
}

.home-intro__fact span {
  max-width: 15rem;
  color: var(--color-text-soft);
  font-family: var(--font-body);
  font-size: clamp(0.86rem, 0.78rem + 0.28vw, 1rem);
  font-weight: 600;
  line-height: 1.34;
  white-space: normal;
  text-wrap: pretty;
}

@media (min-width: 900px) {
  .home-intro__text {
    width: min(100%, 68ch);
  }

  .home-intro__fact span {
    max-width: 18rem;
    font-size: clamp(0.92rem, 0.88rem + 0.14vw, 1rem);
  }
}

@media (max-width: 767px) {
  .home-intro__title {
    max-width: 15ch;
  }

  .home-intro__text {
    width: min(100%, 54ch);
    font-size: clamp(0.96rem, 0.88rem + 0.42vw, 1.08rem);
    line-height: 1.46;
  }

  .home-intro__facts {
    gap: clamp(0.55rem, 1.8vw, 0.9rem);
  }

  .home-intro__fact strong {
    font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  }

  .home-intro__fact span {
    max-width: 12.5rem;
    font-size: clamp(0.82rem, 1.8vw, 0.9rem);
    line-height: 1.28;
  }
}

@media (max-width: 639px) {
  .home-intro__title {
    max-width: 13ch;
  }

  .home-intro__text {
    width: min(100%, 31rem);
    font-size: clamp(0.98rem, 3.8vw, 1.06rem);
    line-height: 1.46;
  }

  .home-intro__facts {
    grid-template-columns: 1fr;
    gap: clamp(1.1rem, 5vw, 1.55rem);
    width: min(100%, 22rem);
    margin-top: clamp(0.75rem, 2.8vw, 1rem);
  }

  .home-intro__fact {
    gap: 0.16rem;
  }

  .home-intro__fact strong {
    font-size: clamp(1.25rem, 5.4vw, 1.55rem);
    line-height: 1.08;
  }

  .home-intro__fact span {
    max-width: 17rem;
    font-size: clamp(0.9rem, 3.8vw, 0.98rem);
    line-height: 1.28;
  }
}

@media (max-width: 374px) {
  .home-intro__text {
    font-size: 0.95rem;
  }

  .home-intro__facts {
    gap: 1rem;
  }

  .home-intro__fact strong {
    font-size: 1.2rem;
  }

  .home-intro__fact span {
    font-size: 0.88rem;
  }
}

@media (max-width: 767px) {
  .home-intro__title {
    font-size: clamp(2rem, 8.4vw, 2.65rem);
  }
}

@media (max-width: 374px) {
  .home-intro__title {
    font-size: clamp(1.78rem, 8vw, 2rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-intro {
    opacity: 1;
    animation: none;
  }
}

.home-intro__title {
  font-size: var(--font-size-h2);
}

.home-intro__text {
  font-size: var(--font-size-content);
  line-height: 1.62;
}

@media (min-width: 1024px) {
  .home-intro__facts {
    margin-top: calc(
        clamp(1rem, 2.35vw, 1.9rem) + 1.35rem
      );
  }
}

/* =========================
   HOME HISTORY
   ========================= */

.home-history {
  display: grid;
  gap: clamp(2rem, 4vw, 4.75rem);
  width: min(calc(100% - (var(--page-padding) * 2)), var(--site-width-wide));
  margin: 0 auto;
  padding: clamp(2rem, 3vw, 3rem) 0;
}

.home-history__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 0;
  background: transparent;
}

.home-history--text-only .home-history__content {
  max-width: 58rem;
  margin-inline: auto;
}

.home-history__content .home-history__eyebrow {
  margin: 0 0 0.55rem;
  color: var(--color-gold-dark);
  font-family: var(--font-body);
  font-size: var(--font-size-small);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
}

.home-history__title {
  max-width: 13ch;
  margin: 0 0 clamp(1rem, 1.8vw, 1.45rem);
  color: var(--color-brown-dark);
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-heading);
}

.home-history__title span {
  display: inline;
  white-space: nowrap;
}

.home-history__content > p:not(.home-history__eyebrow):not(.home-history__statement) {
  max-width: 64ch;
  margin: 0;
  color: var(--color-text-soft);
  font-family: var(--font-body);
  font-weight: 500;
  text-wrap: pretty;
}

.home-history__content > p:not(.home-history__eyebrow):not(.home-history__statement) + p:not(.home-history__statement) {
  margin-top: clamp(1rem, 1.8vw, 1.35rem);
}

.home-history__content .home-history__statement {
  max-width: 64ch;
  margin: clamp(1rem, 1.8vw, 1.35rem) 0 0;
  padding-top: clamp(0.9rem, 1.6vw, 1.25rem);
  border-top: 1px solid rgba(32, 18, 12, 0.14);
  color: var(--color-brown-dark);
  font-family: var(--font-body);
  font-size: var(--font-size-content);
  font-weight: 800;
  line-height: 1.45;
}

.home-history__media {
  position: relative;
  justify-self: center;
  width: min(100%, 50rem);
  height: auto;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-large);
  background: var(--color-surface);
  box-shadow: 0 22px 56px rgba(32, 18, 12, 0.13);
  aspect-ratio: 5 / 4;
}

.home-history__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-history__media,
.home-history__content {
  opacity: 0;
}

.home-history__media {
  animation: home-history-reveal 0.75s ease both;
  animation-timeline: view();
  animation-range: entry 8% cover 32%;
}

.home-history__content {
  animation: home-history-reveal 0.75s ease both;
  animation-timeline: view();
  animation-range: entry 18% cover 42%;
}

@media (min-width: 1320px) {
  .home-history {
    grid-template-columns: minmax(34rem, 0.95fr) minmax(0, 1.05fr);
    align-items: stretch;
  }

  .home-history--text-only {
    grid-template-columns: 1fr;
  }

  .home-history__media {
    align-self: stretch;
    order: 1;
    justify-self: start;
    width: min(100%, 56rem);
    height: 100%;
    aspect-ratio: auto;
  }

  .home-history__content {
    order: 2;
    justify-self: end;
  }
}

@media (min-width: 1440px) {
  .home-history {
    grid-template-columns: minmax(38rem, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(3.5rem, 5vw, 5.75rem);
  }

  .home-history__media {
    width: min(100%, 60rem);
  }
}

@media (max-width: 1319px) {
  .home-history {
    grid-template-columns: 1fr;
    gap: clamp(1.6rem, 4vw, 2.6rem);
  }

  .home-history__media {
    order: 1;
    justify-self: stretch;
    width: 100%;
    max-width: none;
    height: clamp(16rem, 32vw, 26rem);
    margin: 0;
    aspect-ratio: auto;
  }

  .home-history__content {
    order: 2;
    justify-self: start;
    width: min(100%, 68ch);
    max-width: 68ch;
    margin: 0;
    text-align: left;
  }

  .home-history__content .home-history__eyebrow,
  .home-history__title,
  .home-history__content > p:not(.home-history__eyebrow):not(.home-history__statement),
  .home-history__content .home-history__statement {
    align-self: stretch;
    text-align: left;
  }
}

@media (max-width: 767px) {
  .home-history {
    width: min(calc(100% - var(--page-padding)), var(--site-width-wide));
    padding: clamp(2rem, 6vw, 2.75rem) 0;
  }

  .home-history__content {
    justify-self: start;
    width: min(100%, 54ch);
    max-width: 54ch;
    margin: 0;
    padding-inline: clamp(0.75rem, 4vw, 1.25rem);
    text-align: left;
  }

  .home-history__title {
    max-width: none;
  }

  .home-history__title span {
    display: block;
  }

  .home-history__content > p:not(.home-history__eyebrow):not(.home-history__statement) {
    font-size: clamp(0.96rem, 0.88rem + 0.42vw, 1.08rem);
    line-height: 1.46;
  }

  .home-history__media {
    order: 1;
    justify-self: stretch;
    width: 100%;
    max-width: none;
    height: clamp(13.5rem, 52vw, 20rem);
    margin: 0;
    border-radius: var(--radius-medium);
    box-shadow: 0 18px 42px rgba(32, 18, 12, 0.11);
    aspect-ratio: auto;
  }
}

@media (max-width: 639px) {
  .home-history__content {
    width: min(100%, 31rem);
    max-width: 31rem;
  }

  .home-history__content > p:not(.home-history__eyebrow):not(.home-history__statement) {
    font-size: clamp(0.98rem, 3.8vw, 1.06rem);
    line-height: 1.46;
  }
}

@media (max-width: 374px) {
  .home-history__content > p:not(.home-history__eyebrow):not(.home-history__statement) {
    font-size: 0.95rem;
  }
}

@media (max-width: 767px) {
  .home-history__title {
    font-size: clamp(2rem, 8.4vw, 2.65rem);
  }
}

@media (max-width: 374px) {
  .home-history__title {
    font-size: clamp(1.78rem, 8vw, 2rem);
  }
}

@supports not (animation-timeline: view()) {
  .home-history__media,
  .home-history__content {
    opacity: 1;
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-history__media,
  .home-history__content {
    opacity: 1;
    animation: none;
  }
}

.home-history__title {
  font-size: var(--font-size-h2);
}

.home-history__content > p:not(.home-history__eyebrow):not(.home-history__statement) {
  font-size: var(--font-size-content);
  line-height: 1.62;
}

/* =========================
   HOME SERVICE
   ========================= */

.home-service {
  --home-service-gap: clamp(2.2rem, 4vw, 4.75rem);
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(24rem, 0.96fr);
  align-items: center;
  gap: var(--home-service-gap);
  width: min(calc(100% - (var(--page-padding) * 2)), var(--site-width-wide));
  margin: 0 auto;
  padding: clamp(2rem, 3vw, 3rem) 0 clamp(2rem, 3vw, 3rem);
  border-top: 1px solid rgba(32, 18, 12, 0.14);
  text-align: left;
  opacity: 0;
  animation: home-history-reveal 0.75s ease both;
  animation-timeline: view();
  animation-range: entry 10% cover 34%;
}

.home-service::before {
  content: "";
  position: absolute;
  top: clamp(2rem, 3vw, 3rem);
  bottom: clamp(2rem, 3vw, 3rem);
  left: calc(((100% - var(--home-service-gap)) * 0.82 / 1.78) + (var(--home-service-gap) / 2));
  z-index: -1;
  width: 1px;
  background: rgba(32, 18, 12, 0.14);
  transform: translateX(-50%);
  pointer-events: none;
}

.home-service__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 44rem;
}

.home-service__eyebrow {
  margin: 0 0 0.55rem;
  color: var(--color-gold-dark);
  font-family: var(--font-body);
  font-size: var(--font-size-small);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
}

.home-service__title {
  max-width: 14ch;
  margin: 0 0 clamp(1rem, 1.8vw, 1.45rem);
  color: var(--color-brown-dark);
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-heading);
}

.home-service__title span {
  display: block;
}

.home-service__text {
  max-width: 58ch;
  margin: 0;
  color: var(--color-text-soft);
  font-family: var(--font-body);
  font-weight: 500;
  text-wrap: pretty;
}

.home-service__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: clamp(1.25rem, 2.2vw, 1.75rem);
}

.home-service__cards {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  width: min(100%, 47rem);
  margin: 0;
  justify-self: end;
}

.home-service__card {
  width: min(100%, 36rem);
  min-width: 0;
}

.home-service__card:nth-child(1) {
  justify-self: start;
  margin-left: clamp(-5.5rem, -6vw, -2.75rem);
}

.home-service__card:nth-child(2) {
  justify-self: center;
  margin-left: clamp(-1.25rem, -0.9vw, -0.5rem);
}

.home-service__card:nth-child(3) {
  justify-self: end;
  margin-right: clamp(-1.25rem, -1.5vw, -0.5rem);
}

.home-service__card-inner {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(1rem, 2vw, 1.45rem);
  min-height: clamp(7.7rem, 8.5vw, 9.2rem);
  padding: clamp(1rem, 2vw, 1.35rem) clamp(1.1rem, 2.6vw, 1.75rem);
  transition: transform var(--transition-base),
    opacity var(--transition-base);
}

.home-service__card-inner::before {
  content: "";
  position: absolute;
  inset: 0.15rem clamp(0.25rem, 1vw, 0.65rem);
  z-index: -1;
  border-radius: var(--radius-medium);
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.82), rgba(232, 216, 200, 0.42)),
    var(--color-surface-soft);
  box-shadow: 0 18px 44px rgba(32, 18, 12, 0.07);
  transform: skewX(-10deg);
  transition: background-color var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-base);
}

.home-service__card:hover .home-service__card-inner,
.home-service__card:focus-within .home-service__card-inner {
  transform: translateX(0.35rem);
}

.home-service__card:hover .home-service__card-inner::before,
.home-service__card:focus-within .home-service__card-inner::before {
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.9), rgba(184, 135, 43, 0.18)),
    var(--color-surface-soft);
  box-shadow: 0 22px 52px rgba(32, 18, 12, 0.11);
  transform: skewX(-10deg) scale(1.015);
}

.home-service__icon {
  position: relative;
  isolation: isolate;
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: clamp(4.15rem, 4.8vw, 5.15rem);
  height: clamp(4.55rem, 5.3vw, 5.65rem);
}

.home-service__icon::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border: 1px solid rgba(184, 135, 43, 0.48);
  border-radius: 0.85rem;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 12px 28px rgba(32, 18, 12, 0.07);
  transform: skewX(-10deg);
  transition: background-color var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.home-service__card:hover .home-service__icon::before,
.home-service__card:focus-within .home-service__icon::before {
  border-color: rgba(184, 135, 43, 0.7);
  background: rgba(184, 135, 43, 0.13);
  box-shadow: 0 16px 34px rgba(184, 135, 43, 0.12);
}

.home-service__icon-image {
  position: relative;
  width: clamp(2.3rem, 2.9vw, 2.95rem);
  height: clamp(2.3rem, 2.9vw, 2.95rem);
  object-fit: contain;
}

.home-service__card-title {
  max-width: 18ch;
  margin: 0 0 0.4rem;
  color: var(--color-brown-dark);
  font-family: var(--font-heading);
  font-size: clamp(1.14rem, 1rem + 0.48vw, 1.48rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: var(--letter-spacing-heading);
}

.home-service__card-text {
  max-width: 36ch;
  margin: 0;
  color: var(--color-text-soft);
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 0.84rem + 0.18vw, 0.98rem);
  font-weight: 600;
  line-height: 1.44;
}

.home-service__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--button-height);
  padding: 0.85rem var(--button-padding-inline);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--button-radius);
  background: rgba(255, 253, 248, 0.22);
  color: var(--color-brown-dark);
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: transform var(--transition-fast),
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.home-service__link:hover,
.home-service__link:focus-visible {
  border-color: rgba(184, 135, 43, 0.45);
  background: rgba(184, 135, 43, 0.14);
  color: var(--color-brown);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(32, 18, 12, 0.08);
}

@media (max-width: 1919px) {
  .home-service {
    --home-service-gap: clamp(2rem, 3.4vw, 4rem);
    grid-template-columns: minmax(0, 0.88fr) minmax(24rem, 0.98fr);
    gap: var(--home-service-gap);
  }

  .home-service::before {
    left: calc(((100% - var(--home-service-gap)) * 0.88 / 1.86) + (var(--home-service-gap) / 2));
  }

  .home-service__card:nth-child(1),
  .home-service__card:nth-child(2),
  .home-service__card:nth-child(3) {
    margin-right: 0;
    margin-left: 0;
  }
}

@media (max-width: 1319px) {
  .home-service {
    grid-template-columns: 1fr;
    align-items: start;
    gap: clamp(1.6rem, 4vw, 2.6rem);
  }

  .home-service::before {
    display: none;
  }

  .home-service__cards {
    order: 1;
    justify-self: stretch;
    width: 100%;
    max-width: none;
  }

  .home-service__content {
    order: 2;
    max-width: 50rem;
  }

  .home-service__title {
    max-width: 14ch;
    font-size: var(--font-size-h2);
  }

  .home-service__text {
    max-width: 58ch;
  }

  .home-service__card {
    width: min(100%, 46rem);
  }

  .home-service__card:nth-child(1) {
    justify-self: start;
  }

  .home-service__card:nth-child(2) {
    justify-self: center;
  }

  .home-service__card:nth-child(3) {
    justify-self: end;
  }

  .home-service__card:nth-child(1),
  .home-service__card:nth-child(2),
  .home-service__card:nth-child(3) {
    margin-right: 0;
    margin-left: 0;
    transform: none;
  }

  .home-service__card-inner {
    min-height: 0;
  }
}

@media (max-width: 960px) {
  .home-service__card {
    width: min(100%, 42rem);
  }
}

@media (min-width: 768px) and (max-width: 1319px) {
  .home-service__card {
    width: min(80%, 40rem);
  }
}

@media (max-width: 767px) {
  .home-service {
    width: min(calc(100% - var(--page-padding)), var(--site-width-wide));
    padding: clamp(2.2rem, 8vw, 3.2rem) 0 clamp(2.2rem, 8vw, 3.2rem);
  }

  .home-service__cards {
    justify-self: stretch;
    width: 100%;
    max-width: none;
    gap: clamp(0.85rem, 4vw, 1.15rem);
  }

  .home-service__content {
    box-sizing: border-box;
    width: min(100%, 54ch);
    max-width: 54ch;
    padding-inline: clamp(0.75rem, 4vw, 1.25rem);
  }

  .home-service__title {
    max-width: none;
  }

  .home-service__title span {
    white-space: nowrap;
  }

  .home-service__text {
    max-width: 54ch;
    font-size: clamp(0.96rem, 0.88rem + 0.42vw, 1.08rem);
    line-height: 1.46;
  }

  .home-service__card {
    width: 100%;
  }

  .home-service__card:nth-child(1),
  .home-service__card:nth-child(2),
  .home-service__card:nth-child(3) {
    justify-self: stretch;
  }

  .home-service__card-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    row-gap: 0.55rem;
    padding: clamp(1rem, 5vw, 1.25rem);
    text-align: center;
  }

  .home-service__card-inner::before {
    transform: skewX(-7deg);
  }

  .home-service__card:hover .home-service__card-inner,
  .home-service__card:focus-within .home-service__card-inner {
    transform: translateY(-0.18rem);
  }

  .home-service__card:hover .home-service__card-inner::before,
  .home-service__card:focus-within .home-service__card-inner::before {
    transform: skewX(-7deg) scale(1.01);
  }

  .home-service__icon {
    grid-row: auto;
    width: 3.8rem;
    height: 4.2rem;
    margin-bottom: 0.2rem;
  }

  .home-service__card-title,
  .home-service__card-text {
    max-width: 100%;
    text-align: center;
  }

  .home-service__actions {
    flex-direction: column;
    align-items: stretch;
    width: auto;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .home-service__actions .button,
  .home-service__link {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
    white-space: normal;
  }
}

@media (max-width: 639px) {
  .home-service__content {
    width: min(100%, 31rem);
    max-width: 31rem;
  }

  .home-service__text {
    max-width: 31rem;
    font-size: clamp(0.98rem, 3.8vw, 1.06rem);
    line-height: 1.46;
  }
}

@media (max-width: 374px) {
  .home-service__text {
    font-size: 0.95rem;
  }

  .home-service__card-title {
    font-size: 1.14rem;
  }

  .home-service__card-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 767px) {
  .home-service__title {
    font-size: clamp(2rem, 8.4vw, 2.65rem);
  }
}

@media (max-width: 374px) {
  .home-service__title {
    font-size: clamp(1.78rem, 8vw, 2rem);
  }
}

@supports not (animation-timeline: view()) {
  .home-service {
    opacity: 1;
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-service {
    opacity: 1;
    animation: none;
  }

  .home-service__card-inner,
  .home-service__card-inner::before,
  .home-service__icon::before {
    transition-duration: 0.001ms !important;
  }
}

.home-service__title {
  font-size: var(--font-size-h2);
}

.home-service__text {
  font-size: var(--font-size-content);
  line-height: 1.62;
}

.home-service {
  border-bottom: 0;
}

.home-service__actions > .button,
.home-service__actions > .home-service__link {
  font-size: var(--font-size-button, 1.06rem);
}

@media (min-width: 768px) {
  .home-service__title {
    max-width: none;
  }

  .home-service__title span:last-child {
    white-space: nowrap;
  }
}

/* =========================
   HOME TASTINGS
   ========================= */

@keyframes th-tasting-card-leave-next {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }

  58% {
    opacity: 0.94;
    transform: translate3d(-4.75rem, -0.45rem, 0) rotate(-7deg) scale(0.985);
  }

  100% {
    opacity: 0;
    transform: translate3d(-9.5rem, 1.2rem, 0) rotate(-14deg) scale(0.94);
  }
}

@keyframes th-tasting-card-leave-previous {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }

  58% {
    opacity: 0.94;
    transform: translate3d(4.75rem, -0.45rem, 0) rotate(7deg) scale(0.985);
  }

  100% {
    opacity: 0;
    transform: translate3d(9.5rem, 1.2rem, 0) rotate(14deg) scale(0.94);
  }
}

@keyframes th-tasting-card-enter {
  0% {
    opacity: 0.35;
    transform: translate3d(0, 1.35rem, 0) rotate(0deg) scale(0.94);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
}

.home-tastings {
  opacity: 0;
  animation: home-history-reveal 0.75s ease both;
  animation-timeline: view();
  animation-range: entry 10% cover 34%;
}

.home-tastings::before {
  border: 1px solid rgba(255, 253, 248, 0.1);
  box-shadow: 0 0 0 2.5rem rgba(255, 253, 248, 0.025),
    0 0 0 5rem rgba(255, 253, 248, 0.018);
}

.home-tastings__content {
  min-width: 0;
}

.home-tastings__eyebrow {
  font-family: var(--font-body);
  font-size: var(--font-size-small);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
}

.home-tastings__title {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-heading);
}

.home-tastings__text {
  font-family: var(--font-body);
  font-weight: 500;
}

.home-tastings__button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  min-height: var(--button-height);
  margin-top: clamp(1.35rem, 2.4vw, 1.9rem);
  padding: 0.85rem 1.2rem;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: var(--button-radius);
  background: var(--color-gold);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 16px 34px rgba(18, 11, 7, 0.18);
  transition: background-color var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.home-tastings__button:hover,
.home-tastings__button:focus-visible {
  border-color: var(--color-white);
  background: var(--color-white);
  color: var(--color-olive);
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(18, 11, 7, 0.24);
}

.home-tastings__button span:last-child {
  font-size: 1.2rem;
  line-height: 1;
}

.home-tastings__schedule {
  align-content: center;
  border-left: 1px solid rgba(255, 253, 248, 0.16);
}

.th-tasting-preview {
  display: grid;
  gap: 0.75rem;
  margin: 0;
}

.th-tasting-preview__item {
  display: grid;
  grid-template-columns: 4.2rem minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  min-width: 0;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: var(--radius-medium);
  background: rgba(255, 253, 248, 0.075);
  transition: border-color var(--transition-fast),
    background-color var(--transition-fast),
    transform var(--transition-fast);
}

.th-tasting-preview__item:hover {
  border-color: rgba(184, 135, 43, 0.55);
  background: rgba(255, 253, 248, 0.11);
  transform: translateX(0.25rem);
}

.th-tasting-preview__date {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 4rem;
  padding: 0.45rem;
  border: 1px solid rgba(184, 135, 43, 0.58);
  border-radius: var(--radius-small);
  background: rgba(18, 11, 7, 0.16);
  color: var(--color-white);
  text-align: center;
}

.th-tasting-preview__date strong {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: var(--letter-spacing-heading);
}

.th-tasting-preview__date span {
  margin-top: 0.2rem;
  color: var(--color-gold);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.th-tasting-preview__details {
  display: grid;
  gap: 0.28rem;
  min-width: 0;
}

.th-tasting-preview__details strong {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: clamp(1.08rem, 1rem + 0.28vw, 1.28rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: var(--letter-spacing-heading);
}

.th-tasting-preview__details span {
  color: rgba(255, 253, 248, 0.72);
  font-size: clamp(0.86rem, 0.82rem + 0.16vw, 0.96rem);
  font-weight: 600;
  line-height: 1.42;
}

.th-tasting-preview__empty {
  margin: 0;
  padding: 1.2rem 1.25rem;
  border: 1px dashed rgba(255, 253, 248, 0.2);
  border-radius: var(--radius-medium);
  color: rgba(255, 253, 248, 0.74);
  font-size: clamp(0.94rem, 0.88rem + 0.22vw, 1.04rem);
  font-weight: 600;
  line-height: 1.5;
}

@media (max-width: 1099px) {
  .home-tastings {
    grid-template-columns: 1fr;
  }

  .home-tastings__content {
    padding-bottom: clamp(1.75rem, 4vw, 2.75rem);
  }

  .home-tastings__schedule {
    padding-top: clamp(1.75rem, 4vw, 2.75rem);
    border-top: 1px solid rgba(255, 253, 248, 0.16);
    border-left: 0;
  }
}

@media (max-width: 767px) {
  .home-tastings {
    margin: clamp(1.6rem, 6vw, 2.4rem) auto;
    border-radius: var(--radius-medium);
  }

  .home-tastings__content,
  .home-tastings__schedule {
    padding: clamp(1.5rem, 6vw, 2rem);
  }

  .home-tastings__text {
    font-size: clamp(0.96rem, 0.88rem + 0.42vw, 1.08rem);
    line-height: 1.48;
  }

  .home-tastings__button {
    width: 100%;
  }

  .th-tasting-preview__item {
    grid-template-columns: 3.8rem minmax(0, 1fr);
    gap: 0.8rem;
    padding: 0.8rem;
  }

  .th-tasting-preview__date {
    min-height: 3.7rem;
  }
}

@media (max-width: 420px) {
  .th-tasting-preview__item {
    grid-template-columns: 1fr;
  }

  .th-tasting-preview__date {
    display: flex;
    justify-content: flex-start;
    gap: 0.35rem;
    min-height: 0;
    width: max-content;
    padding: 0.45rem 0.65rem;
  }

  .th-tasting-preview__date span {
    margin-top: 0;
  }
}

@supports not (animation-timeline: view()) {
  .home-tastings {
    opacity: 1;
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-tastings {
    opacity: 1;
    animation: none;
  }

  .home-tastings__button,
  .th-tasting-preview__item {
    transition-duration: 0.001ms !important;
  }
}

.home-tastings__title {
  font-size: var(--font-size-h2);
}

.home-tastings__text {
  font-size: var(--font-size-content);
  line-height: 1.62;
}

.home-tastings {
  position: relative;
  isolation: isolate;
  display: grid;
  width: min(calc(100% - (var(--page-padding) * 2)), var(--site-width-wide));
  margin: 0 auto;
  border: 0;
  box-shadow: none;
}

.home-tastings::before {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.home-tastings__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.home-tastings__eyebrow {
  margin: 0 0 0.55rem;
}

.home-tastings__schedule {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}

.home-tastings__schedule-label {
  margin: 0 auto 1rem;
  padding-right: 5.5rem;
  font-family: var(--font-body);
  font-size: var(--font-size-small);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: var(--letter-spacing-wide);
  text-align: left;
  text-transform: uppercase;
}

.th-tasting-stack {
  position: relative;
  width: 100%;
  margin: 0;
  outline: none;
  touch-action: pan-y;
}

.th-tasting-stack--multiple {
  cursor: grab;
}

.th-tasting-stack--multiple:active {
  cursor: grabbing;
}

.th-tasting-stack--single {
  cursor: default;
}

.th-tasting-stack:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 0.65rem;
  border-radius: var(--radius-medium);
}

.th-tasting-stack__cards {
  position: relative;
  display: grid;
  gap: 1rem;
  width: min(calc(100% - 4rem), 22rem);
  margin: 0 auto;
  padding: 0;
  perspective: 90rem;
  user-select: none;
}

.th-tasting-stack[data-th-stack-ready="true"] .th-tasting-stack__cards {
  display: block;
}

.th-tasting-card {
  --th-card-x: 0rem;
  --th-card-y: 0rem;
  --th-card-rotate: 0deg;
  --th-card-scale: 1;
  --th-card-z: 10;
  position: relative;
  display: grid;
  width: 100%;
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(32, 18, 12, 0.13);
  border-radius: 1.35rem;
  opacity: 1;
  overflow: hidden;
  transform: none;
  transform-origin: 50% 88%;
  transition: transform 520ms cubic-bezier(0.2, 0.76, 0.22, 1),
    opacity 280ms ease,
    visibility 280ms ease,
    box-shadow var(--transition-base);
  z-index: var(--th-card-z);
}

.th-tasting-stack[data-th-stack-ready="true"] .th-tasting-card {
  position: absolute;
  inset: 0;
  transform: translate3d(var(--th-card-x), var(--th-card-y), 0)
    rotate(var(--th-card-rotate))
    scale(var(--th-card-scale));
}

.th-tasting-stack[data-th-stack-ready="true"]
  .th-tasting-card:not([data-th-card-active="true"]) {
  pointer-events: none;
}

.th-tasting-stack[data-th-stack-ready="true"]
  .th-tasting-card[data-th-card-hidden="true"] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.th-tasting-card[data-th-card-leaving="next"] {
  z-index: 40;
  animation: th-tasting-card-leave-next 360ms
    cubic-bezier(0.48, 0.04, 0.3, 1) forwards;
}

.th-tasting-card[data-th-card-leaving="previous"] {
  z-index: 40;
  animation: th-tasting-card-leave-previous 360ms
    cubic-bezier(0.48, 0.04, 0.3, 1) forwards;
}

.th-tasting-card[data-th-card-entering="next"],
.th-tasting-card[data-th-card-entering="previous"] {
  animation: th-tasting-card-enter 480ms
    cubic-bezier(0.16, 0.78, 0.22, 1) both;
}

.th-tasting-card__media {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  background: var(--color-surface-soft);
  overflow: hidden;
}

.th-tasting-card__image,
.th-tasting-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.th-tasting-card__image {
  object-fit: cover;
  pointer-events: none;
  transition: transform 520ms ease;
}

.th-tasting-card[data-th-card-active="true"]:hover .th-tasting-card__image {
  transform: scale(1.035);
}

.th-tasting-card__placeholder {
  background: linear-gradient(
      135deg,
      rgba(184, 135, 43, 0.13) 0,
      rgba(184, 135, 43, 0.13) 18%,
      transparent 18%,
      transparent 48%,
      rgba(56, 69, 47, 0.1) 48%,
      rgba(56, 69, 47, 0.1) 66%,
      transparent 66%
    ),
    linear-gradient(145deg, var(--color-surface-soft), var(--color-surface));
}

.th-tasting-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(32, 18, 12, 0.55));
  pointer-events: none;
}

.th-tasting-card__media figcaption {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 2;
}

.th-tasting-card__media time {
  display: grid;
  gap: 0.05rem;
  min-width: 6.8rem;
  padding: 0.65rem 0.78rem;
  border: 1px solid rgba(255, 253, 248, 0.7);
  border-radius: 0.9rem;
  color: var(--color-brown-dark);
  text-align: left;
}

.th-tasting-card__media time strong {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 1.2rem + 0.55vw, 1.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: var(--letter-spacing-heading);
}

.th-tasting-card__media time span {
  color: var(--color-gold-dark);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.th-tasting-card__content {
  flex-direction: column;
  min-width: 0;
  padding: 1.15rem;
}

.th-tasting-card__availability {
  margin: 0 0 0.38rem;
  color: var(--color-gold-dark);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.th-tasting-card__content h3 {
  margin: 0;
  color: var(--color-brown-dark);
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 1.05rem + 0.42vw, 1.48rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: var(--letter-spacing-heading);
}

.th-tasting-card__description {
  overflow: hidden;
}

.th-tasting-card__time {
  color: var(--color-text);
  line-height: 1.35;
}

.th-tasting-card__button {
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-height: 2.85rem;
  margin: 0;
  padding: 0.72rem 0.92rem;
  border: 1px solid transparent;
  border-radius: var(--button-radius);
  background: var(--color-gold);
  color: var(--color-white);
  font: inherit;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color var(--transition-fast),
    transform var(--transition-fast);
}

.th-tasting-card__button:hover,
.th-tasting-card__button:focus-visible {
  background: var(--color-gold-dark);
  color: var(--color-white);
  transform: translateY(-1px);
}

.th-tasting-card__button:focus-visible {
  outline: 2px solid var(--color-brown-dark);
  outline-offset: 2px;
}

.th-tasting-stack__controls {
  position: absolute;
  top: -3.45rem;
  right: 2rem;
  z-index: 60;
  display: grid;
  grid-template-columns: repeat(2, 2.35rem);
  align-items: center;
  gap: 0.45rem;
  margin: 0;
}

.th-tasting-stack__controls button {
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 50%;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
}

.th-tasting-stack__controls button:focus-visible {
  outline: 2px solid var(--color-brown-dark);
  outline-offset: 2px;
}

.th-tasting-stack__controls output {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.th-tasting-stack__empty {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  width: min(calc(100% - 3rem), 19.5rem);
  margin: 0 auto;
  padding: 1.35rem;
  border: 1px solid rgba(32, 18, 12, 0.13);
  border-radius: 1.35rem;
  color: var(--color-text-soft);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
  box-shadow: 0 1.45rem 3.4rem rgba(32, 18, 12, 0.13),
    0 0.3rem 0.85rem rgba(32, 18, 12, 0.06);
  text-align: left;
}

.th-tasting-stack__empty::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border: 1px solid rgba(32, 18, 12, 0.1);
  border-radius: inherit;
  box-shadow: 0 0.9rem 2.2rem rgba(32, 18, 12, 0.075);
  pointer-events: none;
}

.th-tasting-stack__empty::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(32, 18, 12, 0.1);
  border-radius: inherit;
  box-shadow: 0 0.9rem 2.2rem rgba(32, 18, 12, 0.075);
  pointer-events: none;
}

.th-tasting-stack__empty::before {
  transform: translate(0.8rem, 0.65rem) rotate(3.6deg) scale(0.975);
}

.th-tasting-stack__empty::after {
  z-index: -2;
  transform: translate(-0.72rem, 0.95rem) rotate(-4.1deg) scale(0.95);
}

@media (max-width: 1023px) {
  .home-tastings {
    grid-template-columns: minmax(18rem, 27rem) minmax(21rem, 25rem);
    gap: clamp(2.5rem, 4.5vw, 4rem);
  }

  .home-tastings__schedule {
    width: min(100%, 23rem);
  }
}

@media (max-width: 839px) {
  .home-tastings {
    min-height: 0;
  }

  .home-tastings::before {
    background: radial-gradient(
          circle at 55% 45%,
          rgba(184, 135, 43, 0.09),
          transparent 44%
        ),
        linear-gradient(
          180deg,
          rgba(247, 241, 231, 0),
          rgba(247, 241, 231, 0.68) 28%,
          rgba(247, 241, 231, 0.84)
        );
  }

  .home-tastings__content {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .home-tastings__content {
    box-sizing: border-box;
  }

  .home-tastings__schedule-label {
    padding-inline: 0 5.5rem;
  }

  .th-tasting-stack__cards,
  .th-tasting-stack__empty {
    width: min(calc(100% - 3rem), 20rem);
  }

  .th-tasting-card {
    border-radius: 1.1rem;
  }

  .th-tasting-card__content {
    padding: 1rem;
  }

  .th-tasting-card__media figcaption {
    right: 0.7rem;
    bottom: 0.7rem;
  }

  .th-tasting-card__media time {
    min-width: 6.15rem;
    padding: 0.55rem 0.65rem;
  }

  .th-tasting-stack__controls {
    top: -3.35rem;
    right: 1.5rem;
  }

  .th-tasting-stack__empty {
    padding: 1.1rem;
  }
}

@media (max-width: 420px) {
  .home-tastings__schedule {
    width: 100%;
  }

  .th-tasting-stack__cards,
  .th-tasting-stack__empty {
    width: calc(100% - 2.5rem);
  }

  .th-tasting-card__content h3 {
    font-size: 1.18rem;
  }

  .th-tasting-card__description {
    margin-top: 0.42rem;
    font-size: 0.84rem;
    line-height: 1.38;
  }

  .th-tasting-card__time {
    margin-bottom: 0.55rem;
    padding-top: 0.45rem;
  }

  .th-tasting-card__button {
    min-height: 2.65rem;
    padding: 0.65rem 0.8rem;
  }

  .th-tasting-stack__empty::before {
    transform: translate(0.55rem, 0.55rem) rotate(3deg) scale(0.975);
  }

  .th-tasting-stack__empty::after {
    transform: translate(-0.5rem, 0.72rem) rotate(-3.4deg) scale(0.955);
  }
}

@media (prefers-reduced-motion: reduce) {
  .th-tasting-card,
  .th-tasting-card__image,
  .th-tasting-card__button,
  .th-tasting-stack__controls button {
    transition: none;
  }

  .th-tasting-card[data-th-card-leaving],
  .th-tasting-card[data-th-card-entering] {
    animation: none;
  }
}

.th-tasting-card {
  border-color: rgba(184, 135, 43, 0.22);
  box-shadow: 0 1.35rem 3.1rem rgba(32, 18, 12, 0.12),
    0 0.25rem 0.75rem rgba(32, 18, 12, 0.055);
}

.th-tasting-card[data-th-card-active="true"] {
  box-shadow: 0 1.55rem 3.6rem rgba(32, 18, 12, 0.14),
    0 0.32rem 0.9rem rgba(32, 18, 12, 0.065);
}

.th-tasting-card__availability,
.th-tasting-card__content h3,
.th-tasting-card__time {
  width: 100%;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.th-tasting-card__description {
  width: 100%;
}

.th-tasting-card__media time {
  border-color: rgba(184, 135, 43, 0.28);
  background: var(--color-surface-soft);
  box-shadow: 0 0.55rem 1.25rem rgba(32, 18, 12, 0.13);
}

.th-tasting-stack__empty {
  border-color: rgba(184, 135, 43, 0.22);
  background: linear-gradient(
      180deg,
      transparent 0,
      transparent 53%,
      var(--color-surface-soft) 53%,
      var(--color-surface) 100%
    ),
    linear-gradient(
      135deg,
      rgba(184, 135, 43, 0.14) 0,
      rgba(184, 135, 43, 0.14) 18%,
      transparent 18%,
      transparent 47%,
      rgba(56, 69, 47, 0.1) 47%,
      rgba(56, 69, 47, 0.1) 66%,
      transparent 66%
    ),
    var(--color-surface-soft);
}

.th-tasting-stack__empty::before,
.th-tasting-stack__empty::after {
  border-color: rgba(184, 135, 43, 0.16);
  background: var(--color-surface-soft);
}

@media (max-width: 767px) {
  .th-tasting-card__description {
    -webkit-line-clamp: 4;
  }
}

.th-tasting-card {
  background: linear-gradient(
      135deg,
      rgba(255, 253, 248, 0.82),
      rgba(232, 216, 200, 0.42)
    ),
    var(--color-surface-soft);
}

.th-tasting-card__content {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto auto;
  align-items: start;
  width: 100%;
  max-width: 100%;
  min-height: 0;
  background: linear-gradient(
      135deg,
      rgba(255, 253, 248, 0.82),
      rgba(232, 216, 200, 0.42)
    ),
    var(--color-surface-soft);
  overflow: hidden;
}

.th-tasting-card__availability {
  grid-row: 1;
}

.th-tasting-card__content h3 {
  grid-row: 2;
}

.th-tasting-card__description {
  grid-row: 3;
  display: block;
  min-width: 0;
  max-width: 100%;
  min-height: 0;
  margin: 0.55rem 0 0;
  padding-right: 0.2rem;
  overflow-x: hidden;
  overflow-y: auto;
  color: var(--color-text-soft);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.42;
  hyphens: auto;
  overflow-wrap: anywhere;
  text-wrap: pretty;
  white-space: normal;
  word-break: normal;
  -webkit-box-orient: initial;
  -webkit-line-clamp: unset;
  scrollbar-color: rgba(184, 135, 43, 0.45) transparent;
  scrollbar-width: thin;
}

.th-tasting-card__description::-webkit-scrollbar {
  width: 0.28rem;
}

.th-tasting-card__description::-webkit-scrollbar-track {
  background: transparent;
}

.th-tasting-card__description::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(184, 135, 43, 0.45);
}

.th-tasting-card__time {
  grid-row: 4;
  align-self: end;
  margin: 0 0 0.68rem;
  padding-top: 0.55rem;
}

.th-tasting-card__button {
  grid-row: 5;
}

.th-tasting-stack__controls button {
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(32, 18, 12, 0.16);
  box-shadow: none;
  transition: transform var(--transition-fast),
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    opacity var(--transition-fast);
}

.th-tasting-stack__controls button:hover,
.th-tasting-stack__controls button:focus-visible {
  transform: translateY(-2px);
}

.th-tasting-stack__controls button:disabled {
  cursor: default;
  opacity: 0.38;
  transform: none;
}

@media (max-width: 767px) {
  .th-tasting-stack {
    height: 31rem;
  }
}

@media (max-width: 420px) {
  .th-tasting-stack {
    height: 30.5rem;
  }
}

.home-tastings {
  padding-bottom: clamp(3.25rem, 4.5vw, 4.5rem);
}

@media (max-width: 767px) {
  .home-tastings {
    padding-bottom: clamp(2.8rem, 8vw, 3.6rem);
  }
}

@media (min-width: 840px) {
  .home-tastings::before {
    right: auto;
    left: 0;
    border-radius: 0 clamp(3rem, 8vw, 7rem)
        clamp(3rem, 8vw, 7rem) 0;
    background: radial-gradient(
          circle at 54% 48%,
          rgba(184, 135, 43, 0.1),
          transparent 43%
        ),
        linear-gradient(
          270deg,
          rgba(247, 241, 231, 0),
          rgba(247, 241, 231, 0.58) 42%,
          rgba(247, 241, 231, 0.82)
        );
  }

  .home-tastings__schedule {
    grid-column: 1;
    grid-row: 1;
  }

  .home-tastings__content {
    grid-column: 2;
    grid-row: 1;
    padding-left: 0;
  }
}

.home-tastings::before {
  top: clamp(1rem, 2vw, 1.75rem);
  right: 50%;
  bottom: auto;
  left: auto;
  width: min(46rem, 82%);
  height: min(31rem, 62%);
  border-radius: clamp(3rem, 9vw, 7rem);
  background: radial-gradient(
      circle at 50% 46%,
      rgba(184, 135, 43, 0.11),
      transparent 46%
    ),
    linear-gradient(
      180deg,
      rgba(247, 241, 231, 0.78),
      rgba(247, 241, 231, 0.3) 72%,
      transparent
    );
  transform: translateX(50%);
}

.home-tastings__title {
  margin-inline: auto;
}

.home-tastings__text {
  margin-inline: auto;
}

.home-tastings__schedule-label {
  width: min(calc(100% - 4rem), 22rem);
  margin-inline: auto;
}

.th-tasting-stack {
  min-height: 28rem;
}

.th-tasting-stack__cards {
  min-height: 27.5rem;
}

.th-tasting-stack[data-th-stack-ready="true"] .th-tasting-stack__cards {
  height: 27.5rem;
}

.th-tasting-card {
  grid-template-rows: minmax(11.75rem, 42.75%) minmax(0, 57.25%);
  height: 27.5rem;
}

.th-tasting-stack__empty {
  min-height: 27.5rem;
}

@media (max-width: 839px) {
  .home-tastings::before {
    top: clamp(1rem, 3vw, 1.5rem);
    right: 50%;
    bottom: auto;
    left: auto;
    width: min(38rem, 96%);
    height: min(29rem, 58%);
    border-radius: clamp(2.5rem, 10vw, 5rem);
    transform: translateX(50%);
  }

  .home-tastings__content {
    padding-inline: clamp(0.75rem, 4vw, 1.25rem);
  }
}

@media (max-width: 767px) {
  .home-tastings__title span + span::before {
    content: none;
  }

  .home-tastings__schedule-label {
    width: min(calc(100% - 3rem), 20rem);
  }

  .th-tasting-stack {
    min-height: 27.5rem;
  }

  .th-tasting-stack__cards,
  .th-tasting-stack[data-th-stack-ready="true"] .th-tasting-stack__cards,
  .th-tasting-card,
  .th-tasting-stack__empty {
    min-height: 27rem;
    height: 27rem;
  }

  .th-tasting-card {
    grid-template-rows: minmax(10.75rem, 40%) minmax(0, 60%);
  }
}

@media (max-width: 420px) {
  .home-tastings {
    gap: 1.6rem;
  }

  .th-tasting-stack {
    min-height: 27rem;
  }

  .th-tasting-stack__cards,
  .th-tasting-stack[data-th-stack-ready="true"] .th-tasting-stack__cards,
  .th-tasting-card,
  .th-tasting-stack__empty {
    min-height: 26.5rem;
    height: 26.5rem;
  }

  .th-tasting-card {
    grid-template-rows: minmax(10.25rem, 38.5%) minmax(0, 61.5%);
  }
}

.home-tastings {
  grid-template-columns: minmax(20rem, 28rem) minmax(22rem, 26rem);
  grid-template-rows: auto;
  align-items: center;
  justify-content: center;
  justify-items: stretch;
  gap: clamp(3rem, 5.5vw, 5.5rem);
  padding: clamp(3.25rem, 4.5vw, 4.5rem)
    clamp(2rem, 4vw, 4rem);
  border-bottom-color: rgba(255, 253, 248, 0.18);
  background: radial-gradient(
      circle at 18% 16%,
      rgba(184, 135, 43, 0.28),
      transparent 18rem
    ),
    linear-gradient(
      145deg,
      rgba(90, 47, 27, 0.36),
      transparent 62%
    ),
    var(--color-brown-dark);
  color: var(--color-white);
  overflow: hidden;
}

.home-tastings::before {
  content: none;
}

.home-tastings__content {
  grid-column: 1;
  grid-row: 1;
  align-items: flex-start;
  width: 100%;
  max-width: 28rem;
  margin: 0;
  padding: 0;
  text-align: left;
}

.home-tastings__eyebrow {
  color: var(--color-gold);
  text-align: left;
}

.home-tastings__title {
  max-width: 12ch;
  margin: 0;
  color: var(--color-white);
  text-align: left;
}

.home-tastings__title span {
  display: block;
}

.home-tastings__title span + span::before {
  content: none;
}

.home-tastings__text {
  max-width: 46ch;
  margin: clamp(1rem, 1.8vw, 1.4rem) 0 0;
  color: rgba(255, 253, 248, 0.78);
  text-align: left;
}

.home-tastings__schedule {
  grid-column: 2;
  grid-row: 1;
  width: min(100%, 26rem);
  margin: 0;
}

.home-tastings__schedule-label {
  color: var(--color-gold);
}

.th-tasting-stack__controls button {
  border-color: rgba(255, 253, 248, 0.32);
  background: transparent;
  color: var(--color-white);
}

.th-tasting-stack__controls button:hover,
.th-tasting-stack__controls button:focus-visible {
  border-color: rgba(184, 135, 43, 0.72);
  background: rgba(184, 135, 43, 0.2);
  color: var(--color-white);
}

.th-tasting-stack:focus-visible {
  outline-color: var(--color-gold);
}

@media (max-width: 839px) {
  .home-tastings {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto;
    justify-items: center;
    gap: clamp(2.25rem, 6vw, 3.5rem);
    width: min(calc(100% - (var(--page-padding) * 2)), 42rem);
    padding: clamp(3rem, 7vw, 4rem)
        clamp(1.5rem, 5vw, 2.5rem);
  }

  .home-tastings__content {
    grid-column: 1;
    grid-row: 1;
    width: min(100%, 30rem);
    max-width: 30rem;
    margin-inline: auto;
  }

  .home-tastings__schedule {
    grid-column: 1;
    grid-row: 2;
    width: min(100%, 25rem);
    margin-inline: auto;
  }
}

@media (max-width: 767px) {
  .home-tastings {
    width: min(calc(100% - var(--page-padding)), 42rem);
    padding: clamp(2.8rem, 8vw, 3.6rem)
        clamp(1rem, 5vw, 1.5rem);
  }

  .home-tastings__content {
    width: min(100%, 28rem);
    padding-inline: 0;
  }

  .home-tastings__schedule {
    width: min(100%, 23rem);
  }
}

.home-tastings {
  border-radius: var(--radius-large);
}

.home-tastings {
  border-bottom: 0;
}

.th-tasting-card__time {
  font-size: 1rem;
  font-weight: 800;
}

.th-tasting-card__button {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  place-items: center;
  padding-inline: 2.75rem;
  text-align: center;
}

.th-tasting-card__button > span:first-child {
  grid-column: 1;
  grid-row: 1;
  text-align: center;
}

.th-tasting-card__button > span:last-child {
  position: absolute;
  top: 50%;
  right: 0.95rem;
  font-size: 1.1rem;
  line-height: 1;
  transform: translateY(-50%);
}

.home-tastings__button,
.th-tasting-card__button {
  font-size: var(--font-size-button, 1.06rem);
}

@media (max-width: 767px) {
  .home-tastings__title {
    max-width: none;
    font-size: clamp(1.55rem, 7vw, 2.1rem);
  }

  .home-tastings__title span {
    display: block;
    white-space: nowrap;
  }
}

@media (min-width: 1280px) {
  .home-tastings {
    grid-template-columns: minmax(0, 40rem)
        minmax(22rem, 26rem);
    justify-content: center;
    column-gap: clamp(6rem, 7vw, 8.5rem);
  }

  .home-tastings__content {
    width: 100%;
    max-width: 40rem;
    transform: none;
  }

  .home-tastings__schedule {
    width: min(100%, 26rem);
  }

  .home-tastings__title {
    max-width: none;
  }

  .home-tastings__title span {
    white-space: nowrap;
  }
}

/* =========================
   HOME ASSORTMENT
   ========================= */

.home-assortment {
  --assortment-gap: clamp(1.45rem, 2vw, 2rem);
  --assortment-media-width: 82%;
  --assortment-media-offset: 9%;
  display: grid;
  width: min(calc(100% - (var(--page-padding) * 2)), var(--site-width-wide));
  margin: 0 auto;
  padding: clamp(2rem, 3vw, 3rem) 0 clamp(3rem, 6vw, 6rem);
  border-bottom: 1px solid rgba(32, 18, 12, 0.14);
  opacity: 0;
  animation: home-history-reveal 0.75s ease both;
  animation-timeline: view();
  animation-range: entry 10% cover 34%;
}

.home-assortment__header {
  display: grid;
  align-items: start;
  gap: clamp(1.5rem, 4vw, 3rem);
  width: 100%;
  margin-bottom: clamp(0.7rem, 1.2vw, 1rem);
}

.home-assortment__heading {
  min-width: 0;
  max-width: 68rem;
}

.home-assortment__header-media {
  position: relative;
  width: min(100%, 46rem);
  height: clamp(8.5rem, 11vw, 12.5rem);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(184, 135, 43, 0.28);
  border-radius: var(--radius-large);
  background: radial-gradient(circle at 22% 22%, rgba(184, 135, 43, 0.15), transparent 32%),
    linear-gradient(135deg, rgba(255, 253, 248, 0.92), rgba(232, 216, 200, 0.48));
  box-shadow: 0 18px 44px rgba(32, 18, 12, 0.08);
}

.home-assortment__header-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-assortment__eyebrow {
  margin: 0 0 0.55rem;
  color: var(--color-gold-dark);
  font-family: var(--font-body);
  font-size: var(--font-size-small);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
}

.home-assortment__title {
  max-width: 14ch;
  margin: 0 0 clamp(1rem, 1.8vw, 1.45rem);
  color: var(--color-brown-dark);
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-heading);
}

.home-assortment__title span {
  display: block;
}

.home-assortment__text {
  max-width: 62ch;
  margin: 0;
  color: var(--color-text-soft);
  font-family: var(--font-body);
  font-weight: 500;
  text-wrap: pretty;
}

.home-assortment__slider {
  position: relative;
  width: 100%;
  min-width: 0;
  margin-top: clamp(1.8rem, 3vw, 3rem);
  background: transparent;
  opacity: 0;
  animation: home-history-reveal 0.75s ease both;
  animation-timeline: view();
  animation-range: entry 10% cover 34%;
}

.home-assortment__controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.65rem;
  margin: 0 0 clamp(0.45rem, 0.85vw, 0.65rem);
}

.home-assortment__button {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(32, 18, 12, 0.16);
  border-radius: 999px;
  background: transparent;
  color: var(--color-brown-dark);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform var(--transition-fast),
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    opacity var(--transition-fast);
}

.home-assortment__button:hover,
.home-assortment__button:focus-visible {
  border-color: rgba(184, 135, 43, 0.42);
  background: rgba(184, 135, 43, 0.08);
  transform: translateY(-2px);
}

.home-assortment__button:disabled {
  cursor: default;
  opacity: 0.38;
  transform: none;
}

.home-assortment__viewport {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  background: transparent;
}

.home-assortment__track {
  display: flex;
  align-items: stretch;
  gap: var(--assortment-gap);
  margin: 0;
  padding: 0;
  overflow-x: auto;
  background: transparent;
  scroll-behavior: auto;
  scrollbar-width: none;
}

.home-assortment__track::-webkit-scrollbar {
  display: none;
}

.home-assortment__slide {
  flex: 0 0 calc((100% - (var(--assortment-gap) * 3)) / 4);
  min-width: 0;
  padding: 0;
  background: transparent;
}

.home-assortment__card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: clamp(24.5rem, 25vw, 28rem);
  overflow: hidden;
  border-radius: var(--radius-large);
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.82), rgba(232, 216, 200, 0.42)),
    var(--color-surface-soft);
  transition: transform var(--transition-base),
    background-color var(--transition-base);
}

.home-assortment__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  box-shadow: 0 10px 22px rgba(32, 18, 12, 0.06);
}

.home-assortment__card:hover,
.home-assortment__card:focus-within {
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(184, 135, 43, 0.16)),
    var(--color-surface-soft);
  transform: translateY(-0.35rem);
}

.home-assortment__media {
  position: relative;
  box-sizing: border-box;
  display: block;
  width: var(--assortment-media-width);
  height: clamp(12rem, 13vw, 13.5rem);
  margin: clamp(0.9rem, 1vw, 1rem) 0 0 var(--assortment-media-offset);
  overflow: hidden;
  border: 1px solid rgba(184, 135, 43, 0.42);
  border-radius: var(--radius-medium);
  background: radial-gradient(circle at 30% 20%, rgba(184, 135, 43, 0.1), transparent 34%),
    linear-gradient(135deg, rgba(255, 253, 248, 0.92), rgba(240, 231, 220, 0.74));
  transform: skewX(-7deg);
  transform-origin: center;
  transition: border-color var(--transition-base);
}

.home-assortment__card:hover .home-assortment__media,
.home-assortment__card:focus-within .home-assortment__media {
  border-color: rgba(184, 135, 43, 0.68);
}

.home-assortment__media--empty::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 20%, rgba(184, 135, 43, 0.1), transparent 34%),
    linear-gradient(135deg, rgba(255, 253, 248, 0.92), rgba(240, 231, 220, 0.74));
}

.home-assortment__image {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 116%;
  height: 116%;
  max-width: none;
  margin: 0;
  object-fit: cover;
  object-position: center;
  transform: translate(-50%, -50%) skewX(7deg);
  transform-origin: center;
}

.home-assortment__card:hover .home-assortment__image,
.home-assortment__card:focus-within .home-assortment__image {
  transform: translate(-50%, -50%) skewX(7deg);
}

.home-assortment__body {
  display: grid;
  align-content: start;
  gap: 0.88rem;
  padding: clamp(1.08rem, 1.45vw, 1.3rem)
    var(--assortment-media-offset)
    clamp(1.1rem, 1.5vw, 1.3rem)
    var(--assortment-media-offset);
}

.home-assortment__card-title {
  margin: 0;
  color: var(--color-brown-dark);
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 1.05rem + 0.42vw, 1.46rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: var(--letter-spacing-heading);
  transition: color var(--transition-base);
}

.home-assortment__card:hover .home-assortment__card-title,
.home-assortment__card:focus-within .home-assortment__card-title {
  color: var(--color-brown);
}

.home-assortment__lines {
  display: grid;
  gap: 0.42rem;
  margin: 0;
}

.home-assortment__lines li {
  color: var(--color-text-soft);
  font-family: var(--font-body);
  font-size: clamp(0.93rem, 0.86rem + 0.13vw, 1rem);
  font-weight: 700;
  line-height: 1.48;
}

@media (min-width: 1320px) {
  .home-assortment {
    padding-bottom: clamp(2rem, 3vw, 3rem);
  }

  .home-assortment__header {
    grid-template-columns: minmax(0, 42rem) minmax(34rem, 58rem);
    justify-content: space-between;
    column-gap: clamp(4rem, 8vw, 10rem);
  }

  .home-assortment__header-media {
    justify-self: end;
    width: min(100%, 58rem);
    height: clamp(10.5rem, 13vw, 15rem);
    margin-top: clamp(1.75rem, 2vw, 2.15rem);
  }
}

@media (min-width: 1440px) {
  .home-assortment__header {
    grid-template-columns: minmax(0, 42rem) minmax(38rem, 62rem);
    column-gap: clamp(4rem, 7vw, 8rem);
  }

  .home-assortment__header-media {
    width: min(100%, 62rem);
    height: clamp(11rem, 12.5vw, 15.5rem);
  }
}

@media (min-width: 768px) and (max-width: 1319px) {
  .home-assortment {
    --assortment-media-width: 80%;
    --assortment-media-offset: 10%;
  }

  .home-assortment__header {
    grid-template-columns: 1fr;
  }

  .home-assortment__heading {
    width: min(100%, 68ch);
    max-width: 68rem;
  }

  .home-assortment__header-media {
    display: none;
  }

  .home-assortment__title {
    max-width: 13ch;
  }

  .home-assortment__text {
    max-width: 58ch;
  }

  .home-assortment__slider {
    margin-top: clamp(1.8rem, 4vw, 2.6rem);
  }

  .home-assortment__slide {
    flex-basis: calc((100% - var(--assortment-gap)) / 2);
  }

  .home-assortment__card {
    min-height: clamp(25rem, 45vw, 30rem);
  }

  .home-assortment__media {
    height: clamp(13rem, 27vw, 16rem);
  }
}

@media (max-width: 767px) {
  .home-assortment__title {
    font-size: clamp(2rem, 8.4vw, 2.65rem);
  }

  .home-assortment {
    --assortment-gap: 0.85rem;
    --assortment-media-width: 82%;
    --assortment-media-offset: 9%;
    width: min(calc(100% - var(--page-padding)), var(--site-width-wide));
    padding: clamp(2.2rem, 8vw, 3.2rem) 0 clamp(2.8rem, 10vw, 4rem);
  }

  .home-assortment__header {
    box-sizing: border-box;
    width: 100%;
    max-width: none;
    gap: clamp(1.1rem, 4vw, 1.6rem);
    padding-inline: 0;
    margin-bottom: clamp(0.8rem, 2.4vw, 1rem);
  }

  .home-assortment__heading {
    order: 2;
    box-sizing: border-box;
    width: min(100%, 54ch);
    max-width: 54ch;
    padding-inline: clamp(0.75rem, 4vw, 1.25rem);
  }

  .home-assortment__header-media {
    order: 1;
    justify-self: stretch;
    display: block;
    width: 100%;
    max-width: none;
    height: clamp(7.5rem, 34vw, 10.5rem);
    border-radius: var(--radius-medium);
    box-shadow: 0 14px 34px rgba(32, 18, 12, 0.07);
  }

  .home-assortment__title {
    max-width: none;
  }

  .home-assortment__title span:first-child {
    white-space: nowrap;
  }

  .home-assortment__text {
    max-width: 54ch;
    font-size: clamp(0.96rem, 0.88rem + 0.42vw, 1.08rem);
    line-height: 1.46;
  }

  .home-assortment__slider {
    display: grid;
    margin-top: clamp(1rem, 4vw, 1.35rem);
  }

  .home-assortment__viewport {
    order: 1;
    width: 100%;
    padding-inline: clamp(0.75rem, 4vw, 1.25rem);
  }

  .home-assortment__controls {
    order: 2;
    justify-content: center;
    padding-inline: clamp(0.75rem, 4vw, 1.25rem);
    margin: clamp(0.9rem, 4vw, 1.2rem) 0 0;
  }

  .home-assortment__button {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1rem;
  }

  .home-assortment__track {
    gap: var(--assortment-gap);
  }

  .home-assortment__slide {
    flex: 0 0 100%;
  }

  .home-assortment__card {
    min-height: clamp(25rem, 108vw, 31rem);
    border-radius: var(--radius-medium);
  }

  .home-assortment__card:hover,
  .home-assortment__card:focus-within {
    transform: none;
  }

  .home-assortment__media {
    width: 82%;
    height: clamp(13.5rem, 58vw, 17.5rem);
    margin: 0.95rem 0 0 9%;
    border-radius: 1.15rem;
    transform: skewX(-6deg);
  }

  .home-assortment__image {
    width: 116%;
    height: 116%;
    transform: translate(-50%, -50%) skewX(6deg);
  }

  .home-assortment__card:hover .home-assortment__image,
  .home-assortment__card:focus-within .home-assortment__image {
    transform: translate(-50%, -50%) skewX(6deg);
  }

  .home-assortment__body {
    gap: 0.72rem;
    padding: 0.95rem 9% 1.15rem;
  }

  .home-assortment__card-title {
    font-size: clamp(1.18rem, 5.2vw, 1.36rem);
    line-height: 1.12;
  }

  .home-assortment__lines {
    gap: 0.32rem;
  }

  .home-assortment__lines li {
    font-size: clamp(0.9rem, 4vw, 1rem);
    line-height: 1.42;
  }
}

@media (max-width: 639px) {
  .home-assortment__heading {
    width: min(100%, 31rem);
    max-width: 31rem;
  }

  .home-assortment__slide {
    flex-basis: 100%;
  }

  .home-assortment__media {
    height: clamp(12.5rem, 57vw, 16.5rem);
  }
}

@media (max-width: 374px) {
  .home-assortment__title {
    font-size: clamp(1.78rem, 8vw, 2rem);
  }

  .home-assortment__slide {
    flex-basis: 100%;
  }

  .home-assortment__card-title {
    font-size: 1.12rem;
  }

  .home-assortment__lines li {
    font-size: 0.86rem;
  }
}

@supports not (animation-timeline: view()) {
  .home-assortment,
  .home-assortment__slider {
    opacity: 1;
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-assortment,
  .home-assortment__slider {
    opacity: 1;
    animation: none;
  }

  .home-assortment__button,
  .home-assortment__card,
  .home-assortment__media,
  .home-assortment__image,
  .home-assortment__card-title {
    transition-duration: 0.001ms !important;
  }
}

.home-assortment__title {
  font-size: var(--font-size-h2);
}

.home-assortment__text {
  font-size: var(--font-size-content);
  line-height: 1.62;
}

@media (min-width: 768px) and (max-width: 1319px) {
  .home-assortment {
    padding-bottom: clamp(2rem, 3vw, 3rem);
  }
}

@media (max-width: 767px) {
  .home-assortment {
    padding-bottom: clamp(2.2rem, 8vw, 3.2rem);
  }
}

/* =========================
   HOME PARTNERS
   ========================= */

.home-partners {
  display: grid;
  grid-template-columns: minmax(20rem, 0.78fr) minmax(0, 1.22fr);
  align-items: stretch;
  width: min(calc(100% - (var(--page-padding) * 2)), var(--site-width-wide));
  margin: 0 auto;
  padding: clamp(2rem, 3vw, 3rem) 0;
  border-bottom: 1px solid rgba(32, 18, 12, 0.14);
}

.home-partners__header {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(2rem, 4vw, 4rem);
  overflow: hidden;
  border-radius: var(--radius-large) 0 0 var(--radius-large);
  background: radial-gradient(
      circle at 18% 16%,
      rgba(184, 135, 43, 0.28),
      transparent 18rem
    ),
    linear-gradient(
      145deg,
      rgba(90, 47, 27, 0.36),
      transparent 62%
    ),
    var(--color-brown-dark);
  opacity: 0;
  animation: home-history-reveal 0.75s ease both;
  animation-timeline: view();
  animation-range: entry 8% cover 32%;
}

.home-partners__eyebrow {
  margin: 0 0 0.55rem;
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: var(--font-size-small);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
}

.home-partners__title {
  max-width: 12ch;
  margin: 0 0 clamp(1rem, 1.8vw, 1.35rem);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-heading);
}

.home-partners__title span {
  display: block;
}

.home-partners__text {
  max-width: 34ch;
  margin: 0;
  color: rgba(255, 253, 248, 0.78);
  font-family: var(--font-body);
  font-weight: 500;
}

.home-partners__list {
  position: relative;
  isolation: isolate;
  min-width: 0;
  min-height: clamp(20rem, 25vw, 23rem);
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(32, 18, 12, 0.14);
  border-left: 0;
  border-radius: 0 var(--radius-large) var(--radius-large) 0;
  background: radial-gradient(
      circle at 50% 42%,
      rgba(184, 135, 43, 0.14),
      transparent 18rem
    ),
    var(--color-surface-soft);
  opacity: 0;
  animation: home-history-reveal 0.75s ease both;
  animation-timeline: view();
  animation-range: entry 16% cover 40%;
}

.home-partners__item {
  position: absolute;
  inset: 0;
  display: grid;
  min-width: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.9s ease,
    visibility 0s linear 0.9s;
}

.home-partners__item.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.9s ease,
    visibility 0s linear 0s;
}

.home-partners__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 100%;
  padding: clamp(0.5rem, 1vw, 1rem);
  color: var(--color-brown-dark);
  text-align: center;
  text-decoration: none;
  transition: background-color var(--transition-base),
    transform var(--transition-base);
}

a.home-partners__logo:hover,
a.home-partners__logo:focus-visible {
  background: rgba(184, 135, 43, 0.055);
}

.home-partners__image {
  display: block;
  width: auto;
  width: min(96%, 52rem);
  max-width: none;
  max-height: clamp(13rem, 20vw, 18rem);
  object-fit: contain;
  filter: grayscale(1) sepia(0.1);
  opacity: 0.86;
  transition: filter var(--transition-base),
    opacity var(--transition-base),
    transform var(--transition-base);
}

a.home-partners__logo:hover .home-partners__image,
a.home-partners__logo:focus-visible .home-partners__image {
  filter: none;
  opacity: 1;
  transform: scale(1.025);
}

.home-partners__name {
  max-width: 18ch;
  color: var(--color-brown-dark);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 1.1rem + 1.2vw, 2.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: var(--letter-spacing-heading);
  text-wrap: balance;
}

.home-partners__empty {
  display: grid;
  place-items: center;
  min-height: clamp(20rem, 25vw, 23rem);
  margin: 0;
  padding: clamp(2rem, 4vw, 4rem);
  border: 1px solid rgba(32, 18, 12, 0.14);
  border-left: 0;
  border-radius: 0 var(--radius-large) var(--radius-large) 0;
  background: radial-gradient(
      circle at 50% 20%,
      rgba(184, 135, 43, 0.12),
      transparent 15rem
    ),
    var(--color-surface-soft);
  color: var(--color-text-soft);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
  opacity: 0;
  animation: home-history-reveal 0.75s ease both;
  animation-timeline: view();
  animation-range: entry 16% cover 40%;
}

@media (max-width: 1099px) {
  .home-partners {
    grid-template-columns: 1fr;
  }

  .home-partners__header {
    border-radius: var(--radius-large) var(--radius-large) 0 0;
  }

  .home-partners__list {
    min-height: clamp(15rem, 30vw, 18rem);
    border-top: 0;
    border-left: 1px solid rgba(32, 18, 12, 0.14);
    border-radius: 0 0 var(--radius-large) var(--radius-large);
  }

  .home-partners__image {
    width: min(94%, 44rem);
    max-width: none;
    max-height: clamp(11rem, 24vw, 15rem);
  }

  .home-partners__empty {
    min-height: clamp(15rem, 30vw, 18rem);
    border-top: 0;
    border-left: 1px solid rgba(32, 18, 12, 0.14);
    border-radius: 0 0 var(--radius-large) var(--radius-large);
  }
}

@media (max-width: 767px) {
  .home-partners {
    width: min(calc(100% - var(--page-padding)), var(--site-width-wide));
    padding: clamp(2.2rem, 8vw, 3.2rem) 0;
  }

  .home-partners__header {
    padding: clamp(1.6rem, 7vw, 2.25rem);
    border-radius: var(--radius-medium) var(--radius-medium) 0 0;
  }

  .home-partners__title {
    max-width: 11ch;
    font-size: clamp(2rem, 8.4vw, 2.65rem);
  }

  .home-partners__text {
    font-size: clamp(0.96rem, 0.88rem + 0.42vw, 1.08rem);
    line-height: 1.46;
  }

  .home-partners__list {
    min-height: clamp(12rem, 48vw, 15rem);
    border-radius: 0 0 var(--radius-medium) var(--radius-medium);
  }

  .home-partners__logo {
    padding: clamp(0.5rem, 2vw, 0.85rem);
  }

  .home-partners__image {
    width: min(92%, 28rem);
    max-width: none;
    max-height: clamp(8rem, 34vw, 12rem);
  }

  .home-partners__empty {
    min-height: 12rem;
    padding: 1.5rem;
    border-radius: 0 0 var(--radius-medium) var(--radius-medium);
    font-size: 0.95rem;
  }
}

@media (max-width: 374px) {
  .home-partners__title {
    font-size: clamp(1.78rem, 8vw, 2rem);
  }

  .home-partners__name {
    font-size: 1.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-partners__item {
    transition: none;
  }
}

@supports not (animation-timeline: view()) {
  .home-partners__header,
  .home-partners__list,
  .home-partners__empty {
    opacity: 1;
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-partners__header,
  .home-partners__list,
  .home-partners__empty {
    opacity: 1;
    animation: none;
  }

  .home-partners__link,
  .home-partners__logo,
  .home-partners__image {
    transition-duration: 0.001ms !important;
  }
}

.home-partners__title {
  font-size: var(--font-size-h2);
}

.home-partners__text {
  font-size: var(--font-size-content);
  line-height: 1.62;
}

/* =========================
   HOME FAQ
   ========================= */

.home-faq {
  display: grid;
  justify-items: center;
  width: min(calc(100% - (var(--page-padding) * 2)), var(--site-width-wide));
  margin: 0 auto;
  padding: clamp(2rem, 3vw, 3rem) 0 clamp(3rem, 6vw, 6rem);
  border-bottom: 1px solid rgba(32, 18, 12, 0.14);
  text-align: center;
}

.home-faq__header {
  width: min(100%, 58rem);
  margin: 0 auto clamp(1.5rem, 3vw, 2.4rem);
  opacity: 0;
  animation: home-history-reveal 0.75s ease both;
  animation-timeline: view();
  animation-range: entry 10% cover 34%;
}

.home-faq__eyebrow {
  margin: 0 0 0.55rem;
  color: var(--color-gold-dark);
  font-family: var(--font-body);
  font-size: var(--font-size-small);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
}

.home-faq__title {
  max-width: 14ch;
  margin: 0 auto clamp(1rem, 1.8vw, 1.45rem);
  color: var(--color-brown-dark);
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-heading);
}

.home-faq__title span {
  display: block;
}

.home-faq__text {
  max-width: 54ch;
  margin: 0 auto;
  color: var(--color-text-soft);
  font-family: var(--font-body);
  font-weight: 500;
  text-wrap: pretty;
}

.home-faq__list {
  width: min(100%, 54rem);
  margin: 0 auto;
  border-top: 1px solid rgba(32, 18, 12, 0.14);
  text-align: left;
  opacity: 0;
  animation: home-history-reveal 0.75s ease both;
  animation-timeline: view();
  animation-range: entry 8% cover 30%;
}

.home-faq__item {
  border-bottom: 1px solid rgba(32, 18, 12, 0.14);
}

.home-faq__item-title {
  margin: 0;
}

.home-faq__question {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 2.25rem;
  align-items: center;
  gap: 1rem;
  width: 100%;
  min-height: clamp(4.4rem, 6vw, 5.3rem);
  padding: clamp(1rem, 2vw, 1.25rem) 0;
  border: 0;
  background: transparent;
  color: var(--color-brown-dark);
  font-family: var(--font-heading);
  font-size: clamp(1.12rem, 1rem + 0.42vw, 1.38rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: var(--letter-spacing-heading);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.home-faq__question:hover,
.home-faq__question:focus-visible,
.home-faq__item.is-open .home-faq__question {
  color: var(--color-brown);
}

.home-faq__icon {
  position: relative;
  justify-self: end;
  display: inline-grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border: 1px solid rgba(184, 135, 43, 0.52);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.62);
  color: var(--color-gold-dark);
  transition: background-color var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.home-faq__icon::before,
.home-faq__icon::after {
  content: "";
  position: absolute;
  width: 0.72rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.home-faq__icon::after {
  transform: rotate(90deg);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.home-faq__question:hover .home-faq__icon,
.home-faq__question:focus-visible .home-faq__icon,
.home-faq__item.is-open .home-faq__icon {
  border-color: rgba(184, 135, 43, 0.78);
  background: rgba(184, 135, 43, 0.1);
}

.home-faq__item.is-open .home-faq__icon {
  transform: rotate(180deg);
}

.home-faq__item.is-open .home-faq__icon::after {
  opacity: 0;
  transform: rotate(90deg) scaleX(0);
}

.home-faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.38s ease,
    opacity 0.24s ease;
}

.home-faq__item.is-open .home-faq__panel {
  grid-template-rows: 1fr;
  opacity: 1;
}

.home-faq__panel-inner {
  min-height: 0;
  overflow: hidden;
}

.home-faq__answer {
  max-width: 64ch;
  margin: 0;
  padding: 0 3.25rem clamp(1.15rem, 2.4vw, 1.55rem) 0;
  color: var(--color-text-soft);
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 0.9rem + 0.28vw, 1.12rem);
  font-weight: 500;
  line-height: 1.62;
}

@media (max-width: 767px) {
  .home-faq {
    width: min(calc(100% - var(--page-padding)), var(--site-width-wide));
    padding: clamp(2.2rem, 8vw, 3.2rem) 0 clamp(2.8rem, 10vw, 4rem);
  }

  .home-faq__header {
    width: min(100%, 54ch);
    padding-inline: clamp(0.75rem, 4vw, 1.25rem);
    text-align: left;
  }

  .home-faq__title {
    max-width: none;
    margin-inline: 0;
    font-size: clamp(2rem, 8.4vw, 2.65rem);
  }

  .home-faq__text {
    max-width: 54ch;
    margin-inline: 0;
    font-size: clamp(0.96rem, 0.88rem + 0.42vw, 1.08rem);
    line-height: 1.46;
  }

  .home-faq__list {
    width: min(100%, 54ch);
    padding-inline: clamp(0.75rem, 4vw, 1.25rem);
  }

  .home-faq__question {
    grid-template-columns: minmax(0, 1fr) 2rem;
    min-height: 4.1rem;
    font-size: clamp(1.05rem, 4.6vw, 1.2rem);
  }

  .home-faq__icon {
    width: 1.9rem;
    height: 1.9rem;
  }

  .home-faq__answer {
    padding-right: 0;
    font-size: clamp(0.96rem, 3.8vw, 1.04rem);
    line-height: 1.5;
  }
}

@media (max-width: 639px) {
  .home-faq__header,
  .home-faq__list {
    width: min(100%, 31rem);
  }
}

@media (max-width: 374px) {
  .home-faq__title {
    font-size: clamp(1.78rem, 8vw, 2rem);
  }

  .home-faq__question {
    font-size: 1rem;
  }

  .home-faq__answer {
    font-size: 0.95rem;
  }
}

@supports not (animation-timeline: view()) {
  .home-faq__header,
  .home-faq__list {
    opacity: 1;
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-faq__header,
  .home-faq__list {
    opacity: 1;
    animation: none;
  }

  .home-faq__question,
  .home-faq__icon,
  .home-faq__icon::after,
  .home-faq__panel {
    transition-duration: 0.001ms !important;
  }
}

.home-faq__title {
  font-size: var(--font-size-h2);
}

.home-faq__text {
  font-size: var(--font-size-content);
  line-height: 1.62;
}

.home-faq {
  padding-bottom: clamp(2rem, 3vw, 3rem);
}

@media (max-width: 767px) {
  .home-faq {
    padding-bottom: clamp(2.2rem, 8vw, 3.2rem);
  }
}

/* =========================
   HOME PAGE CONTENT
   ========================= */

.home-page-content {
  width: min(calc(100% - (var(--page-padding) * 2)), var(--site-width-wide));
  margin: 0 auto;
  padding: clamp(2.6rem, 5vw, 5rem) 0;
}