.official-hotel-home {
  --home-ink: #111827;
  --home-muted: #64748b;
  --home-gold: #b7791f;
  --home-surface: #f7f4ee;
}

.official-hotel-home .room-type-carousel {
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
}

.home-section {
  scroll-margin-top: 88px;
}

.home-booking-panel {
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: minmax(170px, 0.65fr) minmax(0, 3fr);
  gap: 22px;
  margin: -78px 28px 0;
  padding: 22px;
  scroll-margin-top: 88px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  background-color: rgba(255, 255, 255, 0.97);
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.2);
  backdrop-filter: blur(14px);
}

.home-booking-panel-heading {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-right: 18px;
  border-right: 1px solid #e5e7eb;
}

.home-booking-panel-heading span {
  color: var(--home-gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-booking-panel-heading strong {
  margin-top: 0.25rem;
  color: var(--home-ink);
  font-size: 1.2rem;
}

.home-booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1.25fr)) repeat(2, minmax(90px, 0.65fr)) minmax(170px, 0.9fr);
  align-items: end;
  gap: 12px;
}

.home-booking-field label {
  display: block;
  margin-bottom: 0.35rem;
  color: #475569;
  font-size: 0.75rem;
  font-weight: 750;
}

.home-booking-field .form-control {
  min-height: 46px;
  border-color: #dbe3ec;
  background-color: #f8fafc;
}

.home-booking-submit {
  min-height: 46px;
  white-space: nowrap;
}

.home-direct-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 24px;
  padding: 0 34px;
}

.home-direct-benefits div {
  padding: 18px 24px;
  border-right: 1px solid #dbe3ec;
  text-align: center;
}

.home-direct-benefits div:last-child {
  border-right: 0;
}

.home-direct-benefits strong,
.home-direct-benefits span {
  display: block;
}

.home-direct-benefits strong {
  margin-bottom: 0.25rem;
  color: var(--home-ink);
  font-size: 0.9rem;
}

.home-direct-benefits span {
  color: var(--home-muted);
  font-size: 0.78rem;
}

.home-section-eyebrow {
  margin-bottom: 0.55rem;
  color: var(--home-gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-section-title {
  margin-bottom: 0.65rem;
  color: var(--home-ink);
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  font-weight: 800;
  line-height: 1.16;
}

.official-hotel-home .boutique-services {
  padding: clamp(24px, 4vw, 44px);
  border: 0;
  border-radius: 16px;
  background-color: var(--home-surface);
}

.home-service-card {
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.home-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
}

.home-service-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background-color: #e5e7eb;
}

.home-service-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(15, 23, 42, 0.5));
  pointer-events: none;
}

.home-service-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.home-service-card:hover .home-service-image img {
  transform: scale(1.04);
}

.home-service-card .service-number {
  position: absolute;
  z-index: 1;
  bottom: 12px;
  left: 14px;
  margin: 0;
  color: #ffffff;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-shadow: 0 1px 8px rgba(15, 23, 42, 0.5);
}

.home-service-content {
  padding: 22px;
}

.home-service-card h3 {
  margin-bottom: 0.65rem;
  color: var(--home-ink);
  font-size: 1.1rem;
  font-weight: 800;
}

.home-experience {
  overflow: hidden;
  border-radius: 16px;
  background-color: #ffffff;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.1);
}

.home-experience-image,
.home-experience-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
}

.home-experience-image img {
  display: block;
  object-fit: cover;
}

.home-experience-content {
  padding: clamp(30px, 6vw, 68px);
}

.home-experience-content > p {
  font-size: 1.02rem;
  line-height: 1.8;
}

.home-experience-list {
  display: grid;
  gap: 0;
  margin-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.home-experience-list div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid #e5e7eb;
}

.home-experience-list strong {
  color: var(--home-gold);
}

.home-experience-list span {
  color: var(--home-muted);
}

.home-offer-card {
  height: 100%;
  overflow: hidden;
  border-radius: 14px;
  background-color: #ffffff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.15);
}

.home-offer-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.home-offer-content {
  padding: 24px;
}

.home-offer-content > span {
  color: var(--home-gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-offer-content h3 {
  margin: 0.55rem 0 0.65rem;
  color: var(--home-ink);
  font-size: 1.35rem;
  font-weight: 800;
}

.home-offer-content p {
  min-height: 72px;
  color: var(--home-muted);
  line-height: 1.65;
}

.home-offer-content a {
  color: var(--home-ink);
  font-weight: 800;
  text-underline-offset: 4px;
}

.home-gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: repeat(2, 230px);
  gap: 14px;
}

.home-gallery-item {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  background-color: #e5e7eb;
}

.home-gallery-featured {
  grid-row: span 2;
}

.home-gallery-wide {
  grid-column: span 2;
}

.home-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.home-gallery-item:hover img {
  transform: scale(1.04);
}

.home-gallery-item figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 42px 18px 16px;
  color: #ffffff;
  background: linear-gradient(transparent, rgba(15, 23, 42, 0.78));
  font-weight: 700;
}

.home-review-card {
  height: 100%;
  margin: 0;
  padding: 28px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background-color: #ffffff;
}

.home-review-stars {
  margin-bottom: 1rem;
  color: #d59b2d;
  letter-spacing: 0.14em;
}

.home-review-card p {
  color: #334155;
  font-size: 1.05rem;
  line-height: 1.75;
}

.home-review-card footer {
  color: var(--home-muted);
  font-size: 0.875rem;
  font-weight: 700;
}

.home-contact {
  scroll-margin-top: 88px;
  padding: clamp(30px, 5vw, 56px);
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(100deg, rgba(10, 17, 31, 0.96), rgba(10, 17, 31, 0.72)),
    url("../images/home/hero-hotel.jpg") center / cover;
}

.home-contact .home-section-eyebrow {
  color: #f3d27a;
}

.home-contact p {
  max-width: 760px;
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.home-contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.home-contact-details a,
.home-contact-details span {
  color: #ffffff;
  font-weight: 650;
  text-decoration: none;
}

@media (max-width: 991.98px) {
  .home-booking-panel {
    grid-template-columns: 1fr;
    margin: -54px 18px 0;
  }

  .home-booking-panel-heading {
    padding: 0 0 12px;
    border-right: 0;
    border-bottom: 1px solid #e5e7eb;
  }

  .home-booking-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-booking-submit {
    grid-column: span 2;
  }

  .home-experience-image,
  .home-experience-image img {
    min-height: 380px;
  }

  .home-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 230px);
  }

  .home-gallery-featured {
    grid-column: span 2;
    grid-row: auto;
  }
}

@media (max-width: 575.98px) {
  .official-hotel-home .room-type-carousel,
  .official-hotel-home .boutique-services,
  .home-experience,
  .home-offer-card,
  .home-gallery-item,
  .home-review-card,
  .home-contact {
    border-radius: 10px;
  }

  .home-experience-list div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .home-booking-panel {
    margin: -34px 8px 0;
    padding: 18px;
  }

  .home-booking-form {
    grid-template-columns: 1fr 1fr;
  }

  .home-booking-field:not(.home-booking-guests) {
    grid-column: span 2;
  }

  .home-direct-benefits {
    grid-template-columns: 1fr;
    padding: 0 12px;
  }

  .home-direct-benefits div {
    border-right: 0;
    border-bottom: 1px solid #dbe3ec;
  }

  .home-direct-benefits div:last-child {
    border-bottom: 0;
  }

  .home-offer-content p {
    min-height: 0;
  }

  .home-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 220px);
  }

  .home-gallery-featured {
    grid-column: auto;
  }

  .home-gallery-wide {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-service-card,
  .home-offer-card,
  .home-gallery-item img,
  .home-service-image img {
    transition: none;
  }
}

.js-reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js-reveal-ready [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
