.wn-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(150deg, var(--wn-dark), var(--wn-wine-dk));
  isolation: isolate;
}

.wn-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.wn-hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(22, 11, 15, 0.9) 0%, rgba(22, 11, 15, 0.2) 48%, rgba(22, 11, 15, 0.5) 100%),
    linear-gradient(to right, rgba(22, 11, 15, 0.5) 0%, rgba(22, 11, 15, 0) 58%);
}

.wn-hero__in {
  position: relative;
  min-height: clamp(580px, 82vh, 800px);
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr auto;
  grid-template-areas:
    ". panel"
    ". ."
    "lede gallery";
  gap: 1.6rem;
  padding: clamp(1.5rem, 3.5vw, 3rem);
}

.wn-hero__panel {
  grid-area: panel;
  align-self: start;
  justify-self: end;
  display: flex;
  flex-direction: column;
  gap: clamp(1.1rem, 2.4vw, 1.9rem);
  width: min(330px, 82vw);
}

.wn-hero__pcard {
  padding: 1.2rem 1.35rem;
  background: rgba(22, 11, 15, 0.5);
  backdrop-filter: blur(10px);
  border: 3px solid rgba(227, 209, 173, 0.32);
  border-radius: var(--wn-r-2xl);
}

.wn-hero__pcard--b {
  align-self: flex-end;
  width: min(286px, 100%);
}

.wn-hero__eyebrow {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--wn-gold);
}

.wn-hero__stat {
  font-family: var(--wn-ff-display);
  font-weight: 600;
  font-size: 2.7rem;
  line-height: 1;
  color: var(--wn-cream);
  margin-top: 0.7rem;
}

.wn-hero__statlabel {
  font-size: 0.95rem;
  color: var(--wn-parch);
}

.wn-hero__pdiv {
  height: 2px;
  background: rgba(195, 165, 102, 0.5);
  margin: 1.1rem 0;
}

.wn-hero__crit {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.wn-hero__crit + .wn-hero__crit {
  margin-top: 0.8rem;
}

.wn-hero__crit .wn-ic {
  width: 21px;
  height: 21px;
  flex: none;
  color: var(--wn-gold);
  margin-top: 2px;
}

.wn-hero__crittext b {
  display: block;
  font-family: var(--wn-ff-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--wn-cream);
}

.wn-hero__crittext span {
  font-size: 0.95rem;
  color: var(--wn-parch);
}

.wn-hero__lede {
  grid-area: lede;
  align-self: end;
  max-width: 640px;
}

.wn-hero__h1 {
  font-family: var(--wn-ff-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 1.5rem + 3.4vw, 4.1rem);
  line-height: 1.04;
  color: var(--wn-cream);
}

.wn-hero__sub {
  margin-top: 1.1rem;
  max-width: 54ch;
  font-size: clamp(1.05rem, 1rem + 0.45vw, 1.28rem);
  font-weight: 500;
  color: var(--wn-parch);
}

.wn-hero__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.7rem;
}

.wn-hero__rating {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.wn-hero__rtop {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.wn-stars {
  display: inline-flex;
  gap: 3px;
}

.wn-star {
  width: 17px;
  height: 17px;
  background: var(--wn-gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.wn-hero__score {
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--wn-cream);
}

.wn-hero__cap {
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--wn-parch);
}

.wn-hero__gallery {
  grid-area: gallery;
  align-self: end;
  justify-self: end;
  display: flex;
  gap: 0.6rem;
}

.wn-hero__thumb {
  width: clamp(66px, 8vw, 94px);
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 3px solid rgba(245, 237, 222, 0.45);
  border-radius: var(--wn-r-md);
  overflow: hidden;
  background: var(--wn-dark);
  cursor: pointer;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.wn-hero__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wn-hero__thumb:hover {
  border-color: rgba(195, 165, 102, 0.85);
  transform: scale(1.04);
}

.wn-hero__thumb.is-active {
  border-color: var(--wn-gold);
}

@media (max-width: 860px) {
  .wn-hero__in {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto auto;
    grid-template-areas:
      "panel"
      "."
      "lede"
      "gallery";
    gap: 1.2rem;
  }
  .wn-hero__panel {
    justify-self: start;
  }
  .wn-hero__gallery {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .wn-hero__panel {
    display: none;
  }
  .wn-hero__in {
    min-height: clamp(480px, 78vh, 680px);
  }
}

.wn-std {
  background: var(--wn-grad-beige);
  padding-block: clamp(2.4rem, 1.6rem + 3.5vw, 4.6rem);
}

.wn-std .wn-sec {
  margin-bottom: clamp(1.6rem, 1.1rem + 2vw, 2.4rem);
}

.wn-std__grid {
  width: min(100% - var(--wn-gut) * 2, var(--wn-wrap-wide));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(0.8rem, 0.5rem + 1.2vw, 1.3rem);
  align-items: stretch;
}

.wn-std__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.8rem, 0.5rem + 1vw, 1.2rem);
}

.wn-std__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-height: clamp(140px, 11vw, 176px);
  padding: clamp(1.05rem, 0.85rem + 0.7vw, 1.4rem);
  border-radius: var(--wn-r-2xl);
  border: 3px solid rgba(227, 209, 173, 0.22);
  background-color: var(--wn-dark);
  background-image: linear-gradient(160deg, rgba(20, 10, 14, 0.5), rgba(20, 10, 14, 0.82)), var(--bg, none);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.wn-std__card:hover {
  border-color: var(--wn-gold);
  transform: scale(1.02);
  box-shadow: var(--wn-shadow-2);
}

.wn-std__ic {
  width: 30px;
  height: 30px;
  color: var(--wn-gold);
}

.wn-std__card h3 {
  font-family: var(--wn-ff-display);
  font-weight: 600;
  font-size: clamp(1.25rem, 1.1rem + 0.55vw, 1.55rem);
  line-height: 1.12;
  color: var(--wn-cream);
}

.wn-std__card p {
  font-size: 1rem;
  color: var(--wn-parch);
}

.wn-std__media {
  border-radius: var(--wn-r-2xl);
  overflow: hidden;
  border: 3px solid rgba(227, 209, 173, 0.22);
  background: var(--wn-dark);
}

.wn-std__media img {
  width: 100%;
  height: 100%;
  min-height: clamp(380px, 40vw, 524px);
  object-fit: cover;
}

@media (max-width: 860px) {
  .wn-std__grid {
    grid-template-columns: 1fr;
  }
  .wn-std__media img {
    min-height: clamp(280px, 50vw, 400px);
  }
}

@media (max-width: 560px) {
  .wn-std__cards {
    grid-template-columns: 1fr;
  }
}

.wn-gal {
  background: linear-gradient(160deg, var(--wn-wine-dk), var(--wn-dark));
  padding-block: clamp(2.6rem, 1.8rem + 3.5vw, 5rem);
}

.wn-gal .wn-sec {
  margin-bottom: clamp(1.8rem, 1.2rem + 2vw, 2.8rem);
}

.wn-gal__grid {
  width: min(100% - var(--wn-gut) * 2, var(--wn-wrap-wide));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: clamp(160px, 17vw, 240px);
  gap: clamp(0.16rem, 0.1rem + 0.15vw, 0.26rem);
}

.wn-gal__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--wn-r-xl);
  border: 3px solid rgba(227, 209, 173, 0.18);
  background: var(--wn-dark);
  transition: border-color 0.35s ease;
}

.wn-gal__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0, 0.2, 1);
}

.wn-gal__item:hover {
  border-color: var(--wn-gold);
}

.wn-gal__item:hover img {
  transform: scale(1.07);
}

.wn-gal__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 1.6rem 1.1rem 0.85rem;
  background: linear-gradient(to top, rgba(20, 10, 14, 0.85), transparent);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wn-gold-lt);
}

.wn-gal__cap .wn-ic {
  width: 16px;
  height: 16px;
}

.wn-gal__item--a { grid-column: 1 / 4; grid-row: 1 / 3; }
.wn-gal__item--b { grid-column: 4 / 7; grid-row: 1 / 2; }
.wn-gal__item--c { grid-column: 4 / 6; grid-row: 2 / 3; }
.wn-gal__item--d { grid-column: 6 / 7; grid-row: 2 / 4; }
.wn-gal__item--e { grid-column: 1 / 3; grid-row: 3 / 4; }
.wn-gal__item--f { grid-column: 3 / 6; grid-row: 3 / 4; }

@media (max-width: 768px) {
  .wn-gal__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: clamp(150px, 34vw, 210px);
  }
  .wn-gal__item--a {
    grid-column: 1 / 3;
    grid-row: span 2;
  }
  .wn-gal__item--b,
  .wn-gal__item--f {
    grid-column: 1 / 3;
    grid-row: auto;
  }
  .wn-gal__item--c,
  .wn-gal__item--d,
  .wn-gal__item--e {
    grid-column: auto;
    grid-row: auto;
  }
}

.wn-cmp {
  background: var(--wn-grad-beige);
  padding-block: clamp(2.6rem, 1.8rem + 3.5vw, 5rem);
}

.wn-cmp .wn-sec {
  margin-bottom: clamp(1.8rem, 1.2rem + 2vw, 2.8rem);
}

.wn-cmp__table {
  width: min(100% - var(--wn-gut) * 2, var(--wn-wrap-wide));
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.wn-cmp__head {
  display: grid;
  grid-template-columns: 2.6fr 1.5fr 1.7fr 0.8fr 1fr;
  align-items: center;
  gap: 1.2rem;
  padding: 0 1.4rem 0.8rem;
  border-bottom: 3px solid var(--wn-gold-dk);
}

.wn-cmp__hcell {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wn-brown);
}

.wn-cmp__hcell .wn-ic {
  width: 17px;
  height: 17px;
  color: var(--wn-gold-dk);
}

.wn-cmp__row {
  display: grid;
  grid-template-columns: 2.6fr 1.5fr 1.7fr 0.8fr 1fr;
  align-items: center;
  gap: 1.2rem;
  padding: 0.9rem 1.4rem;
  background: linear-gradient(150deg, var(--wn-wine-dk), var(--wn-dark));
  border: 3px solid var(--wn-gold-dk);
  border-radius: var(--wn-r-2xl);
  box-shadow: var(--wn-shadow-1);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.wn-cmp__row:hover {
  border-color: var(--wn-gold);
  transform: scale(1.008);
  box-shadow: var(--wn-shadow-2);
}

.wn-cmp__row--top {
  border-color: var(--wn-gold);
  box-shadow: var(--wn-shadow-2), var(--wn-glow-gold);
}

.wn-cmp__resort {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.wn-cmp__thumb {
  width: 116px;
  height: 86px;
  flex: none;
  object-fit: cover;
  border-radius: var(--wn-r-lg);
}

.wn-cmp__name {
  font-family: var(--wn-ff-display);
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.1;
  color: var(--wn-cream);
}

.wn-cmp__loc {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.25rem;
  font-size: 0.95rem;
  color: var(--wn-parch);
}

.wn-cmp__loc .wn-ic {
  width: 15px;
  height: 15px;
  color: var(--wn-gold);
}

.wn-cmp__tag {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.22rem 0.65rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wn-ink);
  background: var(--wn-grad-gold);
  border-radius: 999px;
}

.wn-cmp__cell {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--wn-parch);
}

.wn-cmp__v {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wn-cmp__cell .wn-ic {
  width: 19px;
  height: 19px;
  flex: none;
  color: var(--wn-gold-lt);
}

.wn-cmp__hl {
  color: var(--wn-gold-lt);
  font-weight: 600;
}

.wn-cmp__score {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-family: var(--wn-ff-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--wn-ink);
  background: linear-gradient(140deg, #ffe6a0 0%, #d4a652 60%, #b88a3c 100%);
  box-shadow: 0 4px 12px rgba(195, 165, 102, 0.45);
}

.wn-cmp__lbl {
  display: none;
}

@media (max-width: 820px) {
  .wn-cmp__head {
    display: none;
  }
  .wn-cmp__row {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    padding: 1.2rem 1.3rem;
  }
  .wn-cmp__cell {
    justify-content: space-between;
  }
  .wn-cmp__lbl {
    display: inline;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--wn-gold);
  }
}

.wn-cta {
  background-color: var(--wn-dark);
  background-image: linear-gradient(125deg, rgba(20, 10, 14, 0.84) 0%, rgba(20, 10, 14, 0.56) 55%, rgba(20, 10, 14, 0.8) 100%), var(--wn-cta-img, url(/assets/images/cta-bg.webp));
  background-size: cover;
  background-position: center;
  padding-block: clamp(3.5rem, 2.5rem + 5vw, 7rem);
}

.wn-cta__in {
  width: min(100% - var(--wn-gut) * 2, 760px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.1rem;
}

.wn-cta__orn {
  height: 34px;
  margin-bottom: 0.4rem;
}

.wn-cta__h {
  font-family: var(--wn-ff-display);
  font-weight: 600;
  font-size: clamp(2.1rem, 1.5rem + 2.6vw, 3.4rem);
  line-height: 1.08;
  color: var(--wn-cream);
}

.wn-cta__p {
  max-width: 58ch;
  font-size: clamp(1.08rem, 1rem + 0.4vw, 1.28rem);
  line-height: 1.6;
  color: var(--wn-parch);
}

.wn-cta__in .wn-btn {
  margin-top: 0.8rem;
}

.wn-faq {
  background: var(--wn-grad-beige);
  padding-block: clamp(2.6rem, 1.8rem + 3.5vw, 5rem);
}

.wn-faq__in {
  width: min(100% - var(--wn-gut) * 2, var(--wn-wrap));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.3fr 0.82fr;
  gap: clamp(1.6rem, 1rem + 3vw, 3.4rem);
  align-items: start;
}

.wn-faq__list {
  grid-column: 1;
  grid-row: 1;
}

.wn-faq__head {
  grid-column: 2;
  position: sticky;
  top: calc(var(--wn-header-h) + 1.2rem);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  align-items: flex-start;
}

.wn-faq__item {
  border-bottom: 3px solid var(--wn-line);
}

.wn-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.05rem 1.2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  border-radius: var(--wn-r-lg);
  font-family: var(--wn-ff-display);
  font-weight: 600;
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.35rem);
  color: var(--wn-ink);
  transition: background 0.3s ease, color 0.3s ease;
}

.wn-faq__q:hover {
  background: var(--wn-sand);
}

.wn-faq__item.is-open .wn-faq__q {
  background: var(--wn-wine);
  color: var(--wn-cream);
}

.wn-faq__qic {
  width: 21px;
  height: 21px;
  flex: none;
  color: var(--wn-gold-dk);
  transition: color 0.3s ease;
}

.wn-faq__item.is-open .wn-faq__qic {
  color: var(--wn-gold-lt);
}

.wn-faq__qt {
  flex: 1;
}

.wn-faq__toggle {
  width: 36px;
  height: 36px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(168, 136, 74, 0.16);
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), background 0.3s ease;
}

.wn-faq__toggle .wn-ic {
  width: 18px;
  height: 18px;
  color: var(--wn-gold-dk);
  transition: color 0.3s ease;
}

.wn-faq__item.is-open .wn-faq__toggle {
  transform: rotate(180deg);
  background: rgba(245, 237, 222, 0.2);
}

.wn-faq__item.is-open .wn-faq__toggle .wn-ic {
  color: var(--wn-cream);
}

.wn-faq__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.wn-faq__a {
  padding: 0.5rem 1.2rem 1.4rem;
}

.wn-faq__a p {
  font-size: clamp(1.02rem, 1rem + 0.25vw, 1.15rem);
  line-height: 1.65;
  color: var(--wn-soft);
}

@media (max-width: 860px) {
  .wn-faq__in {
    grid-template-columns: 1fr;
  }
  .wn-faq__head,
  .wn-faq__list {
    grid-column: auto;
  }
  .wn-faq__list {
    grid-row: auto;
  }
  .wn-faq__head {
    position: static;
    margin-bottom: 0.4rem;
  }
}

.wn-rev {
  background: linear-gradient(165deg, var(--wn-dark), var(--wn-wine-dk));
  padding-block: clamp(2.6rem, 1.8rem + 3.5vw, 5rem);
  overflow: hidden;
}

.wn-rev__wrap {
  width: min(100% - var(--wn-gut) * 2, var(--wn-wrap-wide));
  margin-inline: auto;
}

.wn-rev .wn-sec {
  margin-bottom: clamp(1.6rem, 1.2rem + 2vw, 2.6rem);
}

.wn-rev__tabs {
  display: flex;
  gap: 0.7rem;
  margin-bottom: clamp(1.8rem, 1.2rem + 2.5vw, 3rem);
}

.wn-rev__tab {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.85rem;
  background: rgba(22, 11, 15, 0.5);
  border: 3px solid rgba(227, 209, 173, 0.18);
  border-radius: var(--wn-r-xl);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.wn-rev__tab:hover {
  border-color: rgba(195, 165, 102, 0.6);
}

.wn-rev__tab.is-active {
  border-color: var(--wn-gold);
  background: rgba(106, 34, 51, 0.45);
  box-shadow: var(--wn-glow-gold);
}

.wn-rev__timg {
  width: 58px;
  height: 46px;
  flex: none;
  object-fit: cover;
  border-radius: var(--wn-r-md);
}

.wn-rev__tinfo {
  min-width: 0;
}

.wn-rev__tname {
  font-family: var(--wn-ff-display);
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.1;
  color: var(--wn-cream);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wn-rev__tmeta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.25rem;
  font-size: 0.95rem;
  color: var(--wn-parch);
}

.wn-rev__tscore {
  font-family: var(--wn-ff-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--wn-gold-lt);
}

.wn-rev__panels {
  display: grid;
}

.wn-rev__panel {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}

.wn-rev__panel.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.wn-rev__head {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.4rem, 1rem + 2vw, 2.6rem);
  align-items: center;
  margin-bottom: clamp(1.8rem, 1.2rem + 2.5vw, 3rem);
}

.wn-rev__media {
  position: relative;
  border-radius: var(--wn-r-2xl);
  overflow: hidden;
  border: 3px solid var(--wn-gold-dk);
}

.wn-rev__media img:not(.wn-rev__corner) {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.wn-rev__corner {
  position: absolute;
  width: clamp(26px, 3.4vw, 38px);
  height: auto;
  pointer-events: none;
  opacity: 0.92;
}

.wn-rev__corner--tl {
  top: 8px;
  left: 8px;
}

.wn-rev__corner--br {
  bottom: 8px;
  right: 8px;
  transform: scale(-1, -1);
}

.wn-rev__name {
  font-family: var(--wn-ff-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 1.3rem + 2vw, 2.8rem);
  line-height: 1.08;
  color: var(--wn-cream);
}

.wn-rev__loc {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.7rem;
  color: var(--wn-parch);
  font-weight: 600;
}

.wn-rev__loc .wn-ic {
  width: 17px;
  height: 17px;
  color: var(--wn-gold);
}

.wn-rev__score {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-family: var(--wn-ff-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--wn-ink);
  background: linear-gradient(140deg, #ffe6a0 0%, #d4a652 60%, #b88a3c 100%);
  box-shadow: 0 4px 12px rgba(195, 165, 102, 0.45);
}

.wn-rev__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  margin-top: 1.3rem;
}

.wn-rev__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--wn-parch);
}

.wn-rev__chip .wn-ic {
  width: 19px;
  height: 19px;
  color: var(--wn-gold-lt);
}

.wn-rev__body {
  max-width: 1000px;
}

.wn-rev__sec {
  margin-block: clamp(1.4rem, 1rem + 1.5vw, 2rem);
}

.wn-rev__sub {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--wn-ff-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 1.1rem + 0.7vw, 1.7rem);
  color: var(--wn-cream);
  margin-bottom: 0.7rem;
}

.wn-rev__ico {
  width: 46px;
  height: 46px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.wn-rev__ico .wn-ic {
  width: 24px;
  height: 24px;
}

.wn-rev__ico--teal {
  color: var(--wn-teal);
  background: rgba(106, 167, 189, 0.16);
}

.wn-rev__ico--emerald {
  color: var(--wn-emerald);
  background: rgba(121, 189, 154, 0.16);
}

.wn-rev__ico--amber {
  color: var(--wn-amber);
  background: rgba(227, 168, 87, 0.16);
}

.wn-rev__ico--rose {
  color: var(--wn-rose);
  background: rgba(212, 136, 160, 0.16);
}

.wn-rev__ico--gold {
  color: var(--wn-gold-lt);
  background: rgba(230, 200, 121, 0.16);
}

.wn-rev__sec p {
  font-size: clamp(1.05rem, 1rem + 0.25vw, 1.18rem);
  line-height: 1.7;
  color: var(--wn-parch);
}

.wn-rev__hl {
  color: var(--wn-gold-lt);
  font-weight: 600;
}

.wn-rev__lede {
  margin-top: 1rem;
  font-size: clamp(1.08rem, 1rem + 0.35vw, 1.25rem);
  line-height: 1.55;
  color: var(--wn-parch);
}

.wn-rev__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.wn-rev__list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: clamp(1.05rem, 1rem + 0.25vw, 1.18rem);
  color: var(--wn-parch);
}

.wn-rev__list .wn-ic {
  width: 21px;
  height: 21px;
  flex: none;
  color: var(--wn-emerald);
}

.wn-rev__body .wn-rev__sec:nth-of-type(1),
.wn-rev__body .wn-rev__sec:nth-of-type(4) {
  margin-block: clamp(1.8rem, 1.3rem + 2vw, 2.6rem);
}

.wn-rev__body .wn-rev__sec:nth-of-type(1) p,
.wn-rev__body .wn-rev__sec:nth-of-type(4) p {
  font-size: clamp(1.12rem, 1.04rem + 0.3vw, 1.3rem);
  line-height: 1.72;
}

.wn-rev__body .wn-rev__sec:nth-of-type(1) p::first-letter,
.wn-rev__body .wn-rev__sec:nth-of-type(4) p::first-letter {
  float: left;
  font-family: var(--wn-ff-display);
  font-weight: 600;
  font-size: 3.6em;
  line-height: 0.8;
  margin: 0.04em 0.14em 0 0;
  color: var(--wn-gold-lt);
}

.wn-rev__body .wn-rev__sec:nth-of-type(3) p {
  font-family: var(--wn-ff-display);
  font-style: italic;
  font-size: clamp(1.2rem, 1.08rem + 0.6vw, 1.5rem);
  line-height: 1.5;
  color: var(--wn-cream);
}

.wn-rev__body .wn-rev__sec:nth-of-type(5) p {
  font-weight: 600;
  font-size: clamp(1.1rem, 1.04rem + 0.3vw, 1.26rem);
  color: var(--wn-cream);
}

.wn-rev__div {
  display: block;
  height: 26px;
  width: auto;
  margin: clamp(1.4rem, 1rem + 1.5vw, 2rem) auto;
  opacity: 0.85;
}

.wn-rev__cta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: clamp(1.6rem, 1.2rem + 2vw, 2.4rem);
}

.wn-rev__note {
  font-size: 0.95rem;
  color: var(--wn-parch);
  max-width: 42ch;
}

@media (max-width: 860px) {
  .wn-rev__tabs {
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding-bottom: 0.5rem;
  }
  .wn-rev__tab {
    flex: 0 0 76%;
    scroll-snap-align: start;
  }
  .wn-rev__head {
    grid-template-columns: 1fr;
  }
}

.wn-view {
  background-color: var(--wn-dark);
  background-image: linear-gradient(120deg, rgba(20, 10, 14, 0.9) 0%, rgba(20, 10, 14, 0.66) 58%, rgba(20, 10, 14, 0.84) 100%), url(/assets/images/view-bg.webp);
  background-size: cover;
  background-position: center;
  padding-block: clamp(1.9rem, 1.4rem + 2.2vw, 3.2rem);
}

.wn-view__in {
  width: min(100% - var(--wn-gut) * 2, var(--wn-wrap));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.5fr 3px 1fr;
  gap: clamp(1.4rem, 1rem + 2.5vw, 3rem);
  align-items: center;
}

.wn-view__krow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}

.wn-view__krow .wn-sec__orn {
  height: 24px;
}

.wn-view__k {
  font-family: var(--wn-ff-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--wn-gold);
}

.wn-view__h {
  font-family: var(--wn-ff-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 1.2rem + 1.3vw, 2.2rem);
  line-height: 1.16;
  color: var(--wn-cream);
}

.wn-view__rule {
  align-self: stretch;
  width: 3px;
  border-radius: 999px;
  background: var(--wn-gold-dk);
}

.wn-view__aside {
  font-size: clamp(1.02rem, 1rem + 0.35vw, 1.18rem);
  line-height: 1.6;
  color: var(--wn-parch);
}

.wn-view__aside b {
  color: var(--wn-cream);
  font-weight: 600;
}

@media (max-width: 768px) {
  .wn-view__in {
    grid-template-columns: 1fr;
  }
  .wn-view__rule {
    display: none;
  }
}

.wn-feat {
  background: linear-gradient(180deg, var(--wn-dark), var(--wn-wine-dk));
  padding-block: clamp(2.6rem, 1.8rem + 3.5vw, 5rem);
  overflow: hidden;
}

.wn-feat .wn-sec {
  margin-bottom: clamp(1.8rem, 1.2rem + 2vw, 2.8rem);
}

.wn-feat__viewport {
  overflow: hidden;
}

.wn-feat__track {
  display: flex;
  gap: clamp(1rem, 0.5rem + 1.5vw, 1.8rem);
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.wn-feat__card {
  flex: 0 0 min(560px, 72vw);
  position: relative;
  height: 675px;
  border-radius: var(--wn-r-2xl);
  overflow: hidden;
  background: var(--wn-dark);
  border: 3px solid rgba(227, 209, 173, 0.22);
  transform-origin: center center;
  transform: scale(0.7);
  opacity: 0.45;
  cursor: pointer;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.55s ease, border-color 0.4s ease;
}

.wn-feat__card.is-active {
  transform: scale(1);
  opacity: 1;
  border-color: var(--wn-gold);
  cursor: default;
}

.wn-feat__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wn-feat__panel {
  position: absolute;
  left: clamp(0.8rem, 0.4rem + 1vw, 1.4rem);
  right: clamp(0.8rem, 0.4rem + 1vw, 1.4rem);
  bottom: clamp(0.8rem, 0.4rem + 1vw, 1.4rem);
  padding: clamp(1.1rem, 0.8rem + 1vw, 1.6rem);
  background: rgba(22, 11, 15, 0.62);
  backdrop-filter: blur(12px);
  border: 3px solid rgba(227, 209, 173, 0.25);
  border-radius: var(--wn-r-xl);
}

.wn-feat__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.wn-feat__name {
  font-family: var(--wn-ff-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 1.1rem + 1vw, 2rem);
  line-height: 1.1;
  color: var(--wn-cream);
}

.wn-feat__score {
  flex: none;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  font-family: var(--wn-ff-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--wn-ink);
  background: linear-gradient(140deg, #ffe6a0 0%, #e0b65c 55%, #c69a44 100%);
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(195, 165, 102, 0.5);
}

.wn-feat__loc {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.55rem;
  font-weight: 600;
  color: var(--wn-parch);
}

.wn-feat__loc .wn-ic {
  width: 17px;
  height: 17px;
  color: var(--wn-gold);
}

.wn-feat__adv {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.3rem;
}

.wn-feat__adv li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 1rem;
  color: var(--wn-parch);
}

.wn-feat__adv .wn-ic {
  width: 19px;
  height: 19px;
  flex: none;
  color: var(--wn-gold-lt);
}

.wn-feat__panel .wn-btn {
  margin-top: 1.1rem;
}

.wn-feat__ctrl {
  width: min(100% - var(--wn-gut) * 2, var(--wn-wrap));
  margin: clamp(1.5rem, 1rem + 1.5vw, 2.4rem) auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
}

.wn-feat__arrow {
  width: 54px;
  height: 54px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 3px solid rgba(227, 209, 173, 0.3);
  background: transparent;
  color: var(--wn-cream);
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.wn-feat__arrow:hover {
  border-color: var(--wn-gold);
  background: rgba(195, 165, 102, 0.12);
}

.wn-feat__arrow .wn-ic {
  width: 22px;
  height: 22px;
}

.wn-feat__arrow--prev .wn-ic {
  transform: scaleX(-1);
}

.wn-feat__count {
  font-family: var(--wn-ff-display);
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--wn-parch);
  min-width: 76px;
  text-align: center;
}

.wn-feat__count b {
  color: var(--wn-gold);
}

@media (max-width: 640px) {
  .wn-feat__card {
    height: 560px;
  }
  .wn-feat__adv {
    gap: 0.4rem 1rem;
  }
}
