/* ════════ STORY ════════ */
.story {
  background: #214944;
  padding: 6px 0 0px;
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 56px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items: center;
}

.story h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 58px;
  line-height: 1.02;
  margin-bottom: 26px;
}

.story p {
  font-size: 16px;
  line-height: 1.9;
  color: #d8e0d6;
  max-width: 520px;
  margin-bottom: 32px;
}

.video-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .32);
  aspect-ratio: 16/10.5;
  background: #1b2c22;
  cursor: pointer;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card .play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .86);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .25s;
}

.video-card:hover .play {
  transform: scale(1.08);
  background: #fff;
}

.video-card .play::before {
  content: "";
  border-left: 24px solid var(--green);
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  margin-left: 6px;
}

.video-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ════════ EXPERIENCES ════════ */
.exp {
  background: #214944;
  padding: 0px 0 35px;
  position: relative;
  overflow: hidden;
}

.exp .wrap {
  width: 100%;
  margin: 0px;
  padding: 0px;
}

.exp-grid {
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 0px;
  align-items: end;
}

.exp-cutout {
  position: relative;
  align-self: end;
}

.exp-cutout img {
  width: 500px;
  max-width: 430px;
  top: 125px;
  position: relative;
}

.exp-right h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 62px;
  line-height: 1.0;
  margin: 0 0 28px 40px;
}

.exp-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .3);
}

.exp-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.exp-card .cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px 14px 14px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 21px;
  line-height: 1.05;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, .72), rgba(0, 0, 0, 0));
}

.exp-actions {
  text-align: right;
  margin-top: 40px;
}

.exp-carousel .owl-dots {
  display: block;
  text-align: center;
  margin-top: 22px;
}

.exp-carousel .owl-dot {
  background: transparent;
  border: none;
  padding: 0;
  outline: none;
  cursor: pointer;
}

.exp-carousel .owl-dot span {
  width: 9px;
  height: 9px;
  background: rgba(243, 236, 224, .4);
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  transition: .3s;
}

.exp-carousel .owl-dot.active span {
  background: var(--gold);
  width: 24px;
  border-radius: 6px;
}

.exp-carousel {
  position: relative;
}

.exp-carousel .owl-nav {
  margin: 0;
  position: absolute;
  top: 50%;
  right: -24px;
  transform: translateY(-50%);
}

.exp-carousel .owl-nav button.owl-next {
  width: auto;
  height: auto;
  padding: 0 !important;
  background: transparent !important;
  color: rgba(243, 236, 224, .9) !important;
  font-size: 60px !important;
  line-height: 1;
  font-family: "Cormorant Garamond", serif;
  transition: .25s;
}

.exp-carousel .owl-nav button.owl-prev {
  display: none;
}

.exp-carousel .owl-nav button.owl-next:hover {
  background: transparent !important;
  color: var(--gold) !important;
  transform: scale(1.15);
}

/* ════════ ACCOMMODATION ════════ */
.acc {
  background: var(--cream);
  color: var(--green);
  padding: 60px 0 80px;
}

.acc-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
  padding: 0 24px;
}

.acc-head h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 64px;
  color: var(--green);
  line-height: 1;
  margin-bottom: 14px;
}

.acc-head p {
  font-size: 16px;
  color: #5d6b5f;
}

.acc-row {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 100px;
  display: flex;
  gap: 18px;
  align-items: stretch;
}

.acc-card {
  flex: 1 1 0;
  min-width: 0;
  height: 470px;
  background: #fffdf8;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .07);
  padding: 14px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  overflow: hidden;
  transition: flex .5s cubic-bezier(.4, .2, .2, 1), box-shadow .4s;
}

.acc-card:hover {
  flex: 2.6 1 0;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .14);
}

.acc-img {
  border-radius: 10px;
  overflow: hidden;
  flex: 1 1 auto;
  min-height: 0;
}

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

.acc-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 27px;
  color: var(--green);
  line-height: 1.12;
  margin: 16px 6px 0;
}

.acc-desc {
  font-size: 15px;
  color: #4b574d;
  line-height: 1.6;
  margin: 0 6px 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .5s ease, opacity .4s ease, margin .4s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.acc-card:hover .acc-desc {
  max-height: 80px;
  opacity: 1;
  margin-top: 10px;
}

.acc-arrow {
  align-self: flex-end;
  width: 42px;
  height: 42px;
  margin: 14px 6px 4px auto;
  border-radius: 50%;
  border: 1.5px solid var(--green);
  background: transparent;
  color: var(--green);
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(.7);
  transition: .35s;
  cursor: pointer;
}

.acc-card:hover .acc-arrow {
  opacity: 1;
  transform: scale(1);
}

.acc-arrow:hover {
  background: var(--green);
  color: var(--cream);
}

/* ════════ EXPERIENCES (ribbons + polaroid + text) ════════ */
.xp2 {
  background: #214944;
  padding: 70px 0 56px;
  position: relative;
}

.xp2-grid {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 44px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}

.xp2-cluster {
  position: relative;
  display: flex;
  align-items: center;
}

.ribbons {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1;
  transform: rotate(9deg);
  position: relative;
  top: -40px;
}

.ribbon {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 58px;
  padding: 0 70px 0 44px;
  background: var(--gold);
  border-radius: 8px 0 0 8px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 20px) 50%, 100% 100%, 0 100%);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .18);
}

.ribbon:nth-child(2) {
  margin-left: 6px;
}

.ribbon:nth-child(3) {
  margin-left: 16px;
}

.ribbon:nth-child(4) {
  margin-left: 10px;
}

.ribbon:nth-child(5) {
  margin-left: 2px;
}

.ribbon-ico {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .2);
}

.ribbon-ico svg,
.ribbon-ico img {
  width: 40px;
  height: 40px;
}

.ribbon-label {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 20px;
  color: #fffaf0;
  margin-left: 34px;
  white-space: nowrap;
}

.leaf {
  position: absolute;
  left: 30px;
  bottom: -60px;
  z-index: 0;
}

.polaroid {
  flex: 0 0 auto;
  width: 368px;
  max-width: 58%;
  margin-left: -56px;
  z-index: 3;
  border-radius: 4px;
}

.polaroid img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  display: block;
}

.xp2-text h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 74px;
  line-height: 1;
  color: var(--cream);
  margin-bottom: 24px;
}

.xp2-text p {
  font-size: 14px;
  line-height: 1.85;
  color: #d6ddd5;
  margin-bottom: 30px;
}

.xp2-text {
  position: relative;
  top: 20px;
}

.torn {
  line-height: 0;
}

.torn svg {
  width: 100%;
  height: 110px;
  display: block;
}


/* ════════ NATURE (tabs + scattered image grid) ════════ */
.nt {
  background: var(--cream);
  color: var(--green);
  padding: 60px 0 70px;
}

.nt-head {
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
  padding: 0 24px;
}

.nt-head h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 64px;
  color: var(--green);
  line-height: 1;
  margin-bottom: 14px;
}

.nt-head p {
  font-size: 16px;
  color: #5d6b5f;
}


/* ════════ RESPONSIVE ════════ */
@media (max-width: 980px) {
  .xp2-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  .xp2-cluster {
    flex-direction: column;
  }
  .ribbons {
    align-items: stretch;
  }
  .ribbon {
    margin-left: 0 !important;
  }
  .polaroid {
    margin-left: 0;
    transform: rotate(-4deg);
    width: 300px;
    max-width: 80%;
  }
  .polaroid img {
    height: 460px;
  }
  .xp2-text h2 {
    font-size: 56px;
  }
  .xp2-text .btn-gold {
    margin: 0 auto;
  }

}

@media (max-width: 900px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .story p {
    margin-left: auto;
    margin-right: auto;
  }
  .exp-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .exp-cutout {
    display: none;
  }
  .exp-right h2 {
    margin-left: 16px;
    font-size: 44px;
  }
  .acc-head h2 {
    font-size: 44px;
  }
  .acc-row {
    display: block;
    padding: 0 18px;
  }
  .acc-card {
    flex: none;
    width: auto;
    height: auto;
    margin-bottom: 20px;
  }
  .acc-card:hover {
    flex: none;
  }
  .acc-img img {
    height: 240px;
  }
  .acc-desc {
    max-height: none;
    opacity: 1;
    margin-top: 10px;
  }
  .acc-card:hover .acc-desc {
    max-height: none;
  }
  .acc-arrow {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 480px) {
  .xp2-text h2 {
    font-size: 44px;
  }
  .ribbon-label {
    font-size: 18px;
  }
  .story h2 {
    font-size: 38px;
  }
}

.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
    display: block !important;
}


