:root {
  --rr-primary: #9f2334;
  --rr-primary-dark: #731525;
  --rr-accent: #f3c7b1;
  --rr-cream: #fff8f3;
  --rr-soft: #f8efe9;
  --rr-dark: #24191b;
  --rr-muted: #6d5c60;
  --rr-border: rgba(36, 25, 27, .11);
  --rr-shadow: 0 24px 60px rgba(68, 32, 37, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--rr-dark);
  background: #fff;
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-navbar {
  padding: 16px 0;
  background: rgba(255, 248, 243, .84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.45);
  transition: all .25s ease;
}
.site-navbar.navbar-scrolled {
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(36,25,27,.08);
}
.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--rr-dark);
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--rr-primary), var(--rr-primary-dark));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: -1px;
}
.nav-link {
  color: rgba(36,25,27,.76);
  font-weight: 600;
}
.nav-link:hover { color: var(--rr-primary); }

.btn-primary {
  --bs-btn-bg: var(--rr-primary);
  --bs-btn-border-color: var(--rr-primary);
  --bs-btn-hover-bg: var(--rr-primary-dark);
  --bs-btn-hover-border-color: var(--rr-primary-dark);
  --bs-btn-active-bg: var(--rr-primary-dark);
  --bs-btn-active-border-color: var(--rr-primary-dark);
  box-shadow: 0 14px 28px rgba(159,35,52,.22);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(36, 25, 27, .86) 0%, rgba(36, 25, 27, .62) 45%, rgba(36, 25, 27, .16) 100%);
}
.hero-content { position: relative; z-index: 1; color: #fff; }
.hero-section h1 {
  font-size: clamp(3rem, 8vw, 6.6rem);
  line-height: .92;
  font-weight: 800;
  letter-spacing: -0.07em;
  max-width: 900px;
}
.hero-section .lead {
  max-width: 720px;
  color: rgba(255,255,255,.86);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--rr-primary);
}
.eyebrow {
  color: #ffd8ca;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  padding: 8px 14px;
  border-radius: 999px;
}
.section-kicker.light { color: #ffd8ca; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-pills span,
.badge-soft {
  border: 1px solid rgba(159,35,52,.18);
  background: rgba(255,255,255,.1);
  color: inherit;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  font-size: .9rem;
}
.badge-soft {
  background: var(--rr-soft);
  color: var(--rr-primary-dark);
}
.glass-card {
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(18px);
  box-shadow: var(--rr-shadow);
  border-radius: 30px;
  padding: 30px;
}
.hero-card h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -.04em;
}
.small-title {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  color: #ffd8ca;
  font-size: .76rem;
}

.quick-info {
  margin-top: -48px;
  position: relative;
  z-index: 4;
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-radius: 26px;
  box-shadow: var(--rr-shadow);
  overflow: hidden;
  border: 1px solid var(--rr-border);
}
.quick-grid > div {
  padding: 24px;
  border-right: 1px solid var(--rr-border);
}
.quick-grid > div:last-child { border-right: 0; }
.quick-grid strong { display: block; margin-bottom: 4px; }
.quick-grid span { color: var(--rr-muted); font-size: .94rem; }

.section-padding { padding: 96px 0; }
.bg-soft { background: var(--rr-cream); }
.bg-dark-custom { background: radial-gradient(circle at top left, #61202b, var(--rr-dark)); }
.section-title {
  font-size: clamp(2rem, 4.2vw, 3.7rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -.055em;
  color: var(--rr-dark);
}
.section-text,
.section-intro {
  color: var(--rr-muted);
  font-size: 1.05rem;
}
.section-intro { max-width: 560px; }

.image-stack { position: relative; }
.image-stack .main-img { aspect-ratio: 4/3; object-fit: cover; }
.floating-rating {
  position: absolute;
  left: -20px;
  bottom: 24px;
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  max-width: 260px;
  border: 1px solid var(--rr-border);
}
.floating-rating strong,
.floating-rating span { display: block; }
.floating-rating span { color: var(--rr-muted); font-size: .93rem; }

.dept-card,
.service-card,
.booking-form,
.contact-box,
.policy-box {
  background: #fff;
  border: 1px solid var(--rr-border);
  border-radius: 28px;
  box-shadow: 0 14px 40px rgba(68, 32, 37, .08);
}
.dept-card {
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}
.dept-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--rr-shadow);
}
.dept-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.dept-body { padding: 26px; }
.dept-body h3,
.service-card h3,
.contact-box h3,
.policy-box h3 {
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -.02em;
}
.dept-body p,
.service-card p { color: var(--rr-muted); }
.dept-body ul {
  list-style: none;
  padding: 0;
  margin: 18px 0;
  display: grid;
  gap: 8px;
}
.dept-body li {
  color: var(--rr-dark);
  font-weight: 600;
  font-size: .94rem;
}
.dept-body li::before {
  content: '✓';
  color: var(--rr-primary);
  font-weight: 800;
  margin-right: 8px;
}
.card-link {
  color: var(--rr-primary);
  font-weight: 800;
}
.card-link:hover { color: var(--rr-primary-dark); }

.service-card {
  padding: 26px;
  transition: transform .22s ease, border-color .22s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(159,35,52,.35);
}
.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--rr-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 18px;
}

.cta-band { position: relative; overflow: hidden; }
.cta-band::after {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  right: -120px;
  top: -120px;
  background: rgba(255,255,255,.08);
  border-radius: 999px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 16px;
}
.gallery-item {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(68, 32, 37, .09);
}
.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease;
}
.gallery-item:hover img { transform: scale(1.045); }

.location-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  color: var(--rr-muted);
}
.map-card {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--rr-shadow);
  border: 1px solid var(--rr-border);
  min-height: 430px;
}
.map-card iframe {
  width: 100%;
  height: 430px;
  border: 0;
}

.booking-form { padding: 32px; }
.form-control,
.form-select {
  min-height: 52px;
  border-radius: 16px;
  border-color: rgba(36,25,27,.15);
}
.form-control:focus,
.form-select:focus {
  border-color: var(--rr-primary);
  box-shadow: 0 0 0 .22rem rgba(159,35,52,.12);
}
.contact-box,
.policy-box { padding: 24px; }
.policy-box ul { margin-bottom: 0; padding-left: 20px; color: var(--rr-muted); }
.contact-box p { margin-bottom: 9px; color: var(--rr-muted); }

.site-footer {
  background: var(--rr-dark);
  color: rgba(255,255,255,.78);
}
.site-footer a { display: block; color: rgba(255,255,255,.78); margin-bottom: 8px; }
.site-footer a:hover { color: #fff; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
}
.footer-title {
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.site-footer hr { border-color: rgba(255,255,255,.14); }
.footer-link { color: #fff !important; font-weight: 800; }

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 99;
  background: #22c55e;
  color: #fff;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(34,197,94,.32);
}
.floating-whatsapp:hover { color: #fff; transform: translateY(-2px); }

@media (max-width: 991px) {
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-grid > div:nth-child(2) { border-right: 0; }
  .quick-grid > div { border-bottom: 1px solid var(--rr-border); }
  .quick-grid > div:nth-child(3), .quick-grid > div:nth-child(4) { border-bottom: 0; }
  .section-padding { padding: 72px 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .floating-rating { left: 18px; }
}

@media (max-width: 575px) {
  .site-navbar { padding: 10px 0; }
  .hero-section h1 { font-size: 3.25rem; }
  .hero-overlay { background: rgba(36,25,27,.72); }
  .quick-info { margin-top: 0; }
  .quick-grid { grid-template-columns: 1fr; border-radius: 0; }
  .quick-grid > div { border-right: 0 !important; border-bottom: 1px solid var(--rr-border) !important; }
  .section-padding { padding: 58px 0; }
  .dept-card img { height: 220px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 230px; }
  .gallery-item.large { grid-column: span 1; grid-row: span 1; }
  .booking-form { padding: 22px; }
  .floating-whatsapp { left: 14px; right: 14px; text-align: center; }
}
