@charset "UTF-8";
/*Colors*/
/*header {
    background-color:rgba(245, 198, 93, 0.2);
}*/
:root {
  --header-height: 160px;
  --header-height-compact: 90px;
  --text: #1a1a1a;
  --bg: #FEF9EF;
  --accent: #8a6d4b;
  --border: #e5e1da;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
}

.site-header {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 32px;
  width: 100%;
  transition: transform 0.7s ease, height 0.3s ease;
  z-index: 999;
}
.site-header .nav-group a {
  color: #FFFFFF;
}

/* Pinned / compact state - applied once the header has scrolled out
   of its natural position. Hidden by default, slid into view via
   .is-visible when the user scrolls back up. */
.site-header.is-pinned {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--header-height-compact);
  transform: translateY(-100%);
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.site-header.is-pinned .nav-group a {
  color: var(--text);
}

.site-header.is-pinned.is-visible {
  transform: translateY(0);
}

/* Nav split into two halves, logo absolutely centered */
.nav-group {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  min-width: 0;
}

.nav-group--left {
  justify-content: flex-start;
}

.nav-group--right {
  justify-content: flex-end;
}

.nav-group a {
  color: var(--text);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.15s ease;
  font-family: "Outfit", sans-serif;
}

.nav-group a:hover,
.nav-group a:focus-visible {
  color: var(--accent);
}

.site-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  z-index: 2;
}

.site-logo a {
  display: block;
  line-height: 0;
}

.site-logo img {
  height: 120px;
  width: auto;
  display: block;
  transition: height 0.3s ease;
}

/* Horizontal logo is hidden by default - only shown in the pinned/compact state */
.site-logo .logo-horizontal {
  display: none;
}

.site-header.is-pinned .site-logo .logo-vertical {
  display: none;
}

.site-header.is-pinned .site-logo .logo-horizontal {
  display: block;
  height: 50px;
}

/* Fallback text logo styling, remove if using an image */
.site-logo .logo-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
}

/* Mobile toggle button */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 3;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.is-pinnned .nav-toggle span, .is-visible .nav-toggle span {
  background: #000000 !important;
}

.nav-toggle[aria-expanded=true] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero {
  background-image: url("images/relax.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 3rem;
  z-index: 100;
}
.hero .hero__line {
  overflow: hidden;
  margin: 0;
}
.hero .hero__letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.6em);
  transition: opacity 1.6s ease-out, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0s);
}
.hero .hero__line.is-revealed .hero__letter {
  opacity: 1;
  transform: translateY(0);
}
.hero h2.come {
  color: #FFFFFF;
  text-align: center;
  font-size: 2rem;
  font-family: "Outfit", sans-serif;
  margin: 0;
  padding: 0;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 0, 0, 0.4), 0 0 80px rgba(0, 0, 0, 0.3), 0 0 120px rgba(0, 0, 0, 0.2);
}
.hero h2.stay {
  color: #F5C65D;
  text-align: center;
  font-size: 5rem;
  font-family: "Newsreader", serif;
  margin: 0;
  padding: 0;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 0, 0, 0.4), 0 0 80px rgba(0, 0, 0, 0.3), 0 0 120px rgba(0, 0, 0, 0.2);
  /*font-style:italic;*/
}

.feature-row {
  align-items: stretch; /* default in Bootstrap, but explicit doesn't hurt */
}

.feature-row__col {
  display: flex; /* so the image can be told to fill the column's height */
}

.feature-row__image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills the box without distorting; crops as needed */
  display: none;
}

.feature-row__image--slant {
  --slant: 30%;
  clip-path: polygon(0 0, 100% 0, calc(100% - var(--slant)) 100%, 0 100%);
}

.intro-text {
  background-image: linear-gradient(rgb(11, 37, 56), rgba(11, 37, 56, 0.7)), url(images/ext.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  min-height: 60vh;
  display: flex;
  align-items: center; /* vertical centering */
  justify-content: center; /* horizontal, if you want that too */
}
.intro-text .copy {
  padding: 3rem;
}
.intro-text .logomark {
  max-width: 100px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.intro-text .image-col {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.intro-text .image-col img {
  max-width: 100%;
}
.intro-text p {
  font-family: "Newsreader", serif;
  color: #FFFFFF;
  font-size: 2rem;
  text-align: center;
  line-height: 3rem;
}
.intro-text p a {
  color: #F5C65D;
  text-decoration: none;
}

.dine-drink-explore {
  text-align: center;
  overflow: hidden;
}
.dine-drink-explore div {
  position: relative;
  background-size: 120% auto;
  background-repeat: no-repeat;
  height: 400px;
  transition: background-size 0.5s ease-in-out;
}
.dine-drink-explore div:hover {
  background-size: 130% auto;
}
.dine-drink-explore h3 {
  font-family: "Outfit", sans-serif;
  font-size: 4rem;
  position: absolute;
  bottom: 0;
  right: 20px;
  color: #FFFFFF;
}
.dine-drink-explore img {
  max-width: 100%;
}

.oval-image {
  width: 300px;
  height: 200px;
  clip-path: ellipse(50% 40% at 50% 50%);
  object-fit: cover;
}

.capsule-image {
  width: 100%;
  height: 420px;
  border-radius: 100px;
  object-fit: cover;
  transition: border-radius 1s ease-in-out;
}

.capsule-image:hover {
  border-radius: 0;
}

.mountain-mask {
  width: 400px;
  height: 300px;
  -webkit-mask-image: url("images/mountain.svg");
  mask-image: url("mountain.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  object-fit: cover;
}

.corner-cut {
  --cut-tl: 100px; /* top-left cut size */
  --cut-br: 76px; /* bottom-right cut size */
  width: 300px;
  height: 400px;
  object-fit: cover;
  clip-path: polygon(var(--cut-tl) 0, 100% 0, 100% calc(100% - var(--cut-br)), calc(100% - var(--cut-br)) 100%, 0 100%, 0 var(--cut-tl));
}

.corner-cutout {
  position: relative;
  display: inline-block; /* or block, depending on your layout */
}

.corner-cutout__image {
  display: block;
  width: 100%;
  object-fit: cover;
}

/*.corner-cutout__image {
  --cut: 170px;  size of the cut corner 

  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - var(--cut)),
    calc(100% - var(--cut)) 100%,
    0 100%
  );
}*/
.corner-cutout__text {
  position: absolute;
  bottom: 0;
  right: 0;
  width: var(--cut, 200px);
  height: var(--cut, 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 4rem;
  color: #FFFFFF;
  line-height: 1.2;
  padding: 0.5rem;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
}

.slant-mask {
  --slant: 30%; /* how far along the top edge the slant lands */
  clip-path: polygon(var(--slant) 0, 100% 0, 100% 100%, 0 100%);
}

.slant-mask-right {
  --slant: 30%; /* how far in from the right the slant lands on the bottom edge */
  clip-path: polygon(0 0, 100% 0, calc(100% - var(--slant)) 100%, 0 100%);
}

.split-feature {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  background: #efeee3;
}
.split-feature--light {
  background: #ffffff;
}
.split-feature--reverse .split-feature__content {
  order: 2;
}
.split-feature--reverse .split-feature__media {
  order: 1;
}
.split-feature__content {
  flex: 1 1 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px 6vw;
  order: 1;
}
.split-feature__content .cta-trio {
  border-bottom: 1px solid #ABB4A4;
  padding: 1.7rem 0;
}
.split-feature__content .cta-trio a {
  font-size: 3rem;
  font-family: "Outfit", sans-serif;
  text-decoration: none;
  color: #71827e;
  display: block;
  font-weight: 500;
}
.split-feature__content .cta-trio p {
  font-family: "Newsreader", serif;
  color: #0B2538;
}
.split-feature__content .cta-trio {
  position: relative;
  border-bottom: 2px solid rgba(0, 0, 0, 0.15); /* your default/inactive border */
}
.split-feature__content .cta-trio::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px; /* sits exactly on top of the real border; match border-width if you change it */
  height: 2px;
  background: #324D47; /* the "active" color */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.split-feature__content .cta-trio.is-active::after {
  transform: scaleX(1);
}
.split-feature__media {
  flex: 1 1 480px;
  order: 2;
  min-height: 420px;
}
@media (min-width: 900px) {
  .split-feature__media {
    min-height: 640px;
  }
}
.split-feature__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.split-feature__eyebrow {
  font-family: "Newsreader", serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a08c5c;
  margin: 0 0 1rem;
}
.split-feature__heading {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.15;
  color: #1b4332;
  margin: 0;
}
.split-feature__rule {
  width: 64px;
  height: 3px;
  background: #e8c13c;
  border: 0;
  margin: 1.75rem 0;
}
.split-feature__body {
  font-family: "Newsreader", serif;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #2b2b26;
  max-width: 46ch;
  margin: 2.25rem auto !important;
}
.split-feature__cta {
  align-self: flex-start;
  display: inline-block;
  font-family: "Newsreader", serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #a08c5c;
  text-decoration: none;
  border: 1px solid #a08c5c;
  padding: 1rem 2rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.split-feature__cta:hover, .split-feature__cta:focus-visible {
  background: #a08c5c;
  color: #ffffff;
}
.split-feature__cta:focus-visible {
  outline: 2px solid #1b4332;
  outline-offset: 3px;
}
@media (max-width: 899px) {
  .split-feature__content, .split-feature__media {
    order: initial;
    flex-basis: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .split-feature__cta {
    transition: none;
  }
}
.home-cta .split-feature__media {
  position: relative;
  overflow: hidden;
}
.home-cta .split-feature__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translateX(100%);
  z-index: 1;
}
.home-cta .split-feature__media.is-ready .split-feature__image {
  transition: transform 1.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.home-cta .split-feature__image.is-active {
  transform: translateX(0);
}
.home-cta .cta-trio__link.is-active {
  /* style however you want the active state to read — e.g. */
  color: #324D47;
}
@media (max-width: 899px) {
  .home-cta {
    display: flex;
    flex-direction: column;
  }
  .home-cta .split-feature__content,
.home-cta .split-feature__media {
    display: contents;
  }
  .home-cta .cta-trio {
    padding-left: 6vw;
    padding-right: 6vw;
  }
  .home-cta .split-feature__image {
    position: static;
    transform: none !important;
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
    margin-bottom: 1.5rem;
  }
  .home-cta .cta-trio:nth-of-type(1) {
    order: 1;
  }
  .home-cta .split-feature__image[data-key=dine] {
    order: 2;
  }
  .home-cta .cta-trio:nth-of-type(2) {
    order: 3;
  }
  .home-cta .split-feature__image[data-key=drink] {
    order: 4;
  }
  .home-cta .cta-trio:nth-of-type(3) {
    order: 5;
  }
  .home-cta .split-feature__image[data-key=explore] {
    order: 6;
  }
}

.testimonials {
  background-image: linear-gradient(rgb(11, 37, 56), rgba(11, 37, 56, 0.7)), url(images/ext.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  min-height: 700px;
  display: flex;
  align-items: center; /* Vertically center align */
  justify-content: center; /* Horizontally center align */
  color: #FFFFFF;
  font-family: "Newsreader", serif;
}
.testimonials h3 {
  color: gold;
  font-size: 1.3rem;
  text-transform: uppercase;
  display: block;
  letter-spacing: 0.2rem;
  padding-right: 3rem;
  font-family: "Outfit", sans-serif;
  font-weight: normal;
  text-align: right;
}
.testimonials p {
  width: 80%;
  font-style: italic;
  font-size: 1.3rem;
  margin-bottom: 2rem;
}
.testimonials .content {
  border-left: 1px solid #F5C65D;
  padding-left: 3rem;
}
.testimonials .cta {
  margin-top: 3rem;
}
.testimonials .cta a {
  padding: 0.8rem 1.3rem;
  border: 1px solid #FFFFFF;
  text-transform: uppercase;
  text-decoration: none;
  color: #FFFFFF;
  font-size: 0.8rem;
  letter-spacing: 0.2rem;
  transition: all 0.3s ease-in-out;
  font-family: "Outfit", sans-serif;
  font-style: normal;
}
.testimonials .cta a:hover {
  background: #F5C65D;
  color: #FFFFFF;
}

:root {
  --reviews-accent: #c8102e;
  --reviews-text: #3c4258;
  --reviews-text-muted: #6b7280;
  --reviews-star: #c8102e;
  --reviews-gap: 2.5rem;
}

* {
  box-sizing: border-box;
}

.reviews {
  max-width: 1400px;
  padding-top: 3rem;
  margin: 0 auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.reviews h2 {
  text-align: center;
  color: #324D47;
  font-family: "Outfit", sans-serif;
  font-size: 3rem;
}

.reviews__header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2rem;
}

.reviews__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--reviews-accent);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.9rem 1.6rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.reviews__cta svg {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--reviews-gap);
}

@media (max-width: 992px) {
  .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .reviews__grid {
    grid-template-columns: 1fr;
  }
  .reviews__header {
    justify-content: center;
  }
}
.review-card {
  display: flex;
  flex-direction: column;
}

.review-card__head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}

.review-card__avatar {
  position: relative;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
}

.review-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.review-card__badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f5a623;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-card__badge svg {
  width: 10px;
  height: 10px;
  fill: #fff;
}

.review-card__identity {
  min-width: 0;
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.6rem;
}

.review-card__meta {
  min-width: 0;
}

.review-card__name {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1f2430;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-card__time {
  margin: 0.15rem 0 0;
  font-size: 0.9rem;
  color: var(--reviews-text-muted);
}

.review-card__source {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 0.2rem;
}

.review-card__stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.9rem;
}

.review-card__stars svg {
  width: 22px;
  height: 22px;
  fill: var(--reviews-star);
}

.review-card__text {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--reviews-text);
}

.review-card__more {
  color: var(--reviews-text-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--reviews-accent);
}

/* Avatar background colors, keyed to initial - swap per real reviewer data */
.review-card__avatar--brown {
  background: #4a3428;
}

.review-card__avatar--red {
  background: #b5432b;
}

.review-card__avatar--teal {
  background: #1f7a6c;
}

footer {
  background-image: url("images/Mountains.png");
  background-position: bottom;
  background-size: 100% auto;
  background-repeat: no-repeat;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #FFFFFF;
  font-family: "Newsreader", serif;
}
footer nav {
  text-align: center;
  padding-bottom: 3rem;
}
footer nav a {
  color: #FFFFFF;
  font-family: "Newsreader", serif;
  text-decoration: none;
  margin: 0 2rem;
}
footer p {
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 860px) {
  .site-header {
    justify-content: space-between;
    padding: 0 20px;
  }
  .nav-toggle {
    display: block;
  }
  .nav-group {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.25s ease, opacity 0.2s ease;
    flex: none;
    width: 100%;
  }
  .nav-group.is-open {
    max-height: 400px;
    opacity: 1;
  }
  .nav-group a {
    width: 100%;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    color: #000000 !important;
  }
  .nav-group--right {
    top: calc(var(--header-height) + 208px); /* stacks below left group; adjust if item counts change */
  }
  /*.site-logo img {
    height: 34px;
  }*/
  .site-header.is-pinned .nav-group {
    top: var(--header-height-compact);
  }
  .site-header.is-pinned .nav-group--right {
    top: calc(var(--header-height-compact) + 208px);
  }
  .hero h2.stay {
    font-size: 2.7rem;
  }
}

/*# sourceMappingURL=style.css.map */
