/* ============================================
   HOTEL PLAZA NORTE — Main Stylesheet
   ============================================ */

/* ---------- FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ---------- VARIABLES ---------- */
:root {
  --brown: #5C3A1E;
  --brown-light: #7A5233;
  --brown-dark: #3D2510;
  --orange: #D4842A;
  --orange-light: #E8A04D;
  --orange-glow: rgba(212, 132, 42, 0.12);
  --cream: #FAF7F2;
  --cream-dark: #F0EAE0;
  --white: #FFFFFF;
  --text: #2D2419;
  --text-light: #6B5D4F;
  --text-muted: #9B8E80;
  --overlay: rgba(61, 37, 16, 0.6);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; cursor: pointer; font-family: inherit; }

/* ---------- UTILITIES ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 40px;
  height: 1.5px;
  background: var(--orange);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 500;
  color: var(--brown);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 560px;
  font-weight: 300;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  padding: 16px 36px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--brown);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease);
}
.btn-primary span { position: relative; z-index: 1; }
.btn-primary:hover::after { transform: translateX(0); }
.btn-primary:hover { box-shadow: 0 8px 30px rgba(212,132,42,0.3); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.5);
  transition: all 0.4s var(--ease);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--brown);
  border-color: var(--white);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--brown);
  padding: 14px 32px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1.5px solid var(--brown);
  transition: all 0.4s var(--ease);
}
.btn-outline-dark:hover {
  background: var(--brown);
  color: var(--white);
}

/* ---------- TOPBAR ---------- */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s var(--ease);
  background: linear-gradient(to bottom, rgba(20,12,6,0.6), transparent);
}
.topbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.08);
  height: 70px;
}
.topbar-logo img {
  height: 60px;
  transition: height 0.4s var(--ease);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.topbar.scrolled .topbar-logo img { height: 44px; filter: none; }
.topbar-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.topbar-nav a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s;
  position: relative;
}
.topbar-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--orange);
  transition: width 0.3s var(--ease);
}
.topbar-nav a:hover::after { width: 100%; }
.topbar.scrolled .topbar-nav a { color: var(--brown); }

.topbar-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  letter-spacing: 2px !important;
  transition: background 0.3s !important;
}
.topbar-cta::after { display: none !important; }
.topbar-cta:hover { background: var(--brown) !important; }

/* Internal page topbar (dark by default) */
.topbar-internal { background: var(--white); box-shadow: var(--shadow-sm); }
.topbar-internal .topbar-nav a { color: var(--brown); }

/* Mobile */
.menu-toggle {
  display: none;
  background: none;
  width: 30px; height: 24px;
  position: relative;
  z-index: 1001;
}
.menu-toggle span {
  display: block; width: 100%; height: 2px;
  background: var(--white);
  position: absolute; left: 0;
  transition: all 0.3s var(--ease);
}
.topbar.scrolled .menu-toggle span,
.topbar-internal .menu-toggle span { background: var(--brown); }
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 11px; }
.menu-toggle span:nth-child(3) { top: 22px; }
.menu-toggle.active span:nth-child(1) { top: 11px; transform: rotate(45deg); background: var(--brown); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { top: 11px; transform: rotate(-45deg); background: var(--brown); }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .topbar-nav {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    z-index: 1001;
    overflow-y: auto;
  }
  .topbar-nav.open { transform: translateX(0); }
  .topbar-nav a { color: var(--brown) !important; font-size: 1rem; letter-spacing: 3px; }
  .topbar { padding: 0 24px; z-index: 1003; }
  .topbar.menu-open { background: var(--cream) !important; box-shadow: none !important; backdrop-filter: none !important; }
  .menu-toggle { z-index: 1004; position: relative; }
  .topbar-logo { z-index: 1004; position: relative; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 45%, rgba(15,8,3,0.7) 0%, transparent 100%),
    linear-gradient(
      to bottom,
      rgba(20,12,6,0.65) 0%,
      rgba(25,15,8,0.6) 25%,
      rgba(20,12,6,0.55) 50%,
      rgba(15,8,4,0.65) 75%,
      rgba(10,5,2,0.9) 100%
    );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  max-width: 780px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 30px;
  animation: fadeUp 1s 0.2s var(--ease) both;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 24px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8), 0 4px 40px rgba(0,0,0,0.4);
  animation: fadeUp 1s 0.4s var(--ease) both;
}
.hero h1 em { font-style: italic; color: var(--orange-light); text-shadow: 0 2px 4px rgba(0,0,0,0.8), 0 4px 40px rgba(0,0,0,0.4); }
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin: 0 auto 40px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.7), 0 2px 20px rgba(0,0,0,0.3);
  animation: fadeUp 1s 0.6s var(--ease) both;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.8s var(--ease) both;
}
.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase;
  animation: fadeUp 1s 1s var(--ease) both;
}
.hero-scroll .scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ---------- BOOKING BAR ---------- */
.booking-bar {
  position: relative;
  z-index: 10;
  margin-top: -50px;
}
.booking-bar-inner {
  background: var(--white);
  border: 1px solid rgba(92,58,30,0.08);
  box-shadow: var(--shadow-lg);
  padding: 30px 40px;
  display: flex;
  align-items: end;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.booking-field { flex: 1; }
.booking-field label {
  display: block;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.booking-field input, .booking-field select {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1.5px solid var(--cream-dark);
  background: transparent;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--brown);
  outline: none;
  transition: border-color 0.3s;
}
.booking-field input:focus,
.booking-field select:focus { border-color: var(--orange); }
.booking-bar .btn-primary { height: 52px; white-space: nowrap; }
.booking-note {
  text-align: center;
  margin-top: 12px;
  font-size: 0.72rem;
  color: var(--text-muted);
}
.booking-note a { color: var(--orange); font-weight: 500; }

@media (max-width: 768px) {
  .booking-bar { margin-top: -30px; }
  .booking-bar-inner {
    flex-direction: column;
    padding: 24px 20px;
    gap: 20px;
    margin: 0 16px;
  }
  .booking-field { width: 100%; }
  .booking-field label { margin-bottom: 6px; }
  .booking-field input, .booking-field select {
    font-size: 1rem;
    padding: 10px 0;
  }
  .booking-bar .btn-primary {
    width: 100%;
    justify-content: center;
    height: 50px;
  }
  .hero-scroll { display: none; }
}

/* ---------- ABOUT ---------- */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--cream-dark);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}
.about-image {
  position: relative;
  height: 500px;
  overflow: hidden;
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  border: 3px solid var(--orange);
  z-index: 2;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { height: 350px; }
}

/* ---------- ROOMS GRID (Landing) ---------- */
.rooms { background: var(--cream); }
.rooms-header { text-align: center; margin-bottom: 60px; }
.rooms-header .section-label { justify-content: center; }
.rooms-header .section-subtitle { margin: 0 auto; }

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}
.room-card {
  background: var(--white);
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  display: flex;
  flex-direction: column;
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.room-card-img {
  height: 260px;
  overflow: hidden;
  position: relative;
}
.room-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.room-card:hover .room-card-img img { transform: scale(1.05); }

.room-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.room-type {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.room-name {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 600;
  color: var(--brown);
  margin-bottom: 12px;
}
.room-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
  font-weight: 300;
}
.room-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.room-tag {
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  background: var(--cream);
  color: var(--text-light);
}
.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--cream-dark);
  margin-top: auto;
}
.room-price {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 600;
  color: var(--brown);
}
.room-price small {
  font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 400;
  color: var(--text-muted);
  display: block;
}
.room-cta {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--orange);
  display: flex; align-items: center; gap: 8px;
  transition: gap 0.3s var(--ease);
}
.room-cta:hover { gap: 14px; }
.room-cta svg { width: 16px; height: 16px; }

.rooms-info {
  text-align: center;
  margin-top: 40px;
  padding: 24px;
  background: var(--orange-glow);
  border-left: 3px solid var(--orange);
}
.rooms-info p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}
.rooms-info strong { color: var(--brown); }

/* ---------- ROOM DETAIL PAGE ---------- */
.room-hero {
  padding-top: 100px;
  background: var(--white);
}
.room-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 8px;
  max-height: 520px;
  overflow: hidden;
}
.room-hero-main {
  height: 520px;
  overflow: hidden;
  cursor: pointer;
}
.room-hero-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.room-hero-main:hover img { transform: scale(1.03); }
.room-hero-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
}
.room-hero-thumb {
  overflow: hidden;
  cursor: pointer;
}
.room-hero-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.room-hero-thumb:hover img { transform: scale(1.05); }

@media (max-width: 768px) {
  .room-hero-grid {
    grid-template-columns: 1fr;
    max-height: none;
  }
  .room-hero-main { height: 300px; }
  .room-hero-side { grid-template-columns: 1fr 1fr; }
  .room-hero-thumb { height: 180px; }
}

.room-detail { background: var(--white); }
.room-detail-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}

.room-detail-amenities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 30px 0;
}
.room-amenity-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: var(--cream);
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 400;
}
.room-amenity-item .icon { font-size: 1.2rem; }

.room-sidebar {
  position: sticky;
  top: 100px;
  background: var(--cream);
  padding: 36px;
}
.room-sidebar-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 4px;
}
.room-sidebar-per {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.room-sidebar-detail {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.85rem;
}
.room-sidebar-detail .label { color: var(--text-muted); }
.room-sidebar-detail .value { font-weight: 500; color: var(--brown); }
.room-sidebar .btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: 24px;
}
.room-sidebar-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  padding: 14px;
  background: #25D366;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.3s;
}
.room-sidebar-whatsapp:hover { background: #1da851; }

.room-other { background: var(--cream); }
.room-other-header { text-align: center; margin-bottom: 40px; }
.room-other-header .section-label { justify-content: center; }

@media (max-width: 900px) {
  .room-detail-grid { grid-template-columns: 1fr; gap: 30px; }
  .room-sidebar { position: static; }
  .room-detail-amenities { grid-template-columns: 1fr; }
}

/* ---------- AMENITIES ---------- */
.amenities { background: var(--brown-dark); color: var(--white); }
.amenities .section-label { color: var(--orange-light); }
.amenities .section-label::before { background: var(--orange-light); }
.amenities .section-title { color: var(--white); }
.amenities .section-subtitle { color: rgba(255,255,255,0.6); }
.amenities-header { margin-bottom: 60px; }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}
.amenity-item {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s var(--ease);
}
.amenity-item:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(212,132,42,0.3);
  transform: translateY(-4px);
}
.amenity-icon { font-size: 2rem; margin-bottom: 16px; }
.amenity-icon svg { stroke: var(--orange-light); }
.amenity-name {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 500;
  margin-bottom: 8px;
}
.amenity-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300; line-height: 1.6;
}

/* ---------- GALLERY ---------- */
.gallery { background: var(--white); }
.gallery-header { text-align: center; margin-bottom: 50px; }
.gallery-header .section-label { justify-content: center; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 12px;
}
.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item { height: 180px; }
  .gallery-item:first-child { grid-column: span 2; height: 250px; }
}

/* ---------- TESTIMONIALS ---------- */
.testimonials { background: var(--cream); }
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-header .section-label { justify-content: center; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.testimonial-card {
  background: var(--white);
  padding: 40px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem; color: var(--orange); opacity: 0.15;
  position: absolute; top: 10px; left: 24px; line-height: 1;
}
.testimonial-stars { color: var(--orange); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-text {
  font-size: 0.92rem; color: var(--text-light);
  line-height: 1.75; font-weight: 300; font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author { font-size: 0.85rem; font-weight: 600; color: var(--brown); }

/* ---------- LOCATION ---------- */
.location { background: var(--white); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.location-map { height: 450px; overflow: hidden; }
.location-map iframe {
  width: 100%; height: 100%; border: none;
  filter: saturate(0.7) contrast(1.1);
}
.location-item {
  display: flex; gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.location-icon {
  width: 44px; height: 44px;
  background: var(--orange-glow);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.location-label {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 4px;
}
.location-value { font-size: 0.95rem; color: var(--brown); font-weight: 500; }

@media (max-width: 900px) {
  .location-grid { grid-template-columns: 1fr; }
  .location-map { height: 300px; }
}

/* ---------- CTA ---------- */
.cta-section {
  background: var(--brown-dark);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,132,42,0.1), transparent);
  border-radius: 50%;
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white); font-weight: 400;
  margin-bottom: 16px; position: relative;
}
.cta-section h2 em { font-style: italic; color: var(--orange-light); }
.cta-section p {
  color: rgba(255,255,255,0.6); font-size: 0.95rem;
  font-weight: 300; margin-bottom: 36px; position: relative;
}
.cta-actions {
  display: flex; justify-content: center; gap: 16px;
  flex-wrap: wrap; position: relative;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #1a1209;
  color: rgba(255,255,255,0.5);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand-text {
  font-size: 0.82rem; line-height: 1.7;
  margin-top: 16px; max-width: 300px; font-weight: 300;
}
.footer h4 {
  font-family: var(--font-display);
  font-size: 1.1rem; color: var(--white);
  font-weight: 500; margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.82rem; font-weight: 300; transition: color 0.3s; }
.footer-links a:hover { color: var(--orange-light); }
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
  font-size: 0.75rem;
}
.footer-bottom a { color: var(--orange); font-weight: 500; }

@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: transform 0.3s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }

/* ---------- LIGHTBOX ---------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 30px;
  background: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2001;
}

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
  padding: 12px 0;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.breadcrumb a {
  color: var(--orange);
  transition: color 0.3s;
}
.breadcrumb a:hover { color: var(--brown); }
.breadcrumb span { margin: 0 8px; }

/* ---------- MENU PAGE ---------- */
.menu-category-nav {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 50px;
  border-bottom: 1px solid var(--cream-dark);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.menu-category-nav::-webkit-scrollbar { display: none; }
.menu-cat-link {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  padding: 10px 20px;
  background: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-light);
  border: 1px solid var(--cream-dark);
  transition: all 0.3s var(--ease);
}
.menu-cat-link:hover {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
}
.menu-cat-icon { font-size: 1.1rem; }

.menu-section {
  margin-bottom: 50px;
}
.menu-section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--orange);
}
.menu-section-icon { font-size: 1.6rem; }
.menu-section-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--brown);
  flex: 1;
}
.menu-section-count {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 0 40px;
}
.menu-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: background 0.2s;
}
.menu-item:hover {
  background: var(--orange-glow);
  padding-left: 8px;
  padding-right: 8px;
  margin-left: -8px;
  margin-right: -8px;
}
.menu-item-name {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text);
}
.menu-item-dots {
  flex: 1;
  border-bottom: 1px dotted var(--text-muted);
  min-width: 20px;
  margin-bottom: 4px;
}
.menu-item-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--brown);
  white-space: nowrap;
}

@media (max-width: 600px) {
  .menu-grid { grid-template-columns: 1fr; }
  .menu-category-nav { gap: 8px; }
  .menu-cat-link { padding: 8px 14px; font-size: 0.75rem; }
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- PRELOADER ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.5s, visibility 0.5s;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}
.preloader img { height: 60px; }
.preloader-bar {
  width: 120px;
  height: 2px;
  background: var(--cream-dark);
  overflow: hidden;
  border-radius: 2px;
}
.preloader-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: var(--orange);
  animation: preloaderSlide 1s ease-in-out infinite;
}
@keyframes preloaderSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* ---------- SHARE BUTTONS ---------- */
.share-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.share-bar-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.share-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  border: none;
  background: var(--cream);
}
.share-btn:hover { transform: scale(1.1); }
.share-btn svg { width: 18px; height: 18px; }
.share-btn-wa { background: #25D366; }
.share-btn-wa svg { fill: white; }
.share-btn-wa:hover { box-shadow: 0 4px 12px rgba(37,211,102,0.3); }
.share-btn-fb { background: #1877F2; }
.share-btn-fb svg { fill: white; }
.share-btn-fb:hover { box-shadow: 0 4px 12px rgba(24,119,242,0.3); }
.share-btn-copy { background: var(--cream-dark); }
.share-btn-copy svg { stroke: var(--text-light); fill: none; }
.share-btn-copy:hover { background: var(--orange-glow); }
.share-btn-copy.copied { background: #efd; }

/* ---------- GOOGLE REVIEWS ---------- */
.reviews { background: var(--white); }
.reviews-header { text-align: center; margin-bottom: 50px; }
.reviews-header .section-label { justify-content: center; }
.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--cream);
  padding: 24px 40px;
  margin: 0 auto 40px;
}
.reviews-badge-score {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1;
}
.reviews-badge-info {}
.reviews-badge-stars { color: #FBBC05; font-size: 1.2rem; letter-spacing: 2px; }
.reviews-badge-text {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.reviews-badge-google {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-light);
  margin-top: 6px;
}

/* ---------- 404 PAGE ---------- */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--cream);
  padding: 40px 24px;
}
.page-404 h1 {
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  opacity: 0.15;
  margin-bottom: -20px;
}
.page-404 h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 16px;
}
.page-404 p {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 32px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}