.amenities {
  padding: 0 0 150px;
}

.amenity-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.amenity-viewport {
  overflow: hidden;
  flex: 1;
}

.amenity-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}

.amenity-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(28,26,22,0.07);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.amenity-card:hover {
  box-shadow: 0 28px 60px rgba(28,26,22,0.14);
  transform: translateY(-8px);
}

.amenity-img {
  position: relative;
  aspect-ratio: 3/4;
  min-height: 480px;
  overflow: hidden;
}

.amenity-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.amenity-card:hover .amenity-img img {
  transform: scale(1.1);
}

.amenity-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(10,8,6,0.6) 65%, rgba(10,8,6,0.94) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px 36px;
  color: #fff;
  transition: background 0.45s ease;
}

.amenity-card:hover .amenity-overlay {
  background: linear-gradient(180deg, transparent 5%, rgba(10,8,6,0.72) 45%, rgba(10,8,6,0.97) 100%);
}

.amenity-overlay h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 28px;
  margin-bottom: 6px;
}

.amenity-overlay .amenity-tag {
  display: inline-block;
  color: var(--gold-mid);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.amenity-overlay p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
  max-width: 300px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(12px);
  transition: max-height 0.45s ease, opacity 0.4s ease 0.05s, transform 0.4s ease 0.05s;
}

.amenity-card:hover .amenity-overlay p {
  max-height: 100px;
  opacity: 1;
  transform: translateY(0);
}

.amenity-nav {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(28,26,22,0.14);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 8px 22px rgba(28,26,22,0.07);
  transition: all 0.3s ease;
}

.amenity-nav svg {
  width: 20px;
  height: 20px;
}

.amenity-nav:hover:not(:disabled) {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  transform: scale(1.06);
}

.amenity-nav:disabled {
  opacity: 0.25;
  cursor: default;
}

@media (max-width: 900px) {
  .amenity-card { flex: 0 0 100%; }
  .amenity-img { min-height: 400px; }
}

@media (max-width: 600px) {
  .amenity-carousel { gap: 10px; }
  .amenity-img { min-height: 360px; }
  .amenity-nav { width: 42px; height: 42px; }
  .amenity-overlay { padding: 24px 20px 28px; }
  .amenity-overlay h3 { font-size: 24px; }
}

.experience {
  background: var(--ink);
  color: var(--cream);
  padding: 150px 0;
}

.experience-layout {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 70px;
  align-items: center;
}

@media (max-width: 980px) {
  .experience-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.experience-text h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(34px, 4.2vw, 48px);
  margin-bottom: 22px;
}

.experience-text > p {
  font-size: 15.5px;
  color: rgba(247,244,238,0.65);
  max-width: 340px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.experience-list li {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(247,244,238,0.12);
  font-family: var(--display);
  font-size: 19px;
  cursor: pointer;
  transition: padding-left 0.3s ease, color 0.3s ease;
}

.experience-list li:hover,
.experience-list li.active {
  padding-left: 10px;
  color: var(--gold);
}

.experience-list li:first-child {
  border-top: 1px solid rgba(247,244,238,0.12);
}

.experience-list span {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.experience-visual {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  min-height: 560px;
}

.exp-main-wrap,
.exp-side-wrap {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(0,0,0,0.3);
}

.exp-main-wrap {
  min-height: 560px;
}

.exp-side-wrap {
  min-height: 400px;
  margin-top: 70px;
}

.experience-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 0.7s ease;
}

.experience-visual img.fade {
  opacity: 0;
  transform: scale(0.97);
}

@media (max-width: 980px) {
  .experience-visual {
    min-height: auto;
    grid-template-columns: 1fr 1fr;
  }
  .exp-main-wrap,
  .exp-side-wrap {
    min-height: 340px;
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  .experience-visual {
    grid-template-columns: 1fr;
  }
  .exp-main-wrap,
  .exp-side-wrap {
    min-height: 300px;
  }
}

.features {
  padding: 140px 0;
  background: var(--cream);
}

.features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 980px) {
  .features-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .features-row {
    grid-template-columns: 1fr;
  }
}

.feature-item {
  background: #fff;
  padding: 36px 28px 40px;
  border-radius: 6px;
  border: 1px solid rgba(28,26,22,0.04);
  box-shadow: 0 12px 36px rgba(28,26,22,0.04);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(28,26,22,0.09);
}

.feature-num {
  font-family: var(--display);
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 16px;
}

.feature-item h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 12px;
  line-height: 1.25;
}

.feature-item p {
  font-size: 14.5px;
  color: rgba(28,26,22,0.6);
  line-height: 1.65;
}

.gallery {
  padding: 0 0 150px;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 50px;
}

.gallery-filter {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(28,26,22,0.5);
  background: transparent;
  border: 1px solid rgba(28,26,22,0.14);
  border-radius: 100px;
  padding: 11px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-filter:hover {
  color: var(--ink);
  border-color: rgba(28,26,22,0.3);
}

.gallery-filter.active {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 8px 22px rgba(28,26,22,0.15);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  cursor: pointer;
  display: none;
  aspect-ratio: 3/4;
  background: #f0ebe3;
}

.gallery-item.visible {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(16,12,8,0.3) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 0 solid rgba(255,255,255,0.4);
  transition: border-width 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.gallery-item:hover::before {
  border-width: 5px;
}

@media (max-width: 1000px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 760px) {
  .gallery-filters {
    gap: 8px;
    margin-bottom: 36px;
  }
  .gallery-filter {
    font-size: 11px;
    padding: 10px 15px;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}