/* ════════ STORY ════════ */
.story {
  background: #214944;
  padding: 6px 0 70px;
  position: relative;
  top: -5px;
}

.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;
  color: #fff;
  text-align: center;
}

.story p {
  font-size: 16px;
  line-height: 1.9;
  color: #d8e0d6;
  max-width: 100%;
  margin-bottom: 32px;
  text-align: center;
}

.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;
  transition: transform 1.1s cubic-bezier(.22, 1, .36, 1);
}

.video-card:hover img {
  transform: scale(1.05);
}

.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;
  animation: aboutPulse 2.2s ease-out infinite;
}

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

.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;
}

@keyframes aboutPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .55);
  }
  70% {
    box-shadow: 0 0 0 26px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* ════════ 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 30px;
  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;
  transition: transform 1.1s cubic-bezier(.22, 1, .36, 1);
}

.acc-card:hover .acc-img img {
  transform: scale(1.06);
}

.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: 10px 6px 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .5s ease, opacity .4s ease, margin .4s;
}

.acc-card:hover .acc-desc {
  max-height: 170px;
  opacity: 1;
}

.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);
}

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

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

.acc-row .owl-dot span {
  width: 9px;
  height: 9px;
  background: rgba(46, 77, 61, .3);
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  transition: .3s;
}

.acc-row .owl-dot.active span {
  background: var(--green);
  width: 24px;
  border-radius: 6px;
}

@media (min-width: 901px) {
  .acc-card {
    flex: 1 1 0 !important;
    will-change: flex-grow;
    transition: flex-grow .7s cubic-bezier(.22, 1, .36, 1), box-shadow .45s ease !important;
  }
  .acc-card:hover {
    flex-grow: 2.6 !important;
  }
  .acc-desc {
    transition: max-height .7s cubic-bezier(.22, 1, .36, 1), opacity .5s ease .12s, margin .5s ease !important;
  }
}

@media (max-width: 900px) {
  .story-grid {
    display: block;
  }
  .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);
  }
}
