/* ============================================
   Musical Hostel — Design System
   Inspired by shadcn/ui aesthetic
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ── Variables ── */
:root {
  --background: #f7f4ee;
  --foreground: #2f4768;
  --card: #ffffff;
  --card-foreground: #2f4768;
  --primary: #2f4768;
  --primary-foreground: #ffffff;
  --secondary: #eef3f8;
  --secondary-foreground: #4b5f7b;
  --muted: #f3efe8;
  --muted-foreground: #6f7d8f;
  --accent: #f47c20;
  --accent-dark: #de6810;
  --accent-soft: #ffd25a;
  --highlight: #c8d4dc;
  --border: #dfe6ec;
  --border-strong: #c9d4de;
  --input: #dfe6ec;
  --ring: #2f4768;

  --radius: 8px;
  --radius-sm: 4px;
  --radius-lg: 12px;

  --shadow-sm: 0 1px 2px 0 rgb(47 71 104 / 0.06);
  --shadow: 0 1px 3px 0 rgb(47 71 104 / 0.10), 0 1px 2px -1px rgb(47 71 104 / 0.08);
  --shadow-md: 0 10px 24px -12px rgb(47 71 104 / 0.22), 0 6px 12px -8px rgb(47 71 104 / 0.12);

  --font-sans: 'DM Sans', sans-serif;
  --font-serif: 'Instrument Serif', serif;

  --nav-height: 64px;
  --container: 1200px;
  --section-padding: 96px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ── Layout ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-padding) 0;
}

.section--sm { padding: 56px 0; }
.section--lg { padding: 120px 0; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.display-1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
.display-2 { font-size: clamp(2rem, 4vw, 3.25rem); }
.display-3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
.heading-1 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
.heading-2 { font-size: 1.25rem; }

.text-muted { color: var(--muted-foreground); }
.text-accent { color: var(--accent-dark); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; letter-spacing: 0.05em; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font-sans);
  border: 1px solid transparent;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.btn--primary:hover {
  background: #39557b;
  border-color: #39557b;
}

.btn--outline {
  background: transparent;
  color: var(--foreground);
  border-color: var(--border-strong);
}
.btn--outline:hover {
  background: var(--secondary);
}

.btn--accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn--accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn--lg {
  padding: 13px 28px;
  font-size: 0.9375rem;
  border-radius: var(--radius);
}

.btn--ghost {
  background: transparent;
  color: var(--muted-foreground);
  border-color: transparent;
}
.btn--ghost:hover {
  background: var(--secondary);
  color: var(--foreground);
}

/* ── Badge ── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--secondary-foreground);
}

.badge--accent {
  background: #fef3c7;
  border-color: #fde68a;
  color: #92400e;
}

/* ── Cards ── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.card__body {
  padding: 20px;
}

.card__label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.card__price {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 16px;
}

.card__price strong {
  font-size: 1.1rem;
  color: var(--foreground);
  font-weight: 600;
}

/* ── Separator ── */
.separator {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── Navigation ── */
.nav {
  background: rgba(247, 244, 238, 1);
  position: relative;
  z-index: 999;
  border-bottom: 1px solid rgba(47, 71, 104, 0.08);
}

.nav.scrolled {
  background: rgba(247, 244, 238, 0.96);
}


.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logo img {
  height: 32px;
  width: auto;
}

.nav__logo-text {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--foreground);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: all 0.15s ease;
}

.nav__link:hover, .nav__link.active {
  background: var(--secondary);
  color: var(--foreground);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__phone {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  font-weight: 500;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  border: none;
  background: none;
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--foreground);
  transition: all 0.2s ease;
}

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--background);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 9999;
}

.nav__mobile.is-open { display: flex; }

.nav__mobile .nav__link {
  padding: 10px 14px;
  display: block;
}

.nav__mobile-cta {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* Page offset for fixed nav */
.page-content {
  padding-top: var(--nav-height);
}

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, #f6f1e8 0%, #eef4f8 55%, #fef8ea 100%);
  position: relative;
}

.hero__overlay {
  background: #2F4768;
  background: linear-gradient(44deg, rgba(47, 71, 104, 1) 0%, rgba(47, 71, 104, 0) 100%);
  z-index: 4;
  position: absolute;
  height: 100%;
  width: 100%;
}


.hero__content {
  position: relative;
  z-index: 500;
  max-width: 680px;
  padding: 80px 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  color: rgba(255,255,255,0.85);
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__title {
  color: #fff;
  font-size: clamp(2.75rem, 6vw, 5rem);
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero__title em {
  font-style: italic;
  color: var(--accent);
}

.hero__desc {
  color: rgba(255,255,255,0.75);
  font-size: 1.0625rem;
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Section Header ── */
.section-header {
  margin-bottom: 56px;
}

.section-header--center {
  text-align: center;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.section-header .eyebrow {
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  color: var(--muted-foreground);
  font-size: 1.0625rem;
}

/* ── Rooms Grid ── */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── Stats strip ── */
.stats-strip {
  background: #edf3f8;
  color: var(--foreground);
}

.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
}

.stats-strip__item {
  
  padding: 30px 0;
}

.stats-strip__value {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stats-strip__label {
  color: #627389;
}

/* ── Features / Facilities ── */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.facility-item {
  background: var(--card);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.15s ease;
}

.facility-item:hover {
  background: var(--secondary);
}

.facility-icon {
  width: 36px;
  height: 36px;
  background: var(--secondary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}

.facility-item h4 {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
}

.facility-item p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
  color: #f59e0b;
  font-size: 0.875rem;
}

.testimonial-card__text {
  font-size: 0.9375rem;
  color: var(--secondary-foreground);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted-foreground);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: 0.875rem;
  font-weight: 600;
}

.testimonial-card__source {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* ── Nearby ── */
.nearby-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.nearby-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.2s ease;
}

.nearby-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.nearby-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.nearby-card__body {
  padding: 16px;
}

.nearby-card__tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 4px;
}

.nearby-card__name {
  font-family: var(--font-serif);
  font-size: 1.125rem;
}

.nearby-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  margin-top: 10px;
  transition: color 0.15s ease;
}

.nearby-card__link:hover { color: var(--foreground); }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--foreground);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(194, 169, 126, 0.12);
}

.cta-banner__content h2 {
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 12px;
}

.cta-banner__content p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
}

.cta-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ── Location section ── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 380px;
  background: var(--secondary);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.location-info__item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.location-info__item:first-child {
  border-top: 1px solid var(--border);
}

.location-info__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.location-info__label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.location-info__value {
  font-size: 0.9375rem;
  font-weight: 500;
}

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 12px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery-grid__item {
  overflow: hidden;
  background: var(--secondary);
}

.gallery-grid__item:first-child {
  grid-row: 1 / 3;
}

.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-grid__item:hover img {
  transform: scale(1.05);
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--foreground);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40%;
  background: linear-gradient(to right, transparent, rgba(194,169,126,0.06));
}

.page-hero__eyebrow {
  margin-bottom: 16px;
}

.page-hero__eyebrow .eyebrow {
  color: var(--accent);
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 1.0625rem;
  max-width: 540px;
  line-height: 1.65;
}

/* ── Hostel page ── */
.hostel-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hostel-intro__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
}

.hostel-intro__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hostel-intro__content h2 {
  margin-bottom: 20px;
}

.hostel-intro__content p {
  color: var(--muted-foreground);
  line-height: 1.75;
  margin-bottom: 16px;
}

.hostel-intro__highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.hostel-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  font-weight: 500;
}

.hostel-highlight::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── Blog ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.2s ease;
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.blog-card__body {
  padding: 24px;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.blog-card__date {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.blog-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.65;
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.contact-info__item:first-child {
  padding-top: 0;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--secondary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.contact-info__label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-foreground);
  margin-bottom: 4px;
}

.contact-info__value {
  font-weight: 500;
  font-size: 0.9375rem;
}

.contact-info__value a:hover { color: var(--accent-dark); }

/* Contact Form */
.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.contact-form > p {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  margin-bottom: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
}

.form-control {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--foreground);
  background: var(--background);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
}

.form-control:focus {
  outline: none;
  border-color: var(--ring);
  box-shadow: 0 0 0 3px rgba(28,25,23,0.08);
}

.form-control::placeholder { color: var(--muted-foreground); }

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ── About page ── */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-stack {
  position: relative;
  height: 480px;
}

.about-img-stack img {
  position: absolute;
  border-radius: var(--radius-lg);
  border: 4px solid var(--background);
  object-fit: cover;
}

.about-img-stack img:first-child {
  top: 0;
  left: 0;
  width: 70%;
  height: 70%;
  box-shadow: var(--shadow-md);
}

.about-img-stack img:last-child {
  bottom: 0;
  right: 0;
  width: 65%;
  height: 65%;
  box-shadow: var(--shadow-md);
}

.about-content h2 { margin-bottom: 20px; }
.about-content p {
  color: var(--muted-foreground);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* ── Values / Team ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.value-card__icon {
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.value-card h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  line-height: 1.65;
}

/* ── Footer ── */
.footer {
  background: var(--foreground);
  color: rgba(255,255,255,0.7);
}

.footer__top {
  padding: 64px 0 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer__brand img { height: 36px; margin-bottom: 16px; }

.footer__brand-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer__socials {
  display: flex;
  gap: 8px;
}

.footer__social {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: all 0.15s ease;
}

.footer__social:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s ease;
}

.footer__links a:hover { color: rgba(255,255,255,0.9); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}

.footer__bottom a {
  color: rgba(255,255,255,0.4);
  transition: color 0.15s ease;
}

.footer__bottom a:hover { color: rgba(255,255,255,0.7); }

.footer__bottom-links {
  display: flex;
  gap: 20px;
}

/* ── Announcement bar ── */
.announcement-bar {
  background: #49617d;
  color: rgba(255,255,255,1);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.8125rem;
  font-weight: 500;
  z-index: 899;
  position: relative;
  letter-spacing: 0.02em;
}

.announcement-bar a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > * { transition-delay: calc(var(--i, 0) * 80ms); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  :root { --section-padding: 72px; }

  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-banner { flex-direction: column; text-align: center; padding: 48px 32px; }
  .cta-banner__actions { justify-content: center; }
  .location-grid { grid-template-columns: 1fr; }
  .hostel-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-stack { height: 360px; }
}

@media (max-width: 768px) {
  :root { --section-padding: 56px; }

  .nav__links,
  .nav__actions,
  .nav__phone {
    display: none !important;
  }

  .nav__hamburger {
    display: flex !important;
  }

  .nav__mobile.is-open {
    display: flex !important;
  }

  .rooms-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .facilities-grid { grid-template-columns: 1fr; }
  .nearby-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .stats-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-grid__item:first-child { grid-row: auto; grid-column: 1 / 3; }
  .form-row { grid-template-columns: 1fr; }
  .about-img-stack { height: 280px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .stats-strip__grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid__item:first-child { grid-column: auto; }
}
.cta-banner {
  background: linear-gradient(135deg, #2f4768 0%, #49617d 100%);
}

.page-hero {
  background: linear-gradient(135deg, #2f4768 0%, #49617d 100%);
}

.footer {
  background: linear-gradient(135deg, #2f4768 0%, #49617d 100%);
}
.facility-icon i,
.location-info__icon i {
  font-size: inherit;
  line-height: 1;
}