/* NS Comfort Premium Rooms — Intixus booking hero & layout */

:root {
  --hotel-accent: #16a34a;
  --hotel-accent-dark: #15803d;
  --hotel-ink: #111827;
  --hotel-muted: #6b7280;
  --hotel-bg: #f3f4f6;
  --hotel-card: #ffffff;
}

.site-header--hotel .brand-text {
  max-width: min(10.5rem, 34vw);
  font-size: clamp(0.72rem, 1.15vw, 0.92rem);
  line-height: 1.2;
}

.site-header--hotel {
  background: #fff;
}

.site-header--hotel .header-inner {
  width: min(96%, 1280px);
}

.site-header--hotel .nav-wrap {
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 8px 0;
}

.site-header--hotel .brand {
  align-items: center;
  gap: 10px;
}

.site-header--hotel .brand-logo {
  height: 42px !important;
  width: auto !important;
  mix-blend-mode: multiply;
  background: transparent;
}

.site-header--hotel .business-toggle {
  align-self: center;
  flex-shrink: 0;
}

.site-header--hotel .header-start,
.site-header--hotel .header-end {
  display: flex;
  align-items: center;
}

@media (min-width: 980px) {
  .site-header--hotel .nav {
    display: flex !important;
    align-items: center;
    flex: 1;
    justify-content: center;
    gap: 4px;
  }

  .site-header--hotel .nav a {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.88rem;
  }
}

/* ——— Intixus hero block ——— */
.hotel-ix-hero {
  padding: 28px 0 36px;
  background: var(--hotel-bg);
}

.hotel-ix-hero__title {
  margin: 0 0 18px;
  font-family: "Sora", "Manrope", system-ui, sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--hotel-ink);
}

.hotel-ix-card {
  background: var(--hotel-card);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.hotel-ix-card__top {
  display: grid;
  gap: 0;
}

@media (min-width: 900px) {
  .hotel-ix-card__top {
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, 1fr);
  }
}

/* Gallery */
.hotel-ix-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 8px;
  padding: 12px;
  min-height: 280px;
  background: #f9fafb;
}

.hotel-ix-gallery__main,
.hotel-ix-gallery__stack {
  border-radius: 12px;
  overflow: hidden;
}

.hotel-ix-gallery__main img,
.hotel-ix-gallery__stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hotel-ix-gallery__main {
  min-height: 240px;
}

.hotel-ix-gallery__stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
}

.hotel-ix-gallery__stack img {
  min-height: 116px;
}

/* Info panel */
.hotel-ix-info {
  padding: 20px 22px 18px;
  border-top: 1px solid #eef0f3;
}

@media (min-width: 900px) {
  .hotel-ix-info {
    border-top: 0;
    border-left: 1px solid #eef0f3;
  }
}

.hotel-ix-info__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.hotel-ix-location {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  line-height: 1.35;
}

.hotel-ix-location strong {
  display: block;
  color: var(--hotel-ink);
  font-weight: 700;
}

.hotel-ix-location span {
  color: var(--hotel-muted);
  font-size: 0.82rem;
}

.hotel-ix-rating {
  text-align: right;
}

.hotel-ix-rating__score {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--hotel-ink);
}

.hotel-ix-rating__reviews {
  display: block;
  margin-top: 2px;
  font-size: 0.78rem;
  color: var(--hotel-muted);
}

.hotel-ix-info__heading {
  margin: 0 0 12px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--hotel-ink);
}

.hotel-ix-facility-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
}

.hotel-ix-facility-card {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 10px 11px;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hotel-ix-facility-card:hover {
  border-color: rgba(16, 185, 129, 0.22);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.08);
  transform: translateY(-1px);
}

.hotel-ix-facility-card__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #047857;
  background: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 100%);
  border: 1px solid rgba(16, 185, 129, 0.16);
}

.hotel-ix-facility-card__icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.hotel-ix-facility-card__label {
  font-size: 0.76rem;
  line-height: 1.35;
  font-weight: 600;
  color: #374151;
}

.hotel-ix-facilities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hotel-ix-facilities li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: #374151;
  line-height: 1.35;
}

.hotel-ix-facilities__icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #047857;
  border-radius: 10px;
  background: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 100%);
  border: 1px solid rgba(16, 185, 129, 0.18);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.hotel-ix-facilities__icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.hotel-ix-facilities__label {
  flex: 1;
  min-width: 0;
}

.ix-facility-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ix-facility-group li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.88rem;
  color: #57534e;
}

.ix-facility-group .hotel-ix-facilities__icon {
  width: 28px;
  height: 28px;
}

.ix-facility-group .hotel-ix-facilities__icon svg {
  width: 17px;
  height: 17px;
}

.hotel-ix-info__more {
  display: inline-block;
  margin-top: 14px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--hotel-accent-dark);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
}

.hotel-facilities-section {
  display: grid;
  gap: 36px;
}

#facilities {
  scroll-margin-top: 88px;
}

#facilities .hotel-section__head {
  text-align: center;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.hotel-facilities-group {
  display: grid;
  gap: 16px;
}

.hotel-facilities-group__title {
  margin: 0;
  padding-bottom: 10px;
  font-family: "Sora", "Manrope", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--hotel-ink);
  border-bottom: 2px solid rgba(16, 185, 129, 0.15);
}

.hotel-facilities-group__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.hotel-facility-square {
  height: 100%;
  min-height: 176px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  padding: 18px 16px 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hotel-facility-square:hover {
  border-color: rgba(16, 185, 129, 0.28);
  box-shadow: 0 10px 24px rgba(16, 185, 129, 0.1);
  transform: translateY(-2px);
}

.hotel-facility-square__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hotel-facility-square__icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 14px;
  color: #047857;
  background: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 100%);
  border: 1px solid rgba(16, 185, 129, 0.18);
}

.hotel-facility-square__icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.hotel-facility-square__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  text-align: center;
}

.hotel-facility-square__title {
  margin: 0;
  width: 100%;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--hotel-ink);
}

.hotel-facility-square__desc {
  margin: 0;
  width: 100%;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--hotel-muted);
}

.hotel-section__intro {
  margin: -4px 0 0;
  max-width: 42rem;
  color: var(--hotel-muted);
  line-height: 1.6;
}


/* Rooms list section */
.hotel-booking-layout {
  padding: 8px 0 110px;
  background: var(--hotel-bg);
}

.hotel-section {
  padding: 56px 0;
  background: #fff;
}

.hotel-section--soft {
  background: var(--hotel-bg);
}

.hotel-section__head {
  margin-bottom: 24px;
}

.hotel-section__head h2 {
  margin: 0 0 10px;
  font-family: "Sora", "Manrope", system-ui, sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  color: var(--hotel-ink);
}

.hotel-section__head--center {
  text-align: center;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.hotel-section__head--center .hotel-section__intro {
  margin-top: 0;
}

.hotel-about__text {
  margin: 0;
  color: var(--hotel-muted);
  line-height: 1.7;
  max-width: 68rem;
}

.hotel-about__more {
  margin-top: 12px;
  color: var(--hotel-muted);
  line-height: 1.7;
}

.hotel-about__toggle {
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--hotel-accent-dark);
  font-weight: 700;
  cursor: pointer;
}

.hotel-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

@media (min-width: 768px) {
  .hotel-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.hotel-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
}

.hotel-policies {
  max-width: 920px;
  margin: 0 auto;
}

.hotel-policies-panel {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
}

.hotel-policy-row {
  display: grid;
  grid-template-columns: minmax(200px, 260px) minmax(0, 1fr);
  gap: 20px 28px;
  align-items: start;
  padding: 22px 26px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.hotel-policy-row:last-child {
  border-bottom: 0;
}

.hotel-policy-row:nth-child(even) {
  background: rgba(248, 250, 252, 0.65);
}

.hotel-policy-row__label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hotel-policy-row__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #047857;
}

.hotel-policy-row__icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.hotel-policy-row__title {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--hotel-ink);
}

.hotel-policy-row__content {
  display: grid;
  gap: 8px;
}

.hotel-policy-row__content p {
  position: relative;
  margin: 0;
  padding-left: 18px;
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--hotel-muted);
}

.hotel-policy-row__content p::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #10b981;
  font-weight: 700;
}

#policies {
  scroll-margin-top: 88px;
}

.hotel-contact-layout {
  display: grid;
  gap: 20px;
  align-items: stretch;
}

@media (min-width: 960px) {
  .hotel-contact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 24px;
  }
}

.hotel-contact-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.05);
}

.hotel-contact-panel__eyebrow {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #059669;
}

.hotel-contact-methods {
  display: grid;
  gap: 12px;
}

.hotel-contact-method {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #fafafa;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hotel-contact-method:hover {
  border-color: rgba(5, 150, 105, 0.35);
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.08);
  transform: translateY(-1px);
}

.hotel-contact-method--whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.4);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.1);
}

.hotel-contact-method__icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #047857;
  background: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 100%);
  border: 1px solid rgba(16, 185, 129, 0.16);
}

.hotel-contact-method--whatsapp .hotel-contact-method__icon {
  color: #15803d;
  background: linear-gradient(145deg, #f0fdf4 0%, #dcfce7 100%);
}

.hotel-contact-method__icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.hotel-contact-method__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.hotel-contact-method__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b7280;
}

.hotel-contact-method__value {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--hotel-ink);
  line-height: 1.35;
}

.hotel-contact-method__cta {
  padding: 8px 12px;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.hotel-contact-method--whatsapp .hotel-contact-method__cta {
  background: #16a34a;
}

.hotel-contact-address {
  padding-top: 6px;
  border-top: 1px solid #eef0f3;
}

.hotel-contact-address__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.hotel-contact-address__icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #047857;
}

.hotel-contact-address__icon svg {
  width: 22px;
  height: 22px;
}

.hotel-contact-address h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--hotel-ink);
}

.hotel-contact-address p {
  margin: 0 0 12px;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--hotel-muted);
}

.hotel-contact-directions {
  display: inline-flex;
  align-items: center;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--hotel-accent-dark);
  text-decoration: none;
}

.hotel-contact-directions:hover {
  text-decoration: underline;
}

.hotel-contact-map-wrap {
  min-height: 320px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.05);
  background: #e5e7eb;
}

.hotel-contact-map {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

#contact {
  scroll-margin-top: 88px;
}

.hotel-footer {
  padding: 22px 0 28px;
  border-top: 1px solid rgba(22, 163, 74, 0.12);
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  color: #64748b;
  font-size: 0.875rem;
}

.hotel-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  justify-content: space-between;
}

.hotel-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.hotel-footer__copy {
  margin: 0;
  font-weight: 600;
  color: #334155;
  letter-spacing: -0.01em;
}

.hotel-footer__rights {
  margin: 0;
  font-size: 0.78rem;
  color: #94a3b8;
}

.hotel-footer a {
  text-decoration: none;
}

.hotel-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.hotel-footer .ix-powered {
  display: inline;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #64748b;
}

.hotel-footer .ix-powered a {
  color: #4f46e5;
  font-weight: 700;
  text-decoration: none;
}

.hotel-footer .ix-powered a:hover {
  color: #4338ca;
  text-decoration: underline;
}

@media (max-width: 640px) {
  .hotel-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

body.hotel-no-sticky {
  padding-bottom: 0;
}

@media (max-width: 899px) {
  .hotel-ix-gallery {
    grid-template-columns: 1fr;
  }

  .hotel-ix-gallery__stack {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }
}

@media (max-width: 1024px) {
  .hotel-facilities-group__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .hotel-policy-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px 16px;
  }

  .hotel-facilities-group__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .hotel-facility-square {
    min-height: 168px;
    padding: 16px 14px 14px;
  }
}

@media (max-width: 560px) {
  .hotel-contact-method {
    grid-template-columns: auto 1fr;
  }

  .hotel-contact-method__cta {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .hotel-contact-map-wrap,
  .hotel-contact-map {
    min-height: 260px;
  }

  .hotel-ix-facility-cards {
    grid-template-columns: 1fr;
  }

  .hotel-facilities-group__grid {
    grid-template-columns: 1fr;
  }

  .hotel-facility-square {
    min-height: auto;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
  }

  .hotel-facility-square__icon-wrap {
    flex-shrink: 0;
  }

  .hotel-facility-square__icon {
    width: 44px;
    height: 44px;
  }

  .hotel-facility-square__body {
    align-items: flex-start;
    text-align: left;
    gap: 4px;
  }

  .hotel-ix-facilities {
    grid-template-columns: 1fr;
  }

  .hotel-ix-rating {
    text-align: left;
  }
}
