/* ============================================================
   SINAG HOSTEL SIARGAO — Global Stylesheet
   Palette: Sunrise Gold × Ocean Blue × Midnight Indigo
   Fonts: Kanit (display) + Karla (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Karla:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --dark:        #160C1A;
  --bg-alt:      #201228;
  --accent:      #E8951E;
  --highlight:   #4AADCE;
  --cream:       #F7F3ED;
  --cream-dim:   rgba(247,243,237,0.65);
  --accent-dim:  rgba(232,149,30,0.14);
  --border:      rgba(232,149,30,0.22);
  --ff-display:  'Kanit', sans-serif;
  --ff-body:     'Karla', sans-serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --transition:  0.35s cubic-bezier(0.4,0,0.2,1);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.32);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.45);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--dark);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--ff-body); border: none; outline: none; background: none; }
input, textarea, select { font-family: var(--ff-body); outline: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
p  { font-size: 1rem; font-weight: 400; color: var(--cream-dim); }

.accent { color: var(--accent); }
.highlight { color: var(--highlight); }

/* ---- SECTION LAYOUT ---- */
.section { padding: 100px 0; }
.section--alt { background: var(--bg-alt); }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-family: var(--ff-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-title { margin-bottom: 18px; }
.section-sub { max-width: 580px; margin-bottom: 48px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--dark);
}
.btn-primary:hover { background: #F0A830; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,149,30,0.4); }
.btn-outline {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
}
.btn-outline:hover { background: var(--accent); color: var(--dark); transform: translateY(-2px); }
.btn-ghost {
  border: 2px solid rgba(247,243,237,0.3);
  color: var(--cream);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--cream); background: rgba(247,243,237,0.08); }
.btn-highlight {
  background: var(--highlight);
  color: var(--dark);
}
.btn-highlight:hover { background: #5DBDE0; transform: translateY(-2px); }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 22px 0;
}
.navbar.scrolled {
  background: rgba(22,12,26,0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  padding: 12px 0;
}
.navbar__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.navbar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.navbar__logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}
.navbar__name {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--cream);
  line-height: 1.1;
}
.navbar__name span { display: block; font-size: 0.72rem; font-weight: 400; color: var(--accent); letter-spacing: 0.1em; }
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.navbar__nav a {
  padding: 8px 14px;
  font-family: var(--ff-display);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--cream-dim);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.navbar__nav a:hover,
.navbar__nav a.active { color: var(--accent); background: var(--accent-dim); }
.navbar__cta { margin-left: 12px; padding: 10px 22px; }
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 8px;
}
.navbar__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .navbar__hamburger { display: flex; }
  .navbar__nav {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 80vw);
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 4px;
    transition: right var(--transition);
    box-shadow: -8px 0 40px rgba(0,0,0,0.5);
  }
  .navbar__nav.open { right: 0; }
  .navbar__nav a { font-size: 1.1rem; padding: 12px 16px; width: 100%; }
  .navbar__cta { width: 100%; text-align: center; }
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(22,12,26,0.85) 0%,
    rgba(22,12,26,0.6) 50%,
    rgba(22,12,26,0.3) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 100px 24px 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 720px;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  color: var(--accent);
  font-family: var(--ff-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  width: fit-content;
}
.hero__title { color: var(--cream); }
.hero__title em { font-style: normal; color: var(--accent); }
.hero__sub {
  font-size: 1.15rem;
  color: var(--cream-dim);
  max-width: 560px;
}
.hero__tagline {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--cream);
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; padding-top: 8px; }
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ---- FEATURES STRIP ---- */
.features { padding: 70px 0; }
.features__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.feature-card {
  background: var(--bg-alt);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  transition: var(--transition);
}
.feature-card:hover { background: var(--accent-dim); }
.feature-icon {
  width: 52px; height: 52px;
  color: var(--accent);
  flex-shrink: 0;
}
.feature-card h4 { font-size: 0.95rem; color: var(--cream); }
.feature-card p { font-size: 0.84rem; color: var(--cream-dim); line-height: 1.5; }

@media (max-width: 900px) {
  .features__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- OFFERINGS GRID ---- */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.offering-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.offering-card img { width: 100%; height: 100%; transition: transform 0.6s ease; }
.offering-card:hover img { transform: scale(1.07); }
.offering-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22,12,26,0.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.offering-card__label {
  font-family: var(--ff-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.offering-card__title { font-size: 1.1rem; font-weight: 600; color: var(--cream); }

@media (max-width: 700px) {
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- BRAND TEASER (50/50) ---- */
.brand-teaser { overflow: hidden; }
.brand-teaser__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 560px;
}
.brand-teaser__img { position: relative; }
.brand-teaser__img img { width: 100%; height: 100%; object-fit: cover; }
.brand-teaser__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--dark) 100%);
}
.brand-teaser__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 60px;
  background: var(--dark);
}
.brand-teaser__content .section-label { margin-bottom: 12px; }
.brand-teaser__content h2 { margin-bottom: 20px; }
.brand-teaser__content p { margin-bottom: 16px; }
.brand-teaser__content .btn { margin-top: 12px; }

@media (max-width: 820px) {
  .brand-teaser__inner { grid-template-columns: 1fr; }
  .brand-teaser__img { height: 300px; }
  .brand-teaser__img::after { background: linear-gradient(to top, var(--dark) 0%, transparent 60%); }
  .brand-teaser__content { padding: 48px 32px; }
}

/* ---- STATS ROW ---- */
.stats { padding: 72px 0; }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.stat-card {
  background: var(--bg-alt);
  padding: 48px 32px;
  text-align: center;
  border-radius: 0;
}
.stat-card__num {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card__label { font-size: 0.9rem; color: var(--cream-dim); font-weight: 500; }

@media (max-width: 700px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- REVIEWS ---- */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}
.review-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.review-stars { display: flex; gap: 4px; color: var(--accent); }
.review-text {
  font-size: 0.97rem;
  color: var(--cream);
  line-height: 1.7;
  flex: 1;
}
.review-text::before { content: '\201C'; font-size: 1.4rem; color: var(--accent); }
.review-meta { display: flex; flex-direction: column; gap: 2px; }
.review-name { font-family: var(--ff-display); font-size: 0.95rem; color: var(--cream); font-weight: 600; }
.review-source { font-size: 0.8rem; color: var(--accent); font-weight: 500; }

@media (max-width: 800px) {
  .reviews__grid { grid-template-columns: 1fr; }
}

/* ---- SOCIAL CTA ---- */
.social-cta {
  background: var(--accent);
  padding: 80px 0;
  text-align: center;
}
.social-cta h2 { color: var(--dark); margin-bottom: 12px; }
.social-cta p { color: rgba(22,12,26,0.7); font-size: 1.05rem; margin-bottom: 32px; }
.social-cta__links { display: flex; justify-content: center; align-items: center; gap: 16px; flex-wrap: wrap; }
.social-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark);
  color: var(--cream);
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-cta__link:hover { background: var(--bg-alt); transform: translateY(-2px); }
.social-cta__link svg { width: 20px; height: 20px; }

/* ---- SOCIAL FEED PREVIEW ---- */
.social-feed__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.social-feed__item {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
}
.social-feed__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.social-feed__item:hover img { transform: scale(1.08); }
.social-feed__item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(22,12,26,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.social-feed__item__overlay svg { width: 28px; height: 28px; color: var(--cream); }
.social-feed__item:hover .social-feed__item__overlay { opacity: 1; }

@media (max-width: 700px) {
  .social-feed__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---- FOOTER ---- */
.footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 72px 0 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}
.footer__logo img { width: 50px; height: 50px; border-radius: 50%; border: 2px solid var(--accent); }
.footer__logo-name {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--cream);
}
.footer__tagline {
  font-size: 0.95rem;
  color: var(--cream-dim);
  font-style: italic;
  line-height: 1.5;
}
.footer__socials { display: flex; gap: 10px; margin-top: 8px; }
.footer__social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: var(--transition);
}
.footer__social-btn:hover { background: var(--accent); color: var(--dark); }
.footer__social-btn svg { width: 18px; height: 18px; }

.footer__col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.footer__col ul li + li { margin-top: 10px; }
.footer__col ul li a {
  font-size: 0.93rem;
  color: var(--cream-dim);
  transition: var(--transition);
}
.footer__col ul li a:hover { color: var(--accent); }

.footer__contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.footer__contact-item svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer__contact-item span { font-size: 0.9rem; color: var(--cream-dim); line-height: 1.5; }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copyright { font-size: 0.82rem; color: var(--cream-dim); }
.footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--accent);
  font-family: var(--ff-display);
  font-weight: 500;
}
.footer__badge svg { width: 14px; height: 14px; }

@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  position: relative;
  padding: 180px 0 100px;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
}
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(22,12,26,0.75) 0%, rgba(22,12,26,0.92) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.page-hero__content .section-label { margin-bottom: 12px; }
.page-hero__content h1 { margin-bottom: 16px; }
.page-hero__content p { font-size: 1.1rem; max-width: 560px; }

/* ---- ABOUT PAGE ---- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.story-img { border-radius: var(--radius-lg); overflow: hidden; }
.story-img img { width: 100%; border-radius: var(--radius-lg); }

.philosophy__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.philosophy-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
}
.philosophy-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.philosophy-card__icon {
  width: 48px; height: 48px;
  color: var(--accent);
  margin-bottom: 20px;
}
.philosophy-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.philosophy-card p { font-size: 0.92rem; }

.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.value-card {
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
}
.value-card:hover { background: var(--accent); color: var(--dark); }
.value-card:hover h4, .value-card:hover p { color: var(--dark); }
.value-card svg { width: 36px; height: 36px; color: var(--accent); margin: 0 auto 14px; display: block; transition: var(--transition); }
.value-card:hover svg { color: var(--dark); }
.value-card h4 { font-size: 0.95rem; color: var(--cream); margin-bottom: 6px; }
.value-card p { font-size: 0.82rem; color: var(--cream-dim); }

.timeline { position: relative; padding: 16px 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0; bottom: 0;
  width: 1px;
  background: var(--border);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  gap: 0;
  margin-bottom: 48px;
  align-items: start;
}
.timeline-item:nth-child(even) .timeline-text { grid-column: 3; }
.timeline-item:nth-child(even) .timeline-dot { grid-column: 2; }
.timeline-item:nth-child(even) .timeline-empty { grid-column: 1; grid-row: 1; }
.timeline-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent);
  margin: 4px auto 0;
  border: 3px solid var(--dark);
  box-shadow: 0 0 0 2px var(--accent);
}
.timeline-text { padding: 0 28px; }
.timeline-year {
  font-family: var(--ff-display);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.timeline-text h4 { margin-bottom: 6px; }
.timeline-text p { font-size: 0.9rem; }

@media (max-width: 820px) {
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .philosophy__grid { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { left: 24px; }
  .timeline-item { grid-template-columns: 48px 1fr; }
  .timeline-item:nth-child(even) .timeline-text { grid-column: 2; }
  .timeline-item:nth-child(even) .timeline-dot { grid-column: 1; }
  .timeline-item:nth-child(even) .timeline-empty { display: none; }
  .timeline-text { padding: 0 0 0 16px; }
}

/* ---- ROOMS PAGE ---- */
.room-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.room-category-tile {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/2;
}
.room-category-tile img { width: 100%; height: 100%; transition: transform 0.5s ease; }
.room-category-tile:hover img { transform: scale(1.05); }
.room-category-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22,12,26,0.9) 0%, rgba(22,12,26,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.room-category-tile__tag {
  font-size: 0.72rem;
  font-family: var(--ff-display);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.room-category-tile h3 { font-size: 1.3rem; color: var(--cream); }

.room-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: 100px;
  font-family: var(--ff-display);
  font-size: 0.85rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  color: var(--cream-dim);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
}

.rooms-list { display: flex; flex-direction: column; gap: 60px; }
.room-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
.room-item:last-child { border-bottom: none; }
.room-item--reverse .room-item__images { order: 2; }
.room-item--reverse .room-item__content { order: 1; }
.room-item__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.room-item__img {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.room-item__img img { width: 100%; height: 100%; }
.room-item__img--main { grid-column: span 2; aspect-ratio: 16/9; }
.room-item__content { display: flex; flex-direction: column; gap: 20px; }
.room-item__tag {
  font-family: var(--ff-display);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.room-item__content h3 { font-size: 1.6rem; }
.room-item__content p { font-size: 0.95rem; }
.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.room-amenity-tag {
  background: var(--accent-dim);
  border: 1px solid var(--border);
  color: var(--cream);
  font-size: 0.8rem;
  padding: 5px 14px;
  border-radius: 100px;
}

@media (max-width: 820px) {
  .room-categories { grid-template-columns: 1fr; }
  .room-item { grid-template-columns: 1fr; gap: 32px; }
  .room-item--reverse .room-item__images { order: 0; }
  .room-item--reverse .room-item__content { order: 0; }
}

/* ---- GALLERY PAGE ---- */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  justify-content: center;
}
.masonry-group {
  column-count: 3;
  column-gap: 12px;
  margin-bottom: 48px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.masonry-item img { width: 100%; display: block; transition: transform 0.4s ease; }
.masonry-item:hover img { transform: scale(1.04); }
.masonry-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(22,12,26,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.masonry-item__overlay svg { width: 32px; height: 32px; color: var(--cream); }
.masonry-item:hover .masonry-item__overlay { opacity: 1; }

@media (max-width: 800px) {
  .masonry-group { column-count: 2; }
}
@media (max-width: 500px) {
  .masonry-group { column-count: 1; }
}

/* ---- LIGHTBOX ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(22,12,26,0.97);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.active { display: flex; }
.lightbox__img-wrap {
  position: relative;
  max-width: min(1100px, 90vw);
  max-height: 85vh;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.lightbox__img-wrap img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  display: block;
}
.lightbox__close {
  position: fixed;
  top: 20px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(247,243,237,0.1);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10000;
}
.lightbox__close:hover { background: var(--accent); color: var(--dark); }
.lightbox__close svg { width: 20px; height: 20px; }
.lightbox__prev,
.lightbox__next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(247,243,237,0.12);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10000;
}
.lightbox__prev { left: 16px; }
.lightbox__next { right: 16px; }
.lightbox__prev:hover,
.lightbox__next:hover { background: var(--accent); color: var(--dark); }
.lightbox__prev svg,
.lightbox__next svg { width: 22px; height: 22px; }
.lightbox__counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-display);
  font-size: 0.85rem;
  color: var(--cream-dim);
  letter-spacing: 0.1em;
}

/* ---- CONTACT PAGE ---- */
.contact-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 72px;
}
.contact-block {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.contact-block:hover { border-color: var(--accent); transform: translateY(-4px); }
.contact-block__icon {
  width: 52px; height: 52px;
  color: var(--accent);
  margin: 0 auto 20px;
}
.contact-block h3 { font-size: 1rem; margin-bottom: 10px; }
.contact-block p { font-size: 0.9rem; margin-bottom: 6px; }
.contact-block a { color: var(--accent); font-weight: 600; transition: var(--transition); }
.contact-block a:hover { color: var(--highlight); }

.contact-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info h2 { margin-bottom: 8px; }
.contact-info p { margin-bottom: 0; }

.form-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
.form-card > p { font-size: 0.9rem; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(247,243,237,0.05);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--cream);
  font-size: 0.95rem;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(232,149,30,0.06);
}
.form-group select option { background: var(--dark); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--cream-dim); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

#formSuccess {
  display: none;
  background: rgba(74,173,206,0.15);
  border: 1.5px solid var(--highlight);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  margin-top: 20px;
}
#formSuccess svg { width: 36px; height: 36px; color: var(--highlight); margin: 0 auto 12px; display: block; }
#formSuccess h4 { color: var(--cream); margin-bottom: 8px; }
#formSuccess p { font-size: 0.9rem; }

.map-placeholder {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 40px;
  margin-bottom: 72px;
}
.map-placeholder svg { width: 48px; height: 48px; color: var(--accent); }
.map-placeholder h4 { font-size: 1.1rem; }
.map-placeholder p { font-size: 0.9rem; max-width: 320px; }

.faq { margin-top: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-family: var(--ff-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--cream);
  cursor: pointer;
  text-align: left;
  gap: 16px;
  background: none;
  transition: var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--accent);
}
.faq-icon svg { width: 14px; height: 14px; transition: transform 0.3s ease; }
.faq-item.open .faq-icon { background: var(--accent); color: var(--dark); }
.faq-item.open .faq-icon svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0;
}
.faq-answer p {
  padding-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 500px; }

@media (max-width: 820px) {
  .contact-blocks { grid-template-columns: 1fr; }
  .contact-form-wrap { grid-template-columns: 1fr; gap: 40px; }
}

/* ---- SCROLL-TO-TOP ---- */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: #F0A830; transform: translateY(-3px); }
.scroll-top svg { width: 20px; height: 20px; }

/* ---- UTILITY ---- */
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }
.hidden { display: none !important; }

/* ---- INTERSECTION OBSERVER animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-d1 { transition-delay: 0.1s; }
.fade-up-d2 { transition-delay: 0.2s; }
.fade-up-d3 { transition-delay: 0.3s; }
.fade-up-d4 { transition-delay: 0.4s; }

/* ---- DIVIDER ---- */
.divider {
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 20px 0;
}
.divider--center { margin: 20px auto; }

/* ---- ABOUT HERO STATS ---- */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: -2px;
}
.about-stat {
  background: var(--bg-alt);
  padding: 36px 24px;
  text-align: center;
}
.about-stat__num {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.about-stat__label { font-size: 0.85rem; color: var(--cream-dim); }

@media (max-width: 700px) {
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .values__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- CTA SECTION ---- */
.cta-section {
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--dark) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 90px 0;
  text-align: center;
}
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { margin-bottom: 36px; font-size: 1.05rem; }
.cta-section .btn-row { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
