/* =====================================================================
   Rosella Bistro — Demo Client Site for Kliently
   What this file owns: all styles for /demo (fictional restaurant).
   What it does NOT own: Kliently marketing site styles (theme.css).
   ===================================================================== */

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

/* ── Tokens ── */
:root {
  --r-bg:      #0e0c08;
  --r-bg2:     #15120b;
  --r-bg3:     #1c1810;
  --r-card:    #1e1a12;
  --r-border:  rgba(212, 170, 95, 0.12);
  --r-fg:      #f0e8d5;
  --r-muted:   #9b8e78;
  --r-gold:    #d4aa5f;
  --r-gold2:   #f0c86a;
  --r-gold-dim: rgba(212, 170, 95, 0.12);
  --r-gold-glow: rgba(212, 170, 95, 0.22);
  --r-red:     #c0392b;
  --r-radius:  10px;
  --r-display: 'Cormorant Garamond', serif;
  --r-body:    'DM Sans', sans-serif;
}

/* ── Reset (scoped to .demo-page) ── */
.demo-page *, .demo-page *::before, .demo-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.demo-page {
  background: var(--r-bg);
  color: var(--r-fg);
  font-family: var(--r-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Kliently badge banner ── */
.kliently-banner {
  background: linear-gradient(90deg, #0a0a0f 0%, #12121a 100%);
  border-bottom: 1px solid rgba(74, 222, 128, 0.15);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: #8888a0;
  position: sticky;
  top: 0;
  z-index: 9999;
}

.kliently-banner strong {
  color: #4ade80;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
}

.kliently-banner a {
  color: #4ade80;
  text-decoration: none;
  font-weight: 600;
  padding: 5px 14px;
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 100px;
  font-size: 0.78rem;
  transition: background 0.2s, border-color 0.2s;
}

.kliently-banner a:hover {
  background: rgba(74, 222, 128, 0.1);
  border-color: rgba(74, 222, 128, 0.5);
}

/* ── Nav ── */
.r-nav {
  position: fixed;
  top: 41px;
  left: 0; right: 0;
  z-index: 999;
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

.r-nav.scrolled {
  background: rgba(14, 12, 8, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--r-border);
}

.r-nav-logo {
  font-family: var(--r-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--r-gold);
  letter-spacing: 0.05em;
  text-decoration: none;
}

.r-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.r-nav-links a {
  color: var(--r-fg);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}

.r-nav-links a:hover { opacity: 1; color: var(--r-gold); }

.r-nav-cta {
  padding: 10px 24px;
  background: var(--r-gold);
  color: var(--r-bg) !important;
  border-radius: 4px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  opacity: 1 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s !important;
}

.r-nav-cta:hover { background: var(--r-gold2) !important; }

/* ── Hero ── */
.r-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 140px 24px 80px;
}

.r-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14,12,8,0.15) 0%, rgba(14,12,8,0.7) 60%, var(--r-bg) 100%),
    url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600&q=80') center/cover no-repeat;
  z-index: 0;
}

.r-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.r-eyebrow {
  display: inline-block;
  font-family: var(--r-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--r-gold);
  margin-bottom: 24px;
  padding: 6px 20px;
  border: 1px solid rgba(212, 170, 95, 0.35);
  border-radius: 2px;
}

.r-hero h1 {
  font-family: var(--r-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--r-fg);
  margin-bottom: 28px;
}

.r-hero h1 em {
  font-style: italic;
  color: var(--r-gold);
}

.r-hero-sub {
  font-size: 1.1rem;
  color: rgba(240, 232, 213, 0.7);
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.r-hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.r-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--r-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.r-btn:hover { transform: translateY(-1px); }

.r-btn-primary {
  background: var(--r-gold);
  color: var(--r-bg);
  box-shadow: 0 4px 24px var(--r-gold-glow);
}

.r-btn-primary:hover {
  background: var(--r-gold2);
  box-shadow: 0 8px 32px rgba(212, 170, 95, 0.35);
}

.r-btn-outline {
  background: transparent;
  color: var(--r-fg);
  border: 1px solid rgba(240, 232, 213, 0.3);
}

.r-btn-outline:hover {
  background: rgba(240, 232, 213, 0.06);
  border-color: rgba(240, 232, 213, 0.5);
}

/* ── Info strip ── */
.r-info-strip {
  background: var(--r-bg2);
  border-top: 1px solid var(--r-border);
  border-bottom: 1px solid var(--r-border);
  padding: 20px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}

.r-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--r-muted);
}

.r-info-item svg {
  width: 16px; height: 16px;
  stroke: var(--r-gold);
  flex-shrink: 0;
}

.r-info-item span { color: var(--r-fg); }

/* ── Section layout ── */
.r-section {
  padding: 96px 40px;
}

.r-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.r-tag {
  font-family: var(--r-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--r-gold);
  margin-bottom: 16px;
}

.r-section h2 {
  font-family: var(--r-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 56px;
}

/* ── Menu ── */
.r-menu-bg { background: var(--r-bg2); }

.r-menu-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 40px;
  background: var(--r-bg3);
  border: 1px solid var(--r-border);
  border-radius: 6px;
  padding: 4px;
  width: fit-content;
}

.r-tab {
  padding: 8px 24px;
  background: transparent;
  border: none;
  border-radius: 4px;
  font-family: var(--r-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--r-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.04em;
}

.r-tab.active {
  background: var(--r-gold);
  color: var(--r-bg);
  font-weight: 600;
}

.r-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--r-border);
  border: 1px solid var(--r-border);
  border-radius: var(--r-radius);
  overflow: hidden;
}

.r-menu-item {
  background: var(--r-card);
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  transition: background 0.2s;
}

.r-menu-item:hover { background: #221e14; }

.r-menu-item-info { flex: 1; }

.r-menu-item-name {
  font-family: var(--r-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--r-fg);
  margin-bottom: 6px;
}

.r-menu-item-desc {
  font-size: 0.88rem;
  color: var(--r-muted);
  line-height: 1.5;
}

.r-menu-item-tag {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--r-gold);
  background: var(--r-gold-dim);
  padding: 2px 8px;
  border-radius: 3px;
}

.r-menu-price {
  font-family: var(--r-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--r-gold);
  white-space: nowrap;
  padding-top: 2px;
}

.r-tab-panel { display: none; }
.r-tab-panel.active { display: block; }

/* ── Reviews ── */
.r-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.r-review-card {
  background: var(--r-card);
  border: 1px solid var(--r-border);
  border-radius: var(--r-radius);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}

.r-review-card:hover {
  border-color: rgba(212, 170, 95, 0.25);
  transform: translateY(-2px);
}

.r-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.r-star {
  width: 14px; height: 14px;
  fill: var(--r-gold);
}

.r-review-text {
  font-family: var(--r-display);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--r-fg);
  margin-bottom: 20px;
}

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

.r-reviewer-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--r-gold-dim);
  border: 1px solid rgba(212, 170, 95, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--r-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--r-gold);
  flex-shrink: 0;
}

.r-reviewer-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--r-fg);
}

.r-reviewer-meta {
  font-size: 0.78rem;
  color: var(--r-muted);
  margin-top: 1px;
}

.r-rating-summary {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  background: var(--r-card);
  border: 1px solid var(--r-border);
  border-radius: var(--r-radius);
}

.r-rating-big {
  font-family: var(--r-display);
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--r-gold);
  line-height: 1;
}

.r-rating-details { flex: 1; }

.r-rating-stars-row {
  display: flex;
  gap: 4px;
  margin-bottom: 6px;
}

.r-rating-count {
  font-size: 0.85rem;
  color: var(--r-muted);
}

.r-rating-source {
  font-size: 0.8rem;
  color: var(--r-muted);
  margin-left: auto;
  text-align: right;
}

.r-google-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--r-muted);
}

/* ── Booking ── */
.r-booking-bg { background: var(--r-bg2); }

.r-booking-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
}

.r-booking-left h2 { margin-bottom: 16px; }

.r-booking-left p {
  color: var(--r-muted);
  font-size: 0.95rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

.r-booking-perks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.r-perk {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.r-perk-dot {
  width: 6px; height: 6px;
  background: var(--r-gold);
  border-radius: 50%;
  margin-top: 9px;
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--r-gold-glow);
}

.r-perk h4 {
  font-family: var(--r-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.r-perk p {
  font-size: 0.86rem;
  color: var(--r-muted);
  margin: 0;
}

.r-booking-form {
  background: var(--r-card);
  border: 1px solid var(--r-border);
  border-radius: 14px;
  padding: 36px;
  position: sticky;
  top: 120px;
}

.r-booking-form h3 {
  font-family: var(--r-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 28px;
  color: var(--r-fg);
}

.r-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

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

.r-form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--r-muted);
}

.r-form-group input,
.r-form-group select {
  background: var(--r-bg3);
  border: 1px solid var(--r-border);
  border-radius: 6px;
  padding: 11px 14px;
  color: var(--r-fg);
  font-family: var(--r-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}

.r-form-group input:focus,
.r-form-group select:focus {
  border-color: var(--r-gold);
}

.r-form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239b8e78' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.r-booking-submit {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  background: var(--r-gold);
  color: var(--r-bg);
  border: none;
  border-radius: 6px;
  font-family: var(--r-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px var(--r-gold-glow);
}

.r-booking-submit:hover {
  background: var(--r-gold2);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(212, 170, 95, 0.35);
}

.r-booking-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--r-muted);
  margin-top: 14px;
}

/* Booking confirmation */
.r-booking-confirm {
  display: none;
  text-align: center;
  padding: 32px 0;
}

.r-booking-confirm .r-confirm-icon {
  width: 56px; height: 56px;
  background: var(--r-gold-dim);
  border: 1px solid rgba(212, 170, 95, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
}

.r-booking-confirm h4 {
  font-family: var(--r-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--r-gold);
}

.r-booking-confirm p {
  font-size: 0.88rem;
  color: var(--r-muted);
  line-height: 1.6;
}

/* ── Chatbot widget ── */
.r-chat-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px; height: 60px;
  background: var(--r-gold);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(212, 170, 95, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  z-index: 1000;
}

.r-chat-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(212, 170, 95, 0.55);
}

.r-chat-fab svg { width: 26px; height: 26px; }

.r-chat-fab .r-chat-close { display: none; }
.r-chat-fab.open .r-chat-icon { display: none; }
.r-chat-fab.open .r-chat-close { display: block; }

.r-chat-bubble {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 340px;
  background: var(--r-card);
  border: 1px solid var(--r-border);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.92) translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s;
  z-index: 999;
}

.r-chat-bubble.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

.r-chat-header {
  background: linear-gradient(135deg, #1e1a12, #2a2318);
  border-bottom: 1px solid var(--r-border);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.r-chat-avatar {
  width: 38px; height: 38px;
  background: var(--r-gold-dim);
  border: 1px solid rgba(212, 170, 95, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--r-display);
  font-size: 1rem;
  color: var(--r-gold);
  flex-shrink: 0;
}

.r-chat-header-info h4 {
  font-family: var(--r-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--r-fg);
  margin-bottom: 2px;
}

.r-chat-header-info span {
  font-size: 0.75rem;
  color: #4ade80;
  font-weight: 500;
}

.r-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 340px;
  min-height: 220px;
  scrollbar-width: thin;
  scrollbar-color: var(--r-border) transparent;
}

.r-msg {
  max-width: 85%;
  font-size: 0.88rem;
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: 12px;
  animation: msgIn 0.2s ease;
}

@keyframes msgIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.r-msg-bot {
  background: var(--r-bg3);
  border: 1px solid var(--r-border);
  color: var(--r-fg);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}

.r-msg-user {
  background: var(--r-gold);
  color: var(--r-bg);
  font-weight: 500;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

.r-chat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 16px 12px;
}

.r-chip {
  padding: 6px 12px;
  background: var(--r-bg3);
  border: 1px solid var(--r-border);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--r-fg);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}

.r-chip:hover {
  border-color: var(--r-gold);
  background: var(--r-gold-dim);
  color: var(--r-gold);
}

.r-chat-input-row {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid var(--r-border);
  background: var(--r-bg2);
}

.r-chat-input {
  flex: 1;
  background: var(--r-bg3);
  border: 1px solid var(--r-border);
  border-radius: 8px;
  padding: 9px 14px;
  color: var(--r-fg);
  font-family: var(--r-body);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s;
}

.r-chat-input:focus { border-color: var(--r-gold); }
.r-chat-input::placeholder { color: var(--r-muted); }

.r-chat-send {
  width: 38px; height: 38px;
  background: var(--r-gold);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}

.r-chat-send:hover { background: var(--r-gold2); transform: scale(1.05); }

.r-chat-send svg { width: 16px; height: 16px; fill: var(--r-bg); }

.r-typing {
  display: none;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  background: var(--r-bg3);
  border: 1px solid var(--r-border);
  border-radius: 12px;
  border-bottom-left-radius: 4px;
  width: fit-content;
  align-self: flex-start;
}

.r-typing.show { display: flex; }

.r-typing span {
  width: 6px; height: 6px;
  background: var(--r-muted);
  border-radius: 50%;
  animation: typingBounce 1.2s infinite;
}

.r-typing span:nth-child(2) { animation-delay: 0.2s; }
.r-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-5px); background: var(--r-gold); }
}

/* ── Powered by badge inside chatbot ── */
.r-chat-powered {
  padding: 6px 16px 10px;
  text-align: center;
  font-size: 0.7rem;
  color: var(--r-muted);
  background: var(--r-bg2);
}

.r-chat-powered strong { color: #4ade80; }

/* ── Gallery strip ── */
.r-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 4px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 96px;
}

.r-gallery-item {
  background: var(--r-bg3);
  overflow: hidden;
}

.r-gallery-item:first-child {
  grid-row: span 2;
}

.r-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.r-gallery-item:hover img { transform: scale(1.04); }

/* ── Restaurant footer ── */
.r-footer {
  background: var(--r-bg);
  border-top: 1px solid var(--r-border);
  padding: 64px 40px 40px;
}

.r-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.r-footer-brand {
  font-family: var(--r-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--r-gold);
  margin-bottom: 12px;
}

.r-footer-tagline {
  font-size: 0.9rem;
  color: var(--r-muted);
  line-height: 1.6;
  max-width: 260px;
  margin-bottom: 24px;
}

.r-footer-social {
  display: flex;
  gap: 12px;
}

.r-social-link {
  width: 36px; height: 36px;
  background: var(--r-bg3);
  border: 1px solid var(--r-border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  color: var(--r-muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.r-social-link:hover {
  border-color: var(--r-gold);
  background: var(--r-gold-dim);
  color: var(--r-gold);
}

.r-footer-col h5 {
  font-family: var(--r-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--r-fg);
  margin-bottom: 16px;
}

.r-footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.r-footer-col ul li a,
.r-footer-col ul li span {
  font-size: 0.88rem;
  color: var(--r-muted);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.4;
  display: block;
}

.r-footer-col ul li a:hover { color: var(--r-fg); }

.r-footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--r-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.r-footer-copy {
  font-size: 0.8rem;
  color: var(--r-muted);
}

.r-powered-by {
  font-size: 0.78rem;
  color: var(--r-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.r-powered-by a {
  color: #4ade80;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .r-booking-layout { grid-template-columns: 1fr; }
  .r-reviews-grid { grid-template-columns: 1fr; }
  .r-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .r-gallery-item:first-child { grid-row: auto; }
  .r-footer-inner { grid-template-columns: 1fr 1fr; }
  .r-nav { padding: 0 20px; }
  .r-section { padding: 72px 20px; }
}

@media (max-width: 640px) {
  .r-menu-grid { grid-template-columns: 1fr; }
  .r-gallery { grid-template-columns: 1fr; height: auto; }
  .r-footer-inner { grid-template-columns: 1fr; }
  .r-nav-links { display: none; }
  .r-chat-bubble { width: calc(100vw - 40px); right: 20px; }
  .r-chat-fab { bottom: 20px; right: 20px; }
  .r-form-row { grid-template-columns: 1fr; }
  .kliently-banner { font-size: 0.75rem; padding: 8px 16px; }
}
