/* ============================================
   VICENTRO — Light Boutique Hotel Theme
   Cảm hứng layout: lhdev.hilab.cloud (Potique)
   Tone: sáng, ấm, sang trọng
   ============================================ */

:root {
  /* Color tokens — palette aligned with VIC logo (orange-red + black) */
  --bg-primary:    #FAF7F2;     /* warm cream */
  --bg-secondary:  #FFFFFF;
  --bg-accent:     #FCEFE6;     /* soft peach — tints toward brand orange */
  --bg-dark:       #0F0F0F;     /* near-black like logo signage panel */
  --text-primary:  #0F0F0F;
  --text-secondary:#3A3A3A;
  --text-muted:    #8B8B8B;
  --text-on-dark:  #F7F2EA;
  --brand-red:     #F15A21;     /* Vicentro signature orange (sampled from logo) */
  --brand-red-dark:#C13E0E;
  --brand-gold:    #B85A2A;     /* burnt-orange accent (replaces gold to stay on-brand) */
  --brand-gold-light:#F4B89A;   /* soft peach — used for italic / decorative emphasis */
  --border-soft:   #E8DACB;
  --border-light:  #F2E8DE;
  --shadow-sm:     0 2px 8px rgba(30, 20, 0, 0.04);
  --shadow-md:     0 8px 24px rgba(30, 20, 0, 0.08);
  --shadow-lg:     0 16px 48px rgba(30, 20, 0, 0.12);

  /* Typography */
  --font-display:  'Playfair Display', 'Be Vietnam Pro', Georgia, serif;
  --font-body:     'Be Vietnam Pro', 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --container:     1280px;
  --gutter:        clamp(1.25rem, 4vw, 2.5rem);
  --section-py:    clamp(4rem, 8vw, 7rem);

  /* Radius */
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-pill:   999px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
  color: var(--text-primary);
}
h1 { font-size: clamp(2.5rem, 6vw, 4.75rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.875rem); }
p  { margin: 0 0 1em; color: var(--text-secondary); }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: var(--section-py) 0; }
.section--cream { background: var(--bg-accent); }
.section--white { background: var(--bg-secondary); }
.section--dark  { background: var(--bg-dark); color: var(--text-on-dark); }
.section--dark p, .section--dark h2 { color: var(--text-on-dark); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 1rem;
}
.section-tag::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--brand-red);
}
.section-number {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--brand-gold);
  font-size: 1rem;
  font-weight: 500;
}
.section-title {
  max-width: 760px;
  margin-bottom: 2.5rem;
}
.section-title p { font-size: 1.0625rem; color: var(--text-secondary); margin-top: .75rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .875rem 1.75rem;
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: .02em;
  border-radius: var(--radius-pill);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand-red);
  color: #fff;
  box-shadow: 0 8px 20px rgba(241,90,33,0.28);
}
.btn-primary:hover { background: var(--brand-red-dark); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(241,90,33,0.34); }

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-soft);
}
.btn-ghost:hover { border-color: var(--text-primary); }

.btn-dark { background: var(--text-primary); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-2px); }

.btn-arrow::after {
  content: '→';
  margin-left: .25rem;
  transition: transform .2s ease;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ============================================
   HEADER
   ============================================ */
.topbar {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  font-size: .8125rem;
  padding: .5rem 0;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.topbar__contact { display: flex; gap: 1.5rem; align-items: center; }
.topbar__contact a:hover { color: var(--brand-gold-light); }
.topbar__socials { display: flex; gap: 1rem; }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 2rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}
.logo--white img { height: 40px; }
.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav a {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--text-primary);
  position: relative;
  padding: .25rem 0;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 1px;
  background: var(--brand-red);
  transition: width .25s ease;
}
.nav a:hover, .nav a.active { color: var(--brand-red); }
.nav a:hover::after, .nav a.active::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 1rem; }
.lang {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: .5rem .75rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-soft);
}
.lang:hover { border-color: var(--brand-red); color: var(--brand-red); }

.hamburger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.hamburger span { display:block; width:18px; height:2px; background: var(--text-primary); border-radius: 2px; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: clamp(620px, 86vh, 880px);
  background: linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.55) 100%),
              url('../../images/rooms/P01/2.jpg') center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding-top: clamp(4rem, 12vh, 9rem);
  padding-bottom: clamp(2rem, 6vh, 4rem);
  width: 100%;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: .75rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1rem;
}
.hero__eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--brand-gold); }
.hero h1 {
  color: #fff;
  font-weight: 500;
  max-width: 14ch;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: italic;
  color: var(--brand-gold-light);
  font-weight: 400;
}
.hero__sub {
  color: rgba(255,255,255,0.9);
  font-size: 1.0625rem;
  max-width: 56ch;
  margin: .5rem 0 2rem;
}
.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: 2rem;
  font-size: .75rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  writing-mode: vertical-rl;
  z-index: 2;
}

/* Booking widget */
.booking {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-top: 2.5rem;
  overflow: hidden;
  color: var(--text-primary);
}
.booking__tabs {
  display: flex;
  border-bottom: 1px solid var(--border-light);
}
.booking__tab {
  flex: 1;
  padding: 1.125rem 1rem;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .03em;
  position: relative;
  transition: color .2s ease;
}
.booking__tab.active {
  color: var(--brand-red);
  background: var(--bg-accent);
}
.booking__tab.active::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--brand-red);
}
.booking__form {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 0;
  padding: 1rem;
}
.booking__field {
  padding: .75rem 1.25rem;
  border-right: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.booking__field:last-of-type { border-right: 0; }
.booking__field label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .12em;
}
.booking__field select,
.booking__field input {
  border: 0;
  background: transparent;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 0;
  appearance: none;
  outline: 0;
  cursor: pointer;
}
.booking__submit {
  align-self: stretch;
  padding: 0 2rem;
  margin: .5rem;
  border-radius: var(--radius-md);
  background: var(--brand-red);
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .9375rem;
  transition: background .2s ease;
}
.booking__submit:hover { background: var(--brand-red-dark); }

/* ============================================
   SECTION: ABOUT
   ============================================ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.about__media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about__media img { width:100%; height:100%; object-fit: cover; }
.about__media::after {
  content: '';
  position: absolute; right: -32px; bottom: -32px;
  width: 160px; height: 160px;
  background: var(--brand-gold);
  border-radius: 50%;
  opacity: .15;
  z-index: -1;
}
.about__copy h2 { margin-bottom: 1.25rem; }
.about__copy h2 em { font-style: italic; color: var(--brand-red); font-weight: 500; }
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-soft);
}
.about__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--brand-red);
  line-height: 1;
  margin-bottom: .25rem;
}
.about__stat span { font-size: .8125rem; color: var(--text-muted); }

/* ============================================
   SECTION: AMENITIES
   ============================================ */
.amenities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.amenity {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.amenity:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-gold-light);
}
.amenity__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--brand-red);
}
.amenity h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.amenity p { font-size: .9375rem; margin: 0; }

/* ============================================
   SECTION: FEATURED ROOMS
   ============================================ */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.room-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-secondary);
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
}
.room-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.room-card__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.room-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.room-card:hover .room-card__media img { transform: scale(1.06); }
.room-card__badge {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(255,255,255,0.92);
  color: var(--brand-red);
  padding: .375rem .75rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}
.room-card__body { padding: 1.5rem; }
.room-card__title {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem;
  margin-bottom: .5rem;
}
.room-card__title h3 { margin: 0; font-size: 1.375rem; }
.room-card__title .num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--brand-gold);
  font-size: 1rem;
}
.room-card__meta {
  display: flex;
  gap: 1rem;
  font-size: .8125rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}
.room-card__meta span { display: inline-flex; align-items: center; gap: .375rem; }
.room-card__foot {
  display: flex; justify-content: space-between; align-items: center;
}
.room-card__price strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--brand-red);
}
.room-card__price small { font-size: .75rem; color: var(--text-muted); }
.room-card__cta {
  font-size: .875rem; font-weight: 600;
  color: var(--text-primary);
  display: inline-flex; align-items: center; gap: .25rem;
}
.room-card__cta::after { content:'→'; transition: transform .2s ease; }
.room-card__cta:hover { color: var(--brand-red); }
.room-card__cta:hover::after { transform: translateX(4px); }

/* ============================================
   SECTION: DECOR / SERVICE BANNER
   ============================================ */
.decor {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.decor__copy h2 em { font-style: italic; color: var(--brand-red); font-weight: 500; }
.decor__list { list-style: none; padding: 0; margin: 1.5rem 0 2rem; }
.decor__list li {
  padding: .75rem 0;
  border-bottom: 1px dashed var(--border-soft);
  font-size: .9375rem;
  color: var(--text-secondary);
  display: flex; gap: .75rem; align-items: center;
}
.decor__list li::before {
  content: '✦';
  color: var(--brand-gold);
  font-size: .875rem;
}
.decor__media {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  aspect-ratio: 1;
}
.decor__media img {
  width:100%; height:100%; object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.decor__media img:nth-child(1) { grid-row: span 2; }

/* ============================================
   SECTION: MAGAZINE / BLOG
   ============================================ */
.magazine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.article-card {
  display: flex;
  flex-direction: column;
}
.article-card__media {
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
}
.article-card__media img {
  width:100%; height:100%; object-fit: cover;
  transition: transform .6s ease;
}
.article-card:hover .article-card__media img { transform: scale(1.05); }
.article-card__cat {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brand-red);
}
.article-card h3 {
  font-size: 1.25rem;
  margin: .5rem 0 .5rem;
  line-height: 1.35;
}
.article-card__meta { font-size: .8125rem; color: var(--text-muted); }

/* ============================================
   SECTION: GALLERY (theme rooms)
   ============================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}
.gallery__item img { width:100%; height:100%; object-fit: cover; transition: transform .6s ease; }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item span {
  position: absolute; left: 1rem; bottom: 1rem;
  background: rgba(255,255,255,0.92);
  color: var(--text-primary);
  padding: .375rem .75rem;
  border-radius: var(--radius-pill);
  font-size: .75rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase;
}
.gallery__item--lg { grid-column: span 2; grid-row: span 2; }
.gallery__item--md { grid-column: span 2; }

/* ============================================
   SECTION: PROMOTIONS
   ============================================ */
.promo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}
.promo-card {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: #fff;
}
.promo-card img {
  position: absolute; inset: 0;
  width:100%; height:100%; object-fit: cover;
  transition: transform .6s ease;
}
.promo-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.75) 100%);
}
.promo-card:hover img { transform: scale(1.05); }
.promo-card__body {
  position: relative; z-index: 1;
  padding: 2rem;
  height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.promo-card__badge {
  position: absolute; top: 1.25rem; left: 1.25rem;
  background: var(--brand-red);
  color: #fff;
  padding: .375rem .75rem;
  border-radius: var(--radius-pill);
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
}
.promo-card h3 { color: #fff; font-size: 1.75rem; margin-bottom: .25rem; }
.promo-card p { color: rgba(255,255,255,0.85); margin: 0 0 1rem; }

/* ============================================
   FINAL CTA
   ============================================ */
.cta {
  text-align: center;
  padding: clamp(4rem, 9vw, 7rem) 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
  color: var(--text-on-dark);
}
.cta::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../../images/rooms/P05/Scene\ 1_7.jpg') center/cover;
  opacity: .15;
}
.cta__inner { position: relative; z-index: 1; }
.cta h2 { color: #fff; max-width: 18ch; margin: 0 auto 1rem; }
.cta h2 em { font-style: italic; color: var(--brand-gold-light); font-weight: 400; }
.cta p { color: rgba(255,255,255,0.8); max-width: 56ch; margin: 0 auto 2rem; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #111;
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 1.5rem;
  font-size: .9375rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer h4 {
  font-family: var(--font-body);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: .625rem; }
.footer a:hover { color: var(--brand-gold-light); }
.footer__brand p { color: rgba(255,255,255,0.6); font-size: .9375rem; max-width: 36ch; }
.newsletter {
  display: flex;
  margin-top: 1rem;
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: rgba(255,255,255,0.06);
}
.newsletter input {
  flex: 1;
  padding: .875rem 1.25rem;
  background: transparent;
  border: 0;
  color: #fff;
  outline: 0;
  font-size: .875rem;
}
.newsletter input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter button {
  padding: 0 1.5rem;
  background: var(--brand-red);
  color: #fff;
  font-weight: 600;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 1.5rem;
  font-size: .8125rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   FLOATING CHAT WIDGET
   ============================================ */
.chat-fab {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--brand-red);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 12px 28px rgba(241,90,33,0.38);
  z-index: 40;
  transition: transform .2s ease;
}
.chat-fab:hover { transform: scale(1.08); }

/* ============================================
   PAGE BANNER (interior pages)
   ============================================ */
.page-banner {
  background: linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.55)),
              url('../../images/rooms/P02/Scene\ 1_5.jpg') center/cover no-repeat;
  color: #fff;
  padding: clamp(6rem, 14vh, 9rem) 0 clamp(4rem, 8vh, 6rem);
  text-align: center;
}
.page-banner h1 { color: #fff; font-weight: 500; margin: 0 0 .5rem; }
.page-banner h1 em { font-style: italic; color: var(--brand-gold-light); font-weight: 400; }
.page-banner p { color: rgba(255,255,255,0.85); margin: 0; }
.breadcrumb {
  display: inline-flex;
  gap: .5rem;
  font-size: .8125rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}
.breadcrumb span { color: var(--brand-gold-light); }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-bottom: 1rem;
}
.contact-card h3 { font-size: 1.125rem; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: .875rem 1rem;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  font-size: .9375rem;
  margin-bottom: 1rem;
  outline: 0;
  transition: border .2s ease;
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--brand-red); }

/* Rooms listing page */
.filter-bar {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 1.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
}
.filter-bar .filter-pill {
  padding: .5rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--bg-accent);
  font-size: .875rem; font-weight: 500;
  border: 1px solid transparent;
  transition: all .2s ease;
}
.filter-bar .filter-pill.active,
.filter-bar .filter-pill:hover {
  background: var(--brand-red);
  color: #fff;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .booking__form { grid-template-columns: 1fr 1fr; }
  .booking__field { border-right: 0; border-bottom: 1px solid var(--border-light); }
  .booking__submit { grid-column: span 2; margin-top: .5rem; }
  .about, .decor { grid-template-columns: 1fr; }
  .amenities { grid-template-columns: repeat(2, 1fr); }
  .rooms-grid, .magazine-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .promo { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .topbar { display: none; }
  .amenities, .rooms-grid, .magazine-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 180px; }
  .gallery__item--lg, .gallery__item--md { grid-column: span 1; grid-row: span 1; }
  .booking__form { grid-template-columns: 1fr; }
  .booking__submit { grid-column: span 1; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .about__stats { grid-template-columns: 1fr 1fr; }
  .header__actions .btn { display: none; }
  .logo img { height: 36px; }
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
