/* ============================================================
   AURELIA — Boutique Hotel & Spa
   Editorial luxury template
   Desenvolvido por O Alfaiate do Algoritmo
   ============================================================ */

/* ---------- 0. ROOT VARIABLES ---------- */
:root {
  --gold: #bda87e;
  --gold-2: #b8956a;
  --black: #1f1d1b;
  --cream: #f5f1ea;
  --grey: #666666;
  --white: #ffffff;
  --star: #e3b873;

  --font-serif: "Gilda Display", serif;
  --font-sans: "Barlow", sans-serif;

  --transition: 0.4s ease;
}

/* ---------- 1. RESET & BASE ---------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.8;
  color: var(--grey);
  background: var(--white);
  margin: 0;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--black);
  letter-spacing: 1px;
  margin: 0 0 18px;
  line-height: 1.25;
}

p {
  margin: 0 0 18px;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
  cursor: pointer;
}
a:hover {
  color: var(--gold-2);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  font-family: var(--font-sans);
}

::selection {
  background: var(--gold);
  color: var(--white);
}

/* ---------- 2. HELPERS ---------- */
.section-padding {
  padding: 120px 0;
}
.bg-cream {
  background: var(--cream);
}
.bg-black {
  background: var(--black);
}
.text-white {
  color: var(--white) !important;
}

.kicker {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.section-title {
  font-size: 48px;
  line-height: 1.15;
  letter-spacing: 1px;
  margin-bottom: 28px;
}

.gold-line {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 6px 0 12px;
}

/* ---------- 3. BUTTONS ---------- */
.btn-gold,
.btn-outline-gold {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 0;
  transition: all var(--transition);
  border: 2px solid var(--gold);
  cursor: pointer;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.btn-outline-gold {
  background: transparent;
  color: var(--white);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}

/* ---------- 4. NAVBAR ---------- */
.site-header {
  position: relative;
}

.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  background: transparent;
  transition:
    background var(--transition),
    padding var(--transition),
    box-shadow var(--transition);
}

.main-nav.scrolled {
  background: var(--white);
  padding: 14px 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.brand-logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 30px;
  letter-spacing: 4px;
  color: var(--gold);
}

.brand-sub {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--gold);
  margin-top: 4px;
  text-transform: uppercase;
}

.main-nav.scrolled .brand-name,
.main-nav.scrolled .brand-sub {
  color: var(--gold);
}

.main-menu {
  margin: 0;
  padding: 0;
  align-items: center;
}

.main-menu .nav-link {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  padding: 10px 16px !important;
  position: relative;
  transition: color var(--transition);
}

.main-nav.scrolled .main-menu .nav-link {
  color: var(--black);
}

.main-menu .nav-link:hover,
.main-menu .nav-link.active {
  color: var(--gold);
}

.main-menu .dropdown-menu {
  border-radius: 0;
  border: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
  margin-top: 0;
}

.main-menu .dropdown-item {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 22px;
  color: var(--black);
}

.main-menu .dropdown-item:hover {
  background: var(--cream);
  color: var(--gold);
}

/* Hamburger */
.navbar-toggler {
  border: none;
  padding: 6px;
  background: transparent;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.toggler-bar {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
  transition: background var(--transition);
}
.main-nav.scrolled .toggler-bar {
  background: var(--black);
}
.nav-close-btn {
  display: none;
}

/* ---------- 5. HERO ---------- */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  color: var(--white);
}

.kenburns-slider {
  position: absolute;
  inset: 0;
}

.kb-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease;
}

.kb-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 160px; /* deixar espaço para o formulário de reservas */
}

.hero-content > .row {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.hero-stars {
  color: var(--star);
  font-size: 14px;
  letter-spacing: 8px;
  margin-bottom: 20px;
}

.hero-kicker {
  color: var(--gold);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.15;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 20px 0 40px;
}

.hero-title span {
  display: block;
}

/* Left side phone */
.hero-side-left {
  position: absolute;
  left: 36px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.phone-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.phone-circle:hover {
  background: var(--gold-2);
  color: var(--white);
}

.vertical-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 12px;
  letter-spacing: 5px;
  color: var(--white);
  text-transform: uppercase;
}

/* Right dots */
.hero-dots {
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-direction: column;
  gap: 18px;
}
.hero-dots li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--white);
  cursor: pointer;
  transition:
    background var(--transition),
    border-color var(--transition);
}
.hero-dots li.active,
.hero-dots li:hover {
  background: var(--gold);
  border-color: var(--gold);
}

/* Reservation form */
.reservation-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
  z-index: 5;
}

.reservation-form {
  background: var(--white);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.res-field {
  padding: 22px 24px;
  border-right: 1px solid #ececec;
}

.res-field label {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.res-field .form-control,
.res-field .form-select {
  border: none;
  padding: 0;
  font-size: 14px;
  color: var(--black);
  background: transparent;
  box-shadow: none;
  cursor: pointer;
}
.res-field .form-control:focus,
.res-field .form-select:focus {
  box-shadow: none;
}

.res-cta {
  padding: 0;
}
.res-cta .btn {
  height: 100%;
  border: none;
  border-radius: 0;
}

/* Feedback do formulário (sucesso / erro) */
.res-feedback {
  display: none;
  padding: 14px 22px;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1.6;
  border-top: 1px solid #ececec;
}
.res-feedback.is-visible {
  display: block;
}
.res-feedback i {
  margin-right: 8px;
}
.res-feedback strong {
  font-weight: 600;
  margin-right: 4px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.res-feedback--success {
  background: #f7f3ea;
  color: var(--black);
  border-top-color: var(--gold);
}
.res-feedback--success i {
  color: var(--gold);
}
.res-feedback--error {
  background: #fdecea;
  color: #8a1f1f;
  border-top-color: #c63b3b;
}
.res-feedback--error i {
  color: #c63b3b;
}

/* ---------- 6. ABOUT ---------- */
.lead-text {
  font-size: 16px;
  color: #444;
}

.phone-block {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.phone-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.phone-label {
  display: block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}

.phone-number {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--black);
  letter-spacing: 1px;
}
.phone-number:hover {
  color: var(--gold);
}

.phone-block--light .phone-number {
  color: var(--white);
}
.phone-block--light .phone-number:hover {
  color: var(--gold);
}

/* About collage */
.about-collage {
  position: relative;
  min-height: 540px;
}
.collage-img {
  position: absolute;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}
.collage-back {
  top: 0;
  right: 0;
  width: 75%;
  height: 380px;
}
.collage-front {
  bottom: 0;
  left: 0;
  width: 65%;
  height: 320px;
}

/* ---------- 7. ROOMS ---------- */
.room-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.room-card-link:hover {
  color: inherit;
}

.room-card {
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.room-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.room-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.room-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.75) 100%
  );
}

.room-tag {
  position: absolute;
  top: 24px;
  right: 0;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  letter-spacing: 4px;
  padding: 10px 14px;
  writing-mode: vertical-rl;
  z-index: 2;
}

.room-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px;
  color: var(--white);
  z-index: 2;
}
.room-caption h3 {
  color: var(--white);
  font-size: 28px;
  margin: 0 0 6px;
}
.room-caption p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #e8e0d2;
}
.room-caption strong {
  color: var(--gold);
  font-weight: 500;
}

/* ---------- 8. PRICING ---------- */
.pricing-section .text-light p {
  color: #cfcac0;
}

.pricing-card {
  background: #2a2826;
  color: var(--white);
  overflow: hidden;
  height: 100%;
  transition: transform var(--transition);
}
.pricing-card:hover {
  transform: translateY(-6px);
}

.pricing-img {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.pricing-body {
  padding: 32px 28px;
}

.pricing-body h3 {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 16px;
}

.pricing-price {
  font-family: var(--font-serif);
  font-size: 64px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 22px;
  display: flex;
  align-items: baseline;
}
.pricing-price .currency {
  font-size: 28px;
  margin-right: 4px;
}
.pricing-price small {
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 2px;
  color: #aaa;
  margin-left: 6px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricing-features li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pricing-features li:last-child {
  border-bottom: none;
}
.pricing-features i {
  color: var(--gold);
  width: 18px;
}
.pricing-features li.muted {
  color: #777;
}
.pricing-features li.muted i {
  color: #555;
}

/* ---------- 9. VIDEO PARALLAX ---------- */
.video-section {
  position: relative;
  background-image: url("../img/quarto5.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 160px 0;
  text-align: center;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.play-button {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-top: 30px;
  position: relative;
  border: none;
  padding: 0;
  cursor: pointer;
  transition:
    transform var(--transition),
    background var(--transition);
}
.play-button:hover {
  background: var(--white);
  color: var(--gold);
  transform: scale(1.08);
}
.play-button::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(189, 168, 126, 0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Video Modal */
.video-modal .modal-content {
  background: var(--black);
  border: none;
  border-radius: 0;
  overflow: hidden;
  position: relative;
}
.video-modal .modal-backdrop,
.modal-backdrop.show {
  opacity: 0.85;
}
.video-modal-close {
  position: absolute;
  top: -42px;
  right: 0;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  z-index: 2;
  transition:
    color var(--transition),
    transform var(--transition);
}
.video-modal-close:hover {
  color: var(--gold);
  transform: rotate(90deg);
}
.video-modal iframe {
  background: var(--black);
  width: 100%;
  height: 100%;
}

/* ---------- 10. FACILITIES ---------- */
.facility-box {
  text-align: center;
  padding: 40px 24px;
  transition:
    background var(--transition),
    box-shadow var(--transition);
}
.facility-box:hover {
  background: var(--cream);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.facility-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 30px;
  transition:
    background var(--transition),
    color var(--transition);
}
.facility-box:hover .facility-icon {
  background: var(--gold);
  color: var(--white);
}

.facility-box h4 {
  font-size: 22px;
  margin-bottom: 10px;
}

/* ---------- 11. TESTIMONIALS ---------- */
.testimonials-section {
  position: relative;
  background: url("https://images.unsplash.com/photo-1445019980597-93fa8acb246c?auto=format&fit=crop&w=1920&q=80")
    center/cover no-repeat;
  background-attachment: fixed;
  padding: 130px 0;
  color: var(--white);
}
.testimonials-overlay {
  position: absolute;
  inset: 0;
  background: rgba(31, 29, 27, 0.78);
}

.testimonial-item {
  text-align: center;
  padding: 30px;
  max-width: 760px;
  margin: 0 auto;
}

.testimonial-stars {
  color: var(--star);
  font-size: 14px;
  letter-spacing: 5px;
  margin-bottom: 20px;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 36px;
  font-style: italic;
}

.owl-carousel .owl-item img.testimonial-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 18px;
  object-fit: cover;
  border: 3px solid var(--gold);
  display: block;
}

.testimonial-name {
  color: var(--white);
  letter-spacing: 4px;
  font-family: var(--font-sans);
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.testimonial-role {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.owl-theme .owl-dots .owl-dot span {
  background: rgba(255, 255, 255, 0.3);
  width: 10px;
  height: 10px;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--gold);
}

/* ---------- 12. SERVICES ---------- */
.service-row {
  margin-bottom: 90px;
}
.service-row:last-child {
  margin-bottom: 0;
}

.service-img {
  height: 420px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.service-title {
  font-size: 38px;
  margin-bottom: 22px;
}

/* ---------- 13. NEWS ---------- */
.news-card {
  background: #2a2826;
  color: #cfcac0;
  height: 100%;
  overflow: hidden;
  transition: transform var(--transition);
}
.news-card:hover {
  transform: translateY(-6px);
}

.news-img {
  height: 230px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.news-card:hover .news-img {
  transform: scale(1.04);
}

.news-body {
  padding: 32px 28px;
}

.news-date {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.news-body h4 {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 14px;
  line-height: 1.35;
}

.news-link {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 8px;
}
.news-link i {
  margin-left: 6px;
  transition: transform var(--transition);
}
.news-link:hover i {
  transform: translateX(6px);
}

/* ---------- 14. CLIENTS ---------- */
.clients-section {
  padding: 60px 0;
  border-top: 1px solid #eee;
  background: var(--white);
}

.clients-section .client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
}
.owl-carousel .owl-item .client-logo img {
  width: auto;
  max-width: 80px;
  max-height: 50px;
  height: auto;
  margin: 0 auto;
  opacity: 0.45;
  transition:
    opacity var(--transition),
    transform var(--transition);
}
.owl-carousel .owl-item .client-logo img:hover {
  opacity: 1;
  transform: scale(1.08);
}

/* ---------- 15. FOOTER ---------- */
.site-footer {
  background: var(--black);
  color: #aaa;
  padding-top: 100px;
}

.brand-logo--footer {
  margin-bottom: 24px;
}

.footer-text {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 26px;
}

.lang-switcher {
  display: flex;
  gap: 8px;
}
.lang-btn {
  background: transparent;
  border: 1px solid #444;
  color: #aaa;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 6px 14px;
  transition: all var(--transition);
}
.lang-btn:hover,
.lang-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.footer-title {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 26px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: #aaa;
  font-size: 14px;
  letter-spacing: 1px;
  transition:
    color var(--transition),
    padding-left var(--transition);
}
.footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-address {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 18px;
}

.phone-block--footer {
  margin: 0 0 18px;
}
.phone-block--footer .phone-number {
  color: var(--white);
  font-size: 20px;
}

.footer-email {
  display: inline-block;
  color: #aaa;
  text-decoration: underline;
  margin-bottom: 22px;
  font-size: 14px;
}
.footer-email:hover {
  color: var(--gold);
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #444;
  color: #aaa;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-size: 14px;
}
.social-icons a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.footer-bottom {
  margin-top: 70px;
  padding: 24px 0;
  border-top: 1px solid #2a2826;
  color: #777;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 28px;
}
.footer-legal-links a {
  color: #999;
  text-decoration: none;
  letter-spacing: 2px;
  transition: color 0.25s ease;
}
.footer-legal-links a:hover {
  color: var(--gold);
}
@media (max-width: 575px) {
  .footer-bottom-inner {
    justify-content: center;
    text-align: center;
  }
  .footer-legal-links {
    justify-content: center;
    gap: 20px;
  }
}

/* ---------- 16. BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--black);
  color: var(--white);
}

/* ---------- 17. REVEAL / ANIMATE ---------- */
.reveal {
  opacity: 0;
}
.reveal.animate__animated {
  opacity: 1;
}

/* ---------- ROOM DETAIL PAGES ---------- */
.room-hero {
  position: relative;
  height: 65vh;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.room-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.room-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 20px 0;
}
.room-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5.5vw, 64px);
  color: var(--white);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 14px 0 12px;
}
.breadcrumb-trail {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.breadcrumb-trail a {
  color: var(--gold);
}
.breadcrumb-trail span.sep {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.4);
}

.room-specs-bar {
  background: var(--cream);
  padding: 28px 0;
  border-bottom: 1px solid #e7e0d3;
}
.room-specs-bar .row {
  align-items: center;
}
.room-spec {
  text-align: center;
  padding: 6px 0;
}
.room-spec i {
  color: var(--gold);
  font-size: 26px;
  margin-bottom: 8px;
  display: block;
}
.room-spec strong {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
  display: block;
}
.room-spec span {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--grey);
  text-transform: uppercase;
}

.room-info {
  padding: 100px 0;
}
.room-price-tag {
  font-family: var(--font-serif);
  font-size: 64px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.room-price-tag small {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--grey);
  margin-left: 6px;
}

.amenities-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  columns: 2;
  column-gap: 36px;
}
.amenities-list li {
  padding: 8px 0;
  color: #444;
  break-inside: avoid;
  font-size: 14px;
}
.amenities-list i {
  color: var(--gold);
  margin-right: 10px;
  width: 16px;
}

.room-gallery-section {
  padding: 100px 0;
  background: var(--cream);
}
.room-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  gap: 16px;
}
.room-gallery .gallery-item {
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
}
.room-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.room-gallery .gallery-item:hover img {
  transform: scale(1.06);
}
.room-gallery .gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.room-gallery .gallery-item:nth-child(2) {
  grid-column: span 2;
}
.room-gallery .gallery-item:nth-child(5) {
  grid-column: span 2;
}

.related-rooms {
  background: var(--white);
}

/* ---------- MENU / TREATMENT / FACILITY LIST (shared) ---------- */
.menu-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}
.menu-list li {
  padding: 22px 0;
  border-bottom: 1px dashed #d8d2c4;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.menu-list li:last-child {
  border-bottom: none;
}
.menu-list .item-info {
  flex: 1;
}
.menu-list .item-info h4 {
  font-size: 20px;
  margin: 0 0 6px;
  letter-spacing: 1px;
}
.menu-list .item-info p {
  color: var(--grey);
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}
.menu-list .item-meta {
  text-align: right;
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-list .item-price {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--gold);
  line-height: 1;
}
.menu-list .item-duration {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--grey);
  text-transform: uppercase;
  margin-top: 6px;
}
.menu-category {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--black);
  letter-spacing: 2px;
  margin: 50px 0 0;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.menu-category:first-of-type {
  margin-top: 0;
}

@media (max-width: 575px) {
  .menu-list li {
    flex-direction: column;
    gap: 8px;
  }
  .menu-list .item-meta {
    text-align: left;
  }
}

/* ---------- ABOUT PAGE ---------- */
.philosophy-card {
  text-align: center;
  padding: 50px 32px;
  background: var(--white);
  border: 1px solid #ececec;
  height: 100%;
  transition:
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}
.philosophy-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
}
.philosophy-card .number {
  font-family: var(--font-serif);
  font-size: 56px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}
.philosophy-card h4 {
  font-size: 24px;
  margin-bottom: 14px;
}
.philosophy-card p {
  color: var(--grey);
  font-size: 14px;
  line-height: 1.7;
}

.team-card {
  text-align: center;
}
.team-photo-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  margin-bottom: 22px;
}
.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.team-card:hover .team-photo-wrap img {
  transform: scale(1.05);
}
.team-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 60%,
    rgba(31, 29, 27, 0.4) 100%
  );
}
.team-name {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--black);
  letter-spacing: 1px;
  margin: 0 0 6px;
}
.team-role {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}
.team-bio {
  color: var(--grey);
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

.timeline {
  position: relative;
  padding: 30px 0;
  margin: 0;
  list-style: none;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--gold);
  transform: translateX(-50%);
}
.timeline-item {
  position: relative;
  width: 50%;
  padding: 28px 50px;
  box-sizing: border-box;
}
.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}
.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}
.timeline-item::before {
  content: "";
  position: absolute;
  top: 38px;
  width: 14px;
  height: 14px;
  background: var(--gold);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--gold);
}
.timeline-item:nth-child(odd)::before {
  right: -7px;
}
.timeline-item:nth-child(even)::before {
  left: -7px;
}
.timeline-year {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.timeline-title {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--black);
  margin: 0 0 8px;
}
.timeline-desc {
  color: var(--grey);
  font-size: 14px;
  margin: 0;
  line-height: 1.7;
}

.stats-section {
  background: var(--black);
  color: var(--white);
  padding: 90px 0;
}
.stat-block {
  text-align: center;
  padding: 20px 10px;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 64px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 767px) {
  .timeline::before {
    left: 18px;
  }
  .timeline-item,
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    width: 100%;
    left: 0;
    text-align: left;
    padding: 18px 0 18px 50px;
  }
  .timeline-item:nth-child(odd)::before,
  .timeline-item:nth-child(even)::before {
    left: 11px;
    right: auto;
    top: 28px;
  }
  .stat-number {
    font-size: 48px;
  }
}

/* ---------- NEWS LISTING / EVENTS / SINGLE ARTICLE ---------- */
.news-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.news-category {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  letter-spacing: 3px;
  padding: 5px 14px;
  text-transform: uppercase;
}
.news-date-text {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--grey);
  text-transform: uppercase;
}

.news-featured {
  margin-bottom: 70px;
}
.news-featured-img {
  height: 100%;
  min-height: 420px;
  background-size: cover;
  background-position: center;
}
.news-featured-body {
  background: var(--white);
  padding: 60px 50px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #ececec;
  border-left: none;
}
.news-featured-body h2 {
  font-size: 36px;
  margin-bottom: 18px;
  line-height: 1.25;
}
.news-featured-body p {
  color: var(--grey);
  margin-bottom: 22px;
}

.news-listing-card {
  background: var(--white);
  border: 1px solid #ececec;
  height: 100%;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.news-listing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.07);
  border-color: var(--gold);
}
.news-listing-card .news-img-wrap {
  overflow: hidden;
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}
.news-listing-card:hover .news-img-wrap {
  transform: scale(1.03);
}
.news-listing-card .news-body {
  padding: 30px 26px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-listing-card .news-body h4 {
  color: var(--black);
  font-size: 22px;
  margin-bottom: 12px;
  line-height: 1.35;
}
.news-listing-card .news-body p {
  color: var(--grey);
  font-size: 14px;
  flex: 1;
  margin-bottom: 16px;
}
.news-listing-card .news-link {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: inline-block;
  margin-top: auto;
}
.news-listing-card .news-link i {
  margin-left: 6px;
  transition: transform var(--transition);
}
.news-listing-card:hover .news-link i {
  transform: translateX(6px);
}

/* Pagination */
.pagination-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 60px;
  list-style: none;
  padding: 0;
}
.pagination-nav li a,
.pagination-nav li span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  color: var(--black);
  font-size: 14px;
  text-decoration: none;
  transition: all var(--transition);
}
.pagination-nav li a:hover,
.pagination-nav li.current span {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.pagination-nav li.disabled span {
  color: #ccc;
  cursor: not-allowed;
}

/* Single article */
.article-header {
  padding: 160px 0 30px;
  text-align: center;
}
.article-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4.5vw, 52px);
  letter-spacing: 1px;
  margin: 16px auto 24px;
  max-width: 820px;
  line-height: 1.2;
}
.article-author-meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  align-items: center;
  font-size: 13px;
  color: var(--grey);
  flex-wrap: wrap;
}
.article-author-meta strong {
  color: var(--black);
  font-weight: 500;
}
.article-author-meta .sep {
  color: #ccc;
}

.article-hero-img {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
  display: block;
}

.article-body-wrap {
  padding: 60px 0 80px;
}
.article-body {
  max-width: 760px;
  margin: 0 auto;
}
.article-body .lead {
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.55;
  color: var(--black);
  margin-bottom: 36px;
}
.article-body p {
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 24px;
  color: #333;
}
.article-body h2 {
  font-size: 30px;
  margin: 50px 0 18px;
}
.article-body h3 {
  font-size: 24px;
  margin: 36px 0 14px;
}
.article-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 8px 0 8px 30px;
  margin: 36px 0;
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.55;
  color: var(--black);
  font-style: italic;
}
.article-body img {
  width: 100%;
  margin: 30px 0;
}
.article-body figure {
  margin: 36px 0;
}
.article-body figcaption {
  text-align: center;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--grey);
  text-transform: uppercase;
  margin-top: 10px;
}

.article-tags {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #eee;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.article-tags-label {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-right: 10px;
}
.article-tag {
  font-size: 11px;
  letter-spacing: 2px;
  padding: 5px 14px;
  background: var(--cream);
  color: var(--black);
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background var(--transition),
    color var(--transition);
}
.article-tag:hover {
  background: var(--gold);
  color: var(--white);
}

.article-author-card {
  margin-top: 50px;
  padding: 36px;
  background: var(--cream);
  display: flex;
  gap: 24px;
  align-items: center;
}
.article-author-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.article-author-card h5 {
  font-size: 20px;
  margin: 0 0 6px;
}
.article-author-card p {
  margin: 0;
  color: var(--grey);
  font-size: 14px;
}

/* Events */
.event-card {
  display: flex;
  background: var(--white);
  border: 1px solid #ececec;
  margin-bottom: 24px;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}
.event-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}
.event-date {
  flex-shrink: 0;
  background: var(--black);
  color: var(--white);
  padding: 36px 24px;
  text-align: center;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.event-date .day {
  font-family: var(--font-serif);
  font-size: 52px;
  line-height: 1;
  color: var(--gold);
  display: block;
}
.event-date .month {
  display: block;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 6px;
  color: var(--white);
}
.event-date .year {
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 6px;
  display: block;
}
.event-body {
  padding: 30px 36px;
  flex: 1;
}
.event-body .event-cat {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}
.event-body h3 {
  font-size: 24px;
  margin: 8px 0 12px;
}
.event-body p {
  color: var(--grey);
  margin: 0 0 16px;
  font-size: 14px;
}
.event-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 12px;
  color: var(--grey);
  letter-spacing: 1px;
  align-items: center;
}
.event-meta-row span i {
  color: var(--gold);
  margin-right: 6px;
}
.event-meta-row .event-price {
  background: var(--cream);
  color: var(--black);
  padding: 4px 12px;
  font-family: var(--font-serif);
  font-size: 16px;
  letter-spacing: 0;
}

.events-archive-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.events-archive-list li {
  padding: 16px 0;
  border-bottom: 1px dashed #d8d2c4;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
}
.events-archive-list li:last-child {
  border-bottom: none;
}
.events-archive-list .archive-date {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  flex-shrink: 0;
}
.events-archive-list .archive-title {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--black);
  flex: 1;
}

/* Newsletter CTA strip */
.newsletter-strip {
  background: var(--cream);
  padding: 90px 0;
  text-align: center;
}
.newsletter-strip h3 {
  font-size: 36px;
  margin-bottom: 12px;
}
.newsletter-strip p {
  color: var(--grey);
}
.newsletter-form {
  max-width: 520px;
  margin: 28px auto 0;
  display: flex;
  gap: 0;
}
.newsletter-form input {
  flex: 1;
  border: 1px solid #ddd;
  border-right: none;
  padding: 14px 18px;
  font-size: 14px;
  border-radius: 0;
  background: var(--white);
}
.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold);
}
.newsletter-form button {
  padding: 14px 28px;
  border-radius: 0;
  border: none;
  cursor: pointer;
}

@media (max-width: 767px) {
  .news-featured-body {
    padding: 40px 30px;
    border-left: 1px solid #ececec;
    border-top: none;
  }
  .news-featured-img {
    min-height: 280px;
  }
  .article-header {
    padding-top: 130px;
  }
  .article-author-card {
    flex-direction: column;
    text-align: center;
  }
  .event-card {
    flex-direction: column;
  }
  .event-date {
    padding: 24px;
    min-width: 0;
    flex-direction: row;
    gap: 14px;
    justify-content: center;
  }
  .event-date .day {
    font-size: 36px;
  }
  .event-body {
    padding: 24px;
  }
  .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }
  .newsletter-form input {
    border-right: 1px solid #ddd;
  }
}

/* ---------- PRICING PAGE ---------- */
.pricing-table-wrap {
  background: var(--white);
  border: 1px solid #ececec;
  overflow: hidden;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.pricing-table thead th {
  background: var(--black);
  color: var(--white);
  padding: 22px 20px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 500;
  border-bottom: 2px solid var(--gold);
}
.pricing-table thead th:first-child {
  text-align: left;
}
.pricing-table tbody td {
  padding: 22px 20px;
  border-bottom: 1px solid #eee;
  text-align: center;
  color: #444;
  vertical-align: middle;
}
.pricing-table tbody td:first-child {
  text-align: left;
}
.pricing-table tbody tr:last-child td {
  border-bottom: none;
}
.pricing-table tbody tr:hover {
  background: #fafafa;
}
.pricing-table .room-name {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--black);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 4px;
}
.pricing-table .room-spec-small {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--grey);
  text-transform: uppercase;
}
.pricing-table .price-val {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--gold);
  line-height: 1;
}
.pricing-table .price-unit {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--grey);
  margin-top: 4px;
  text-transform: uppercase;
  font-family: var(--font-sans);
}

.season-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 36px;
  font-size: 13px;
  color: var(--grey);
}
.season-legend .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

.policies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.policy-card {
  background: var(--white);
  border: 1px solid #ececec;
  padding: 32px;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}
.policy-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}
.policy-card .policy-icon {
  color: var(--gold);
  font-size: 26px;
  margin-bottom: 14px;
}
.policy-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
}
.policy-card p {
  color: var(--grey);
  font-size: 14px;
  margin: 0;
}

.included-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  columns: 2;
  column-gap: 36px;
}
.included-list li {
  padding: 7px 0;
  color: #444;
  font-size: 14px;
  break-inside: avoid;
}
.included-list li i {
  color: var(--gold);
  margin-right: 10px;
}
.included-list.not-included li i {
  color: #c63b3b;
}
.included-list.not-included li {
  color: #888;
}

@media (max-width: 991px) {
  .pricing-table {
    font-size: 12px;
  }
  .pricing-table thead th,
  .pricing-table tbody td {
    padding: 14px 10px;
  }
  .pricing-table .room-name {
    font-size: 16px;
  }
  .pricing-table .price-val {
    font-size: 18px;
  }
  .policies-grid {
    grid-template-columns: 1fr;
  }
  .included-list {
    columns: 1;
  }
}

/* ---------- FACILITIES PAGE ---------- */
.facility-category {
  margin-bottom: 80px;
}
.facility-category-header {
  text-align: center;
  margin-bottom: 50px;
}
.facility-detail-card {
  background: var(--white);
  border: 1px solid #ececec;
  padding: 38px 30px;
  text-align: center;
  height: 100%;
  transition:
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}
.facility-detail-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}
.facility-detail-card .icon-wrap {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 22px;
  transition:
    background var(--transition),
    color var(--transition);
}
.facility-detail-card:hover .icon-wrap {
  background: var(--gold);
  color: var(--white);
}
.facility-detail-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
}
.facility-detail-card p {
  color: var(--grey);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.facility-cat-nav {
  background: var(--cream);
  padding: 24px 0;
  border-bottom: 1px solid #e7e0d3;
  position: sticky;
  top: 0;
  z-index: 20;
}
.facility-cat-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.facility-cat-nav a {
  color: var(--black);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition:
    border-color var(--transition),
    color var(--transition);
}
.facility-cat-nav a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

@media (max-width: 767px) {
  .facility-cat-nav ul {
    gap: 16px;
  }
  .facility-cat-nav a {
    font-size: 11px;
    letter-spacing: 2px;
  }
}

/* ---------- DOCUMENTATION / MANUAL PAGE ---------- */
.doc-body {
  background: var(--white);
  color: var(--black);
}
.doc-topbar {
  background: var(--black);
  color: var(--white);
  padding: 18px 36px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.doc-topbar .brand-logo .brand-name {
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 4px;
}
.doc-topbar .brand-logo .brand-sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  letter-spacing: 4px;
}
.doc-version {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
}
.doc-back {
  color: var(--white);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
}
.doc-back:hover {
  color: var(--gold);
}
.doc-back i {
  margin-right: 6px;
}

.doc-wrapper {
  padding-top: 80px;
  display: flex;
  min-height: 100vh;
}
.doc-sidebar {
  width: 280px;
  flex-shrink: 0;
  background: var(--cream);
  padding: 36px 28px;
  position: sticky;
  top: 80px;
  height: calc(100vh - 80px);
  overflow-y: auto;
  border-right: 1px solid #e7e0d3;
}
.doc-sidebar h6 {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin: 24px 0 10px;
  font-weight: 600;
}
.doc-sidebar h6:first-child {
  margin-top: 0;
}
.doc-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.doc-sidebar li a {
  display: block;
  padding: 7px 0 7px 14px;
  color: var(--grey);
  font-size: 14px;
  text-decoration: none;
  border-left: 2px solid transparent;
  margin-left: -14px;
  transition: all var(--transition);
}
.doc-sidebar li a:hover,
.doc-sidebar li a.active {
  color: var(--black);
  border-left-color: var(--gold);
  background: rgba(189, 168, 126, 0.06);
}

.doc-content {
  flex: 1;
  padding: 50px 60px 120px;
  max-width: 920px;
}
.doc-content section {
  margin-bottom: 70px;
  scroll-margin-top: 90px;
}
.doc-content section:last-child {
  margin-bottom: 0;
}
.doc-content h1 {
  font-family: var(--font-serif);
  font-size: 52px;
  letter-spacing: 1px;
  margin: 0 0 18px;
}
.doc-content > p.doc-intro {
  font-size: 18px;
  line-height: 1.7;
  color: var(--grey);
  margin-bottom: 50px;
  padding-bottom: 36px;
  border-bottom: 1px solid #eee;
}
.doc-content h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  margin: 0 0 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.doc-content h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  margin: 32px 0 14px;
  color: var(--black);
  letter-spacing: 1px;
}
.doc-content h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin: 28px 0 10px;
  font-weight: 600;
}
.doc-content p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 16px;
  color: #333;
}
.doc-content ul,
.doc-content ol {
  margin: 0 0 18px;
  padding-left: 24px;
}
.doc-content li {
  line-height: 1.75;
  margin-bottom: 6px;
  font-size: 15px;
  color: #333;
}
.doc-content a {
  color: var(--gold);
}
.doc-content a:hover {
  color: var(--gold-2);
}

.doc-content code {
  background: var(--cream);
  padding: 2px 8px;
  font-family: "Consolas", "Monaco", "Courier New", monospace;
  font-size: 13px;
  color: var(--black);
  border-radius: 0;
}
.doc-content pre {
  background: var(--black);
  color: #e8e0d2;
  padding: 22px 26px;
  overflow-x: auto;
  font-size: 13px;
  line-height: 1.7;
  margin: 16px 0 24px;
  border-radius: 0;
  border-left: 3px solid var(--gold);
  font-family: "Consolas", "Monaco", "Courier New", monospace;
}
.doc-content pre code {
  background: transparent;
  color: inherit;
  padding: 0;
  font-size: 13px;
}
.doc-content .token-comment {
  color: #8a8475;
}
.doc-content .token-tag,
.doc-content .token-keyword {
  color: #bda87e;
}
.doc-content .token-attr {
  color: #e3b873;
}
.doc-content .token-string {
  color: #d9c498;
}
.doc-content .token-prop {
  color: #b8d4b8;
}

.doc-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 14px;
}
.doc-content th,
.doc-content td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  vertical-align: top;
}
.doc-content th {
  background: var(--cream);
  color: var(--black);
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 11px;
}
.doc-content td code {
  font-size: 12px;
  padding: 2px 6px;
}

.doc-note {
  padding: 16px 22px;
  margin: 18px 0 24px;
  border-left: 3px solid var(--gold);
  background: #f7f3ea;
  font-size: 14px;
  line-height: 1.7;
}
.doc-note strong {
  color: var(--gold);
  letter-spacing: 2px;
  margin-right: 8px;
  font-size: 12px;
  text-transform: uppercase;
}
.doc-note--warn {
  border-left-color: #c63b3b;
  background: #fdecea;
}
.doc-note--warn strong {
  color: #c63b3b;
}

.color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 24px;
}
.color-swatch {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid #ececec;
  font-family: "Consolas", monospace;
  font-size: 12px;
}
.color-swatch .swatch-block {
  width: 28px;
  height: 28px;
  display: inline-block;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .doc-wrapper {
    display: block;
  }
  .doc-sidebar {
    width: 100%;
    position: static;
    height: auto;
    border-right: none;
    border-bottom: 1px solid #e7e0d3;
  }
  .doc-content {
    padding: 36px 24px 80px;
    max-width: 100%;
  }
  .doc-content h1 {
    font-size: 38px;
  }
  .doc-content h2 {
    font-size: 26px;
  }
  .doc-topbar {
    padding: 14px 20px;
  }
  .doc-topbar .doc-version {
    display: none;
  }
}

/* ---------- CONTACT PAGE ---------- */
.contact-info-card {
  text-align: center;
  padding: 50px 30px;
  border: 1px solid #ececec;
  height: 100%;
  background: var(--white);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}
.contact-info-card:hover {
  border-color: var(--gold);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}
.contact-info-card .icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--gold);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition:
    background var(--transition),
    color var(--transition);
}
.contact-info-card:hover .icon {
  background: var(--gold);
  color: var(--white);
}
.contact-info-card h4 {
  font-size: 22px;
  margin-bottom: 14px;
}
.contact-info-card p {
  color: var(--grey);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 8px;
}
.contact-info-card p strong {
  font-weight: 600;
  color: var(--black);
}
.contact-info-card a {
  color: var(--grey);
}
.contact-info-card a:hover {
  color: var(--gold);
}
.contact-link-arrow {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold) !important;
}
.contact-link-arrow i {
  margin-left: 6px;
  transition: transform var(--transition);
}
.contact-link-arrow:hover i {
  transform: translateX(6px);
}

.contact-form-wrapper {
  background: var(--cream);
  padding: 0;
}
.contact-split {
  min-height: 720px;
}
.contact-split .map-embed,
.contact-split iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: block;
  border: 0;
}
.contact-split .map-embed {
  position: relative;
  background: var(--cream);
}
#contactMap {
  width: 100%;
  height: 100%;
  min-height: 480px;
}
/* Tinta os tiles Positron para o tom creme/dourado da paleta */
#contactMap .leaflet-tile-pane {
  filter: hue-rotate(15deg) saturate(0.45) brightness(1.02) contrast(0.96);
}
#contactMap .leaflet-container {
  background: var(--cream);
  font-family: "Barlow", sans-serif;
}
#contactMap .leaflet-control-attribution {
  background: rgba(245, 241, 234, 0.85);
  color: var(--grey);
  font-size: 10px;
  padding: 2px 8px;
}
#contactMap .leaflet-control-attribution a {
  color: var(--gold-2);
}
#contactMap .leaflet-control-zoom a {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--gold);
  width: 32px;
  height: 32px;
  line-height: 30px;
  font-size: 18px;
  font-weight: 300;
  transition: all 0.25s ease;
}
#contactMap .leaflet-control-zoom a:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
#contactMap .leaflet-control-zoom a:first-child {
  border-radius: 2px 2px 0 0;
}
#contactMap .leaflet-control-zoom a:last-child {
  border-radius: 0 0 2px 2px;
  border-top: 0;
}
/* Marcador custom em forma de pin dourado */
.aurelia-marker {
  width: 38px;
  height: 38px;
  position: relative;
}
.aurelia-marker::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
  width: 32px;
  height: 32px;
  background: var(--gold);
  border: 2px solid var(--white);
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 4px 14px rgba(31, 29, 27, 0.35);
}
.aurelia-marker::after {
  content: "\f005";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 13px;
  z-index: 2;
}
.aurelia-popup .leaflet-popup-content-wrapper {
  background: var(--white);
  border-radius: 0;
  border-top: 3px solid var(--gold);
  box-shadow: 0 8px 30px rgba(31, 29, 27, 0.18);
  padding: 4px 6px;
}
.aurelia-popup .leaflet-popup-content {
  margin: 14px 18px;
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: var(--grey);
}
.aurelia-popup .leaflet-popup-content strong {
  font-family: "Gilda Display", serif;
  font-size: 16px;
  color: var(--black);
  font-weight: 400;
  display: block;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}
.aurelia-popup .leaflet-popup-tip {
  background: var(--white);
}
.aurelia-popup .leaflet-popup-close-button {
  color: var(--gold) !important;
  font-size: 20px;
  padding: 6px 8px 0 0 !important;
}
.contact-form-panel {
  background: var(--white);
  padding: 70px 60px;
  height: 100%;
}
.contact-form-panel .section-title {
  font-size: 36px;
}

.contact-form .form-group {
  margin-bottom: 8px;
}
.contact-form label {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 500;
}
.contact-form .form-control,
.contact-form .form-select {
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  padding: 10px 0;
  background: transparent;
  font-size: 14px;
  color: var(--black);
  box-shadow: none;
  transition: border-color var(--transition);
}
.contact-form .form-control::placeholder {
  color: #b8b8b8;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-bottom-color: var(--gold);
  box-shadow: none;
  background: transparent;
  outline: none;
}
.contact-form textarea.form-control {
  min-height: 110px;
  resize: vertical;
}
.contact-form .btn {
  margin-top: 18px;
}

.form-check-wrap {
  display: flex;
  align-items: center;
}
.small-check {
  font-size: 13px;
  color: var(--grey);
  letter-spacing: 0;
  text-transform: none;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.small-check .form-check-input {
  margin-top: 3px;
  border-radius: 0;
  border: 1px solid #ccc;
  flex-shrink: 0;
}
.small-check .form-check-input:checked {
  background-color: var(--gold);
  border-color: var(--gold);
}
.small-check a {
  color: var(--gold);
  text-decoration: underline;
}

.contact-feedback {
  display: none;
  margin-top: 22px;
  padding: 14px 20px;
  font-size: 13px;
  line-height: 1.6;
  border-left: 3px solid var(--gold);
  background: var(--cream);
}
.contact-feedback.is-visible {
  display: block;
}
.contact-feedback i {
  margin-right: 8px;
}
.contact-feedback--success {
  background: #f7f3ea;
  color: var(--black);
  border-left-color: var(--gold);
}
.contact-feedback--success i {
  color: var(--gold);
}
.contact-feedback--error {
  background: #fdecea;
  color: #8a1f1f;
  border-left-color: #c63b3b;
}
.contact-feedback--error i {
  color: #c63b3b;
}

.contact-cta-strip {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1582719508461-905c673771fd?auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  padding: 80px 0;
}
.contact-cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 29, 27, 0.78);
}
.contact-cta-strip .container {
  position: relative;
  z-index: 2;
}
.contact-cta-strip .kicker {
  color: var(--gold);
}
.cta-strip-title {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 32px;
  margin: 8px 0 0;
  letter-spacing: 1px;
}
.contact-cta-strip .btn-gold:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
@media (max-width: 767px) {
  .contact-cta-strip {
    background-attachment: scroll;
  }
}

@media (max-width: 991px) {
  .contact-form-panel {
    padding: 50px 30px;
  }
  .contact-form-panel .section-title {
    font-size: 28px;
  }
  .contact-split {
    min-height: auto;
  }
  .contact-split .map-embed,
  .contact-split iframe {
    min-height: 360px;
  }
  .cta-strip-title {
    font-size: 26px;
  }
}

@media (max-width: 991px) {
  .room-info {
    padding: 70px 0;
  }
  .room-gallery-section {
    padding: 70px 0;
  }
  .room-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 200px);
  }
  .room-gallery .gallery-item:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }
  .amenities-list {
    columns: 1;
  }
}
@media (max-width: 575px) {
  .room-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 200px);
  }
}

/* ---------- 18. RESPONSIVE ---------- */
@media (max-width: 1199px) {
  .section-title {
    font-size: 40px;
  }

  /* Mobile nav: fullscreen overlay com fade controlado por .is-open */
  .main-nav .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(31, 29, 27, 0.97);
    padding: 80px 30px 40px;
    z-index: 1050;
    overflow-y: auto;
    display: block !important;
    height: 100vh !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 0.35s ease,
      transform 0.35s ease,
      visibility 0.35s ease;
  }
  .main-nav .navbar-collapse.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-close-btn {
    display: block;
    position: absolute;
    top: 22px;
    right: 24px;
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    color: var(--gold);
    font-size: 24px;
    line-height: 1;
    padding: 0;
    cursor: pointer;
    z-index: 2;
    transition:
      transform 0.3s ease,
      color 0.25s ease;
  }
  .nav-close-btn:hover,
  .nav-close-btn:focus {
    transform: rotate(90deg);
    color: var(--white);
    outline: none;
  }
  body.nav-open {
    overflow: hidden;
  }
  .main-menu {
    flex-direction: column;
    align-items: flex-start;
  }
  .main-menu .nav-link {
    color: var(--white) !important;
    font-size: 16px;
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
  }
  .main-menu .dropdown-menu {
    background: transparent;
    box-shadow: none;
    padding: 0 0 0 16px;
  }
  .main-menu .dropdown-item {
    color: var(--gold);
  }
}

@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
  .section-title {
    font-size: 34px;
  }
  .pricing-price {
    font-size: 50px;
  }
  .service-title {
    font-size: 30px;
  }

  /* Hero mobile: secção e formulário fluem normalmente */
  .hero-section {
    height: auto;
    min-height: auto;
    overflow: visible;
    padding-bottom: 30px;
  }
  .hero-content {
    height: auto;
    min-height: 90vh;
    padding-top: 120px;
    padding-bottom: 40px;
  }
  /* relative + z-index para ficar por cima do kenburns-slider e da overlay */
  .reservation-wrapper {
    position: relative;
    z-index: 5;
    padding: 0 15px;
    margin-top: 0;
    bottom: auto;
  }
  .reservation-form {
    margin-top: 0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  }
  .res-field {
    border-right: none;
    border-bottom: 1px solid #ececec;
  }
  .res-cta {
    padding: 0;
  }
  .res-cta .btn {
    padding: 18px;
    height: auto;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 28px;
  }
  .hero-content {
    padding-top: 100px;
    padding-bottom: 60px;
  }
  .testimonial-quote {
    font-size: 18px;
  }
  .about-collage {
    min-height: 0;
  }
  .collage-back,
  .collage-front {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 18px;
  }
  .pricing-price {
    font-size: 44px;
  }
  .video-section {
    padding: 100px 0;
    background-attachment: scroll;
  }
  .testimonials-section {
    background-attachment: scroll;
  }
}

@media (max-width: 575px) {
  .brand-name {
    font-size: 24px;
    letter-spacing: 3px;
  }
  .brand-sub {
    font-size: 10px;
    letter-spacing: 4px;
  }
  .btn-gold,
  .btn-outline-gold {
    padding: 14px 28px;
    font-size: 12px;
  }
  .service-img {
    height: 280px;
  }
}
