/* ===== RUFUS THE CHURCHILL — GE EDITION STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&family=Quicksand:wght@500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #E8834A;
  --primary-light: #F5A66B;
  --primary-dark: #D66B2F;
  --secondary: #5BA4C9;
  --secondary-light: #7EC4E8;
  --accent: #FFD166;
  --accent-dark: #E6B84D;
  --text-dark: #4A4A4A;
  --text-medium: #6B7280;
  --text-light: #9CA3AF;
  --bg-cream: #FDF8F3;
  --bg-white: #FFFFFF;
  --card-bg: rgba(255, 255, 255, 0.85);
  --card-border: rgba(232, 131, 74, 0.2);
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Nunito', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  min-height: 100vh;
  background: linear-gradient(180deg, #E8F4FC 0%, #F0E6D8 50%, #D4E8D1 100%);
  background-attachment: fixed;
  position: relative;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(255,255,255,.8) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 30%, rgba(255,255,255,.7) 0%, transparent 50%),
    radial-gradient(ellipse 70% 45% at 50% 60%, rgba(255,255,255,.6) 0%, transparent 50%),
    radial-gradient(ellipse 50% 35% at 10% 70%, rgba(255,255,255,.5) 0%, transparent 50%),
    radial-gradient(ellipse 55% 40% at 90% 80%, rgba(255,255,255,.5) 0%, transparent 50%);
  pointer-events: none; z-index: -1;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
ul, ol { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700; line-height: 1.3; color: var(--primary);
}
h1 { font-size: clamp(1.75rem, 5vw, 2.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.25rem); }
p { margin-bottom: 1rem; color: var(--text-medium); }
.text-balance { text-wrap: balance; }

/* ===== LAYOUT ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 768px) { .container { padding: 0 2rem; } }

/* ===== HEADER & NAV ===== */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.95); backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 0; gap: 0.75rem;
}
.logo { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.logo-img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.logo-text { font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--primary); display: none; }
@media (min-width: 400px) { .logo-text { display: block; } }

.menu-toggle {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001;
}
.menu-toggle span { width: 24px; height: 2px; background: var(--primary); border-radius: 2px; transition: all 0.3s ease; }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
@media (min-width: 992px) { .menu-toggle { display: none; } }

.nav-links {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,.98);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 1.5rem; z-index: 1000;
}
.nav-links.active { display: flex; }
.nav-links a {
  font-family: 'Quicksand', sans-serif; font-weight: 600; font-size: 1.25rem;
  color: var(--text-dark); padding: 0.5rem 1rem; border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); background: rgba(232,131,74,.1); }
@media (min-width: 992px) {
  .nav-links { display: flex; position: static; flex-direction: row; background: none; gap: 0.2rem; }
  .nav-links a { font-size: 0.88rem; padding: 0.45rem 0.7rem; min-height: 48px; display: flex; align-items: center; justify-content: center; text-align: center; line-height: 1.2; }
}
.nav-cta { display: none; }
@media (min-width: 992px) { .nav-cta { display: block; } }

/* ===== LANGUAGE SWITCHER ===== */
.language-switcher-clean {
  display: flex; align-items: center; gap: 4px;
  margin-left: 6px; padding: 4px;
  background: #fff4ed; border: 1px solid rgba(232,131,74,.22);
  border-radius: 999px; box-shadow: 0 8px 20px rgba(232,131,74,.08);
  white-space: nowrap;
}
.language-switcher-clean a {
  text-decoration: none; font-size: 11px; font-weight: 800;
  color: #3c3a36; padding: 7px 9px; border-radius: 999px;
  line-height: 1; transition: all 0.2s ease;
}
.language-switcher-clean a:hover,
.language-switcher-clean a.active-lang {
  color: #fff; background: var(--primary, #e8834a);
  box-shadow: 0 8px 18px rgba(232,131,74,.24);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 0.875rem 1.75rem;
  font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 1rem;
  border-radius: var(--radius-lg); border: none; cursor: pointer;
  transition: all 0.3s ease; text-align: center;
}
.btn-primary { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); color: white; box-shadow: 0 4px 15px rgba(232,131,74,.4); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,131,74,.5); }
.btn-secondary { background: var(--bg-white); color: var(--primary); border: 2px solid var(--primary); }
.btn-secondary:hover { background: var(--primary); color: white; }
.btn-accent { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); color: var(--text-dark); box-shadow: 0 4px 15px rgba(255,209,102,.4); }
.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.125rem; }

/* ===== CARDS ===== */
.card { background: var(--card-bg); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow-soft); border: 1px solid var(--card-border); backdrop-filter: blur(10px); }
.card-lg { padding: 2rem; }
@media (min-width: 768px) { .card { padding: 2rem; } .card-lg { padding: 3rem; } }

/* ===== HERO ===== */
.hero { padding: 2rem 0 3rem; }
.hero-content { text-align: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(232,131,74,.15); color: var(--primary); padding: 0.5rem 1rem; border-radius: 50px; font-size: 0.875rem; font-weight: 600; margin-bottom: 1.5rem; }
.hero h1 { color: var(--text-dark); margin-bottom: 1rem; }
.hero h1 span { color: var(--primary); }
.hero-subtitle { font-size: 1.1rem; color: var(--text-medium); max-width: 600px; margin: 0 auto 2rem; }
.hero-cta { display: flex; flex-direction: column; gap: 1rem; align-items: center; }
@media (min-width: 480px) { .hero-cta { flex-direction: row; justify-content: center; } }

/* ===== STEPS ===== */
.steps { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin: 2rem 0; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { text-align: center; padding: 1.5rem; }
.step-icon { width: 80px; height: 80px; margin: 0 auto 1rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; box-shadow: 0 4px 15px rgba(255,209,102,.4); }
.step-number { position: absolute; top: -5px; right: -5px; width: 28px; height: 28px; background: var(--primary); color: white; border-radius: 50%; font-size: 0.875rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.step-icon-wrapper { position: relative; display: inline-block; }
.step h3 { margin-bottom: 0.5rem; color: var(--text-dark); }
.step p { font-size: 0.9rem; }

/* ===== PACKS ===== */
.packs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin: 2rem 0; text-align: center; }
@media (min-width: 768px) { .packs-grid { grid-template-columns: repeat(4, 1fr); } }
.pack-card { border-radius: var(--radius-lg); padding: 1.25rem; text-align: center; border: 2px solid var(--accent); transition: all 0.3s ease; cursor: pointer; }
.pack-card:hover, .pack-card.selected { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(255,209,102,.4); border-color: var(--primary); }
.pack-card.popular { border-color: var(--primary); position: relative; }
.pack-card.popular::before { content: 'Popular'; position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: var(--primary); color: white; padding: 0.25rem 0.75rem; border-radius: 50px; font-size: 0.75rem; font-weight: 700; }
.pack-amount { font-family: 'Quicksand', sans-serif; font-size: 2rem; font-weight: 800; color: var(--primary); text-align: center; }
.pack-unit { font-size: 0.875rem; color: var(--text-medium); margin-bottom: 0.5rem; }
.pack-weight { font-size: 0.8rem; color: var(--secondary); margin-bottom: 0.75rem; }
.pack-price { font-family: 'Quicksand', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--text-dark); }
.pack-duration { font-size: 0.75rem; color: var(--text-light); margin-top: 0.25rem; }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 992px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item { aspect-ratio: 1; border-radius: var(--radius-md); overflow: hidden; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.3) 0%, transparent 50%); opacity: 0; transition: opacity 0.3s ease; }
.gallery-item:hover::after { opacity: 1; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: var(--card-bg); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--card-border); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 1.5rem; background: none; border: none; cursor: pointer; text-align: left; font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 1rem; color: var(--text-dark); transition: background 0.3s ease; }
.faq-question:hover { background: rgba(232,131,74,.05); }
.faq-icon { width: 24px; height: 24px; flex-shrink: 0; position: relative; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--primary); border-radius: 2px; transition: transform 0.3s ease; }
.faq-icon::before { width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%); }
.faq-icon::after { width: 2px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); }
.faq-item.active .faq-icon::after { transform: translateX(-50%) rotate(90deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer-inner { padding: 0 1.5rem 1.5rem; color: var(--text-medium); }

/* ===== IMPACT STATS ===== */
.impact-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 768px) { .impact-stats { grid-template-columns: repeat(4, 1fr); } }
.stat-item { text-align: center; padding: 1.5rem; }
.stat-number { font-family: 'Quicksand', sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--primary); line-height: 1; }
.stat-label { font-size: 0.9rem; color: var(--text-medium); margin-top: 0.5rem; }

/* ===== SECTIONS ===== */
.section { padding: 1rem 0; }
.section-header { text-align: center; margin-bottom: 2rem; }
.section-header h2 { margin-bottom: 0.5rem; }
.section-header p { max-width: 600px; margin: 0 auto; }
.page-header { padding: 2rem 0; text-align: center; }
.page-header h1 { margin-bottom: 0.5rem; }
.content-section { margin-bottom: 2rem; }
.content-section h3 { margin-bottom: 0.75rem; color: var(--primary); }
.content-section ul { list-style: disc; padding-left: 1.5rem; }
.content-section li { margin-bottom: 0.5rem; color: var(--text-medium); }

/* ===== CONTACT ===== */
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon { width: 48px; height: 48px; flex-shrink: 0; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: white; font-size: 1.25rem; }
.contact-details h4 { color: var(--text-dark); margin-bottom: 0.25rem; }
.contact-details p { margin-bottom: 0; font-size: 0.9rem; }
.contact-details a { color: var(--primary); }
.contact-details a:hover { text-decoration: underline; }

/* ===== PAYMENT METHODS ===== */
.payment-methods { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.5rem; padding: 1.5rem; background: var(--bg-white); border-radius: var(--radius-md); }
.payment-methods img { height: 30px; width: min(100%, 420px) !important; height: auto !important; opacity: 0.7; transition: opacity 0.3s ease; }
.payment-methods img:hover { opacity: 1; }

/* ===== FOOTER ===== */
.footer { background: rgba(255,255,255,.9); backdrop-filter: blur(10px); padding: 2rem 0; margin-top: 3rem; }
.footer-content { display: flex; flex-direction: column; gap: 1.5rem; align-items: center; text-align: center; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.footer-links a { color: var(--text-medium); font-size: 0.9rem; padding: 0.5rem; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--primary); }
.footer-copyright { font-size: 0.85rem; color: var(--text-light); }

/* ===== FOOTER SOCIAL ICONS ===== */
.footer-social-icons { display: flex; justify-content: center; align-items: center; gap: 14px; margin: 18px 0 10px; }
.footer-social-icons a { width: 46px; height: 46px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; background: #fff; border: 1px solid rgba(232,131,74,.22); box-shadow: 0 10px 24px rgba(70,52,35,.10); transition: all 0.2s ease; }
.footer-social-icons a:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(232,131,74,.22); background: #fff4ed; }
.footer-social-icons svg { width: 23px; height: 23px; display: block; }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.mb-0 { margin-bottom: 0; } .mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.highlight { background: linear-gradient(120deg, rgba(255,209,102,.4) 0%, rgba(255,209,102,.4) 100%); background-repeat: no-repeat; background-size: 100% 40%; background-position: 0 90%; }

/* ===== MASCOT ===== */
.mascot { position: fixed; bottom: 20px; right: 20px; width: 76px !important; height: 76px !important; right: 14px !important; bottom: 14px !important; z-index: 100; animation: bounce 2s infinite; cursor: pointer; }
.mascot img { width: 76px !important; height: auto !important; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (min-width: 768px) { .mascot { width: 80px; height: 80px; } }

@media (max-width: 767px) { .section { padding: 2rem 0; } .card-lg { padding: 1.5rem; } }
@media print { .header, .footer, .mascot, .menu-toggle { display: none; } body { background: white; } body::before { display: none; } }


/* =====================================================================
   RUFUS CREATIVE REFRESH V2
   ===================================================================== */
:root {
  --rufus-navy: #17102f;
  --rufus-ink: #16111f;
  --rufus-orange: #f37b3d;
  --rufus-coral: #ff4f86;
  --rufus-teal: #00aebb;
  --rufus-mint: #d9f2f0;
  --rufus-cream: #fff8ea;
  --rufus-yellow: #ffd34f;
  --rufus-paper: #fffdf7;
  --primary: var(--rufus-orange);
  --primary-light: #ffab73;
  --primary-dark: #d85e22;
  --secondary: var(--rufus-teal);
  --secondary-light: #54d4db;
  --accent: var(--rufus-yellow);
  --accent-dark: #eabf31;
  --text-dark: var(--rufus-navy);
  --text-medium: #5f6674;
  --bg-cream: var(--rufus-cream);
  --card-bg: rgba(255,253,247,.90);
  --card-border: rgba(23,16,47,.10);
  --shadow-soft: 0 14px 38px rgba(22,17,31,.08);
  --shadow-medium: 0 24px 70px rgba(22,17,31,.14);
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
}

body {
  color: var(--rufus-navy);
  background:
    radial-gradient(circle at 9% 8%, rgba(255,79,134,.12) 0 0.65rem, transparent .7rem),
    radial-gradient(circle at 92% 18%, rgba(0,174,187,.13) 0 0.8rem, transparent .85rem),
    radial-gradient(circle at 14% 82%, rgba(255,211,79,.18) 0 0.95rem, transparent 1rem),
    linear-gradient(135deg, #fff8ea 0%, #f7fbf8 42%, #dff1ed 100%) !important;
  background-attachment: fixed !important;
}
body::before {
  opacity: .56;
  background:
    radial-gradient(ellipse 38% 22% at 14% 11%, rgba(255,255,255,.96), transparent 58%),
    radial-gradient(ellipse 45% 22% at 89% 19%, rgba(255,255,255,.72), transparent 60%),
    radial-gradient(ellipse 50% 25% at 48% 82%, rgba(255,255,255,.64), transparent 62%) !important;
}
body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: -1;
  background-image:
    linear-gradient(90deg, rgba(23,16,47,.035) 1px, transparent 1px),
    linear-gradient(rgba(23,16,47,.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.45), transparent 80%);
}

.header { background: rgba(255,253,247,.88) !important; border-bottom: 1px solid rgba(23,16,47,.08); box-shadow: 0 14px 40px rgba(23,16,47,.07) !important; }
.nav { min-height: 76px; }
.logo img, .logo-img, .nav > img { width: 96px !important; max-width: 96px !important; height: auto !important; display: block; filter: drop-shadow(0 9px 12px rgba(23,16,47,.13)); }
.logo-text { color: var(--rufus-navy) !important; font-weight: 900 !important; letter-spacing: -.02em; }
.nav-link { color: var(--rufus-navy) !important; font-weight: 900 !important; border-radius: 999px; padding: .62rem .88rem !important; }
.nav-link:hover, .nav-link.active { background: rgba(255,79,134,.12) !important; color: var(--rufus-coral) !important; }
.language-switcher-clean { background: #fff !important; border: 2px solid rgba(23,16,47,.08) !important; box-shadow: 0 12px 28px rgba(23,16,47,.08) !important; }
.language-switcher-clean a.active-lang, .language-switcher-clean a:hover { background: var(--rufus-navy) !important; color: #fff !important; }

.btn { border-radius: 999px !important; font-weight: 900 !important; letter-spacing: .01em; border: 2px solid transparent; position: relative; overflow: hidden; }
.btn-primary { background: linear-gradient(135deg, var(--rufus-orange), var(--rufus-coral)) !important; color: #fff !important; box-shadow: 0 16px 34px rgba(243,123,61,.32) !important; }
.btn-primary:hover { transform: translateY(-3px) rotate(-1deg) !important; box-shadow: 0 22px 45px rgba(243,123,61,.40) !important; }
.btn-secondary { color: var(--rufus-navy) !important; background: #fff !important; border-color: rgba(23,16,47,.14) !important; box-shadow: 0 10px 24px rgba(23,16,47,.08); }
.btn-secondary:hover { color: var(--rufus-coral) !important; border-color: var(--rufus-coral) !important; }

.hero, .page-header { position: relative; overflow: hidden; padding: clamp(3.2rem,7vw,6.5rem) 0 clamp(3rem,6vw,5.5rem) !important; }
.hero::before, .page-header::before {
  content: ""; position: absolute;
  inset: 1.1rem max(1.75rem, calc((100vw - 1200px)/2 + 1.75rem)) 1.1rem;
  border-radius: 44px;
  background:
    url("../images/rufus-wave.svg") bottom center / 100% 30% no-repeat,
    radial-gradient(circle at 78% 19%, rgba(255,79,134,.20) 0 0.9rem, transparent 1rem),
    radial-gradient(circle at 19% 31%, rgba(0,174,187,.20) 0 1.1rem, transparent 1.15rem),
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,248,234,.92) 48%, rgba(217,242,240,.88));
  border: 1px solid rgba(23,16,47,.09); box-shadow: var(--shadow-medium); z-index: 0;
}
.hero::after, .page-header::after {
  content: ""; position: absolute;
  right: max(1rem, calc((100vw - 1200px)/2 + 2rem)); bottom: 1.6rem;
  width: clamp(120px,17vw,230px); aspect-ratio: 1.3/1;
  background: url("../images/logo.png") center / contain no-repeat;
  filter: drop-shadow(0 18px 22px rgba(23,16,47,.18));
  transform: rotate(4deg); opacity: .98; z-index: 1;
}
.hero .container, .page-header .container { position: relative; z-index: 2; max-width: 1200px !important; padding-left: clamp(1.75rem,4vw,4.25rem) !important; padding-right: clamp(1.75rem,4vw,4.25rem) !important; }
.hero-content, .page-header .container { max-width: 760px; margin-left: 0; text-align: left !important; }
.hero h1, .page-header h1 { display: inline; color: var(--rufus-navy) !important; font-family: 'Quicksand','Nunito',sans-serif !important; font-weight: 900 !important; font-size: clamp(2.1rem,6vw,4.6rem) !important; line-height: .98 !important; letter-spacing: -.055em; text-shadow: 0 5px 0 rgba(255,255,255,.9); }
.hero h1 span, .page-header h1 span { color: var(--rufus-coral) !important; }
.hero-subtitle, .page-header p { color: #44475a !important; font-size: clamp(1rem,1.6vw,1.22rem) !important; max-width: 610px; margin: 1.25rem 0 1.8rem !important; }
.hero-cta { justify-content: flex-start !important; align-items: flex-start !important; }
.hero-badge { background: #fff !important; border: 2px solid rgba(23,16,47,.10); color: var(--rufus-coral) !important; font-weight: 900 !important; box-shadow: 0 10px 25px rgba(23,16,47,.08); }

.section, .section1 { position: relative; padding: clamp(2rem,5vw,4.4rem) 0 !important; }
.card { background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,253,247,.92)) !important; border: 1px solid rgba(23,16,47,.10) !important; border-radius: 34px !important; box-shadow: var(--shadow-soft) !important; position: relative; overflow: hidden; }
.card::before { content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit; background: radial-gradient(circle at 95% 8%, rgba(255,79,134,.08) 0 3rem, transparent 3.2rem), radial-gradient(circle at 4% 100%, rgba(0,174,187,.08) 0 4rem, transparent 4.2rem); }
.card > * { position: relative; z-index: 1; }
.card-lg { padding: clamp(1.35rem,3vw,3.2rem) !important; }
.card.card-lg::after { content: "♥"; position: absolute; right: 1.1rem; bottom: .7rem; font-size: 2rem; color: rgba(255,79,134,.18); transform: rotate(12deg); }

.section-header h2, .card h2, .card > h3, .dogs-list-header h3, .content-section h3, .donation-info h4 { color: var(--rufus-orange) !important; font-weight: 900 !important; letter-spacing: -.035em; }
.section-header p { max-width: 650px; margin-left: auto; margin-right: auto; }

.steps { gap: clamp(1rem,2vw,1.6rem) !important; }
.step { background: rgba(255,248,234,.78); border: 2px solid rgba(23,16,47,.08); border-radius: 26px; box-shadow: 0 12px 28px rgba(23,16,47,.06); transition: transform .25s ease, box-shadow .25s ease; }
.step:hover { transform: translateY(-5px) rotate(-.5deg); box-shadow: 0 18px 40px rgba(23,16,47,.10); }
.step:nth-child(2) { background: rgba(217,242,240,.80); }
.step:nth-child(3) { background: rgba(255,79,134,.07); }
.step img { filter: drop-shadow(0 12px 14px rgba(23,16,47,.12)); width: 82px !important; }
.step h3 { color: var(--rufus-orange) !important; font-weight: 900 !important; }

.packs-grid { gap: clamp(.9rem,2vw,1.6rem) !important; margin: 1.2rem 0 2rem !important; }
.pack-card { background: linear-gradient(180deg, #fff 0%, #fff8ea 100%) !important; border: 2px solid rgba(23,16,47,.10) !important; border-radius: 28px !important; padding: clamp(.7rem,1.6vw,1.2rem) !important; box-shadow: 0 16px 32px rgba(23,16,47,.07); min-height: 170px; display: grid; place-items: center; transform-origin: 50% 100%; }
.pack-card:nth-child(2n) { background: linear-gradient(180deg, #fff 0%, #eafffd 100%) !important; }
.pack-card:nth-child(3n) { background: linear-gradient(180deg, #fff 0%, #fff0f6 100%) !important; }
.pack-card img { width: min(220px,100%) !important; width: min(190px,100%) !important; filter: drop-shadow(0 18px 24px rgba(23,16,47,.12)); transform: rotate(-1.2deg); }
.pack-card:hover, .pack-card.selected { transform: translateY(-8px) rotate(-1deg) !important; border-color: var(--rufus-coral) !important; box-shadow: 0 26px 52px rgba(255,79,134,.18) !important; }
.pack-card.popular::before { background: var(--rufus-coral) !important; border: 2px solid #fff; box-shadow: 0 10px 22px rgba(255,79,134,.25); text-transform: uppercase; letter-spacing: .06em; }

.payment-methods { background: rgba(255,255,255,.70) !important; border: 1px solid rgba(23,16,47,.08); border-radius: 24px !important; box-shadow: inset 0 0 0 1px rgba(255,255,255,.7); }
.donation-info, .content-section { border-top: 1px dashed rgba(23,16,47,.15) !important; padding-top: 1.35rem !important; }
.content-section[style*="background"] { background: linear-gradient(135deg, rgba(255,211,79,.18), rgba(255,79,134,.09)) !important; border: 2px solid rgba(23,16,47,.08); box-shadow: 0 14px 32px rgba(23,16,47,.06); }

.faq-item { border: 1px solid rgba(23,16,47,.08) !important; border-radius: 22px !important; margin-bottom: 1rem !important; overflow: hidden; background: rgba(255,255,255,.80); box-shadow: 0 10px 22px rgba(23,16,47,.05); }
.faq-question { font-weight: 900 !important; color: var(--rufus-navy) !important; }
.gallery-grid img, .gallery-preview img { border-radius: 24px !important; box-shadow: 0 16px 35px rgba(23,16,47,.13); border: 6px solid #fff; }

.footer { background: rgba(23,16,47,.96) !important; color: #fff !important; border-top: 5px solid var(--rufus-coral); }
.footer p, .footer a, .footer h3, .footer h4 { color: rgba(255,255,255,.86) !important; }
.footer a:hover { color: var(--rufus-yellow) !important; }
.footer-social-icons a { border: 2px solid rgba(255,255,255,.14) !important; background: rgba(255,255,255,.08) !important; }

@media (max-width: 900px) {
  .nav { min-height: 68px; }
  .logo img, .nav > img { width: 76px !important; max-width: 76px !important; }
  .hero::after, .page-header::after { opacity: .22; width: 180px; right: 1rem; bottom: .75rem; }
  .hero-content, .page-header .container { text-align: center !important; margin: 0 auto; }
  .hero-cta { justify-content: center !important; align-items: center !important; }
  .language-switcher-clean { order: 3; margin-left: auto; margin-right: 0.35rem; }
  .nav-cta { display: none !important; }
}
@media (max-width: 640px) {
  .container { width: 100% !important; padding-left: 16px !important; padding-right: 16px !important; }
  .header .container { padding-left: 12px !important; padding-right: 12px !important; }
  .logo img, .nav > img { width: 64px !important; max-width: 64px !important; }
  .menu-toggle { margin-left: auto !important; }
  .language-switcher-clean { order: 2; margin-left: auto; }
  .language-switcher-clean a { font-size: 10px; padding: 6px 8px; }
  .hero { min-height: auto !important; }
  .hero h1, .page-header h1 { font-size: clamp(1.5rem,7.5vw,2.25rem) !important; line-height: 1.08 !important; }
  .hero-badge { margin-bottom: 0.85rem !important; padding: 0.45rem 0.8rem !important; font-size: 0.8rem !important; }
  .hero-subtitle, .page-header p { font-size: 1rem !important; line-height: 1.55 !important; }
  .hero-cta, .text-center.mt-3, .text-center.mt-4 { margin-top: 1rem !important; }
  .btn, .btn-lg, .btn-sm { min-height: 44px; padding: 0.8rem 1rem !important; font-size: 0.92rem !important; }
  .hero-cta { display: grid !important; grid-template-columns: 1fr; width: 100%; max-width: 330px; margin-left: auto; margin-right: auto; }
  .card, .card-lg { border-radius: 20px !important; }
  .steps { grid-template-columns: 1fr !important; }
  .gallery-grid, .gallery-grid-lg { grid-template-columns: repeat(2, 1fr) !important; }
  .footer { padding-top: 1.4rem !important; padding-bottom: 1.4rem !important; }
  .footer-links { display: flex; justify-content: center; gap: 0.55rem; flex-wrap: wrap; }
  .footer-social-icons a { width: 44px; height: 44px; }
  .packs-grid { grid-template-columns: 1fr 1fr !important; }
  .pack-card { min-height: 130px; }
  .hero::before, .page-header::before { inset: .65rem; border-radius: 28px; }
}
@media (max-width: 390px) {
  .language-switcher-clean a { padding: 6px 7px; }
  .logo img, .nav > img { width: 58px !important; max-width: 58px !important; }
}

/* Hero title size: 25% smaller for GE */
.hero h1 {
  font-size: clamp(1.58rem, 4.5vw, 3.45rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.025em !important;
  max-width: 760px !important;
}
@media (max-width: 640px) {
  .hero h1 { font-size: clamp(1.5rem, 7.5vw, 2.25rem) !important; }
}

/* Page header fixes */
.page-header .container { width: 100%; max-width: 1200px !important; margin-left: auto !important; margin-right: auto !important; padding-left: clamp(1.5rem,5vw,4.5rem) !important; padding-right: clamp(1.5rem,5vw,4.5rem) !important; }
.page-header h1 { display: block !important; max-width: min(720px,62vw); font-size: clamp(1.9rem, 3.3vw, 2.75rem) !important; line-height: 1.12 !important; letter-spacing: -0.02em !important; }
.page-header p { max-width: min(640px,58vw); font-size: clamp(1rem, 1.25vw, 1.15rem) !important; line-height: 1.6 !important; }
@media (max-width: 900px) { .page-header .container { padding-left: 1.5rem !important; padding-right: 1.5rem !important; } .page-header h1, .page-header p { max-width: 100%; } }

/* Spacing fixes */
.hero, .page-header { padding-top: clamp(0.9rem,3vw,2rem) !important; padding-bottom: clamp(0.9rem,3vw,2rem) !important; }
.section, .section1 { padding-top: clamp(0.75rem,3vw,1.6rem) !important; padding-bottom: clamp(0.75rem,3vw,1.6rem) !important; }
.card, .card-lg { padding: clamp(0.85rem,3vw,1.35rem) !important; }
.hero-content { padding-top: 0 !important; padding-bottom: 0 !important; padding-left: 0 !important; margin-left: 0 !important; }
.hero h1, .page-header h1 { margin-bottom: 0.7rem !important; }
.hero-subtitle, .page-header p, .section-header p { margin-bottom: 1rem !important; }
.steps { gap: 0.75rem !important; margin: 1rem 0 !important; }
.step { padding: 0.85rem 0.5rem !important; }
.step h3 { margin-bottom: 0.35rem !important; }
.step p { margin-bottom: 0.35rem !important; font-size: 0.95rem !important; line-height: 1.45 !important; }
.hero-cta { margin-top: 1.1rem !important; gap: 0.75rem !important; }
.section-header { margin-bottom: 0.85rem !important; }
.section-header h2 { margin-bottom: 0.35rem !important; }
.gallery-preview, .gallery-grid, .photo-grid { margin-top: 0.75rem !important; }
.steps, .packs-grid, .gallery-grid, .gallery-grid-lg { gap: clamp(0.75rem,3vw,1.5rem) !important; }
.step { padding-top: 0.7rem !important; padding-bottom: 0.7rem !important; }
.content-section { margin-bottom: 1.2rem !important; }

/* =====================================================================
   AUTH PAGES (login / register)
   ===================================================================== */
.rufus-auth-wrap { display: flex; justify-content: center; padding: 0.5rem 0 2rem; }
.rufus-auth-card { width: 100%; max-width: 460px; }
.rufus-auth-subtitle { color: var(--text-medium); margin-bottom: 1.5rem; font-size: 1rem; }
.rufus-auth-form { display: flex; flex-direction: column; gap: 1.1rem; }
.rufus-field { display: flex; flex-direction: column; gap: 0.4rem; }
.rufus-field label { font-size: 0.85rem; font-weight: 700; color: var(--rufus-navy); letter-spacing: 0.01em; }
.rufus-field input { width: 100%; padding: 0.72rem 1rem; border: 1.5px solid rgba(23,16,47,.14); border-radius: 14px; font-size: 0.97rem; font-family: inherit; background: rgba(255,255,255,.9); color: var(--rufus-navy); transition: border-color .2s ease, box-shadow .2s ease; outline: none; box-sizing: border-box; }
.rufus-field input:focus { border-color: var(--rufus-orange); box-shadow: 0 0 0 3px rgba(243,123,61,.15); }
.rufus-field-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.rufus-checkbox { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--text-medium); cursor: pointer; }
.rufus-checkbox input { width: auto; }
.rufus-auth-btn { width: 100%; margin-top: 0.5rem; }
.rufus-auth-switch { margin-top: 1.4rem; text-align: center; font-size: 0.88rem; color: var(--text-medium); }
.rufus-auth-link { color: var(--rufus-orange); font-weight: 700; text-decoration: none; }
.rufus-auth-link:hover { text-decoration: underline; }
.rufus-auth-error { background: rgba(255,79,134,.10); border: 1px solid rgba(255,79,134,.25); color: #c0185a; padding: 0.75rem 1rem; border-radius: 12px; font-size: 0.88rem; font-weight: 600; margin-bottom: 0.5rem; }
.rufus-auth-success { background: rgba(0,174,187,.10); border: 1px solid rgba(0,174,187,.25); color: #007d87; padding: 0.75rem 1rem; border-radius: 12px; font-size: 0.88rem; font-weight: 600; margin-bottom: 0.5rem; }

/* Profile page */
.rufus-profile-wrap { max-width: 700px; margin: 0 auto; }
.rufus-profile-form { display: flex; flex-direction: column; gap: 1.4rem; }
.rufus-profile-card h3 { margin-bottom: 1.2rem; }
.rufus-profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.2rem; }
@media (max-width: 560px) { .rufus-profile-grid { grid-template-columns: 1fr; } }
.rufus-pass-hint { font-size: 0.82rem; color: var(--text-medium); margin: -0.6rem 0 1rem; }
.rufus-profile-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.rufus-profile-actions .btn { flex: 1; min-width: 140px; text-align: center; }

/* Avatar */
.rufus-avatar-row { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.rufus-avatar-preview { width: 100px; height: 100px; border-radius: 50%; overflow: hidden; border: 3px solid rgba(243,123,61,.25); flex-shrink: 0; box-shadow: 0 8px 20px rgba(23,16,47,.10); }
.rufus-avatar-preview img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rufus-avatar-upload label { cursor: pointer; }
.rufus-avatar-hint { margin-top: 0.5rem; font-size: 0.78rem; color: var(--text-medium); }

/* Auth nav button */
.rufus-user-btn { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.45rem 0.85rem; border-radius: 999px; font-size: 0.82rem; font-weight: 700; border: 1.5px solid rgba(23,16,47,.14); color: var(--rufus-navy); background: rgba(255,255,255,.8); text-decoration: none; white-space: nowrap; transition: border-color .2s, color .2s; }
.rufus-user-btn:hover { border-color: var(--rufus-orange); color: var(--rufus-orange); }
.rufus-user-btn svg { flex-shrink: 0; }
.rufus-nav-avatar { width: 26px; height: 26px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 2px solid rgba(243,123,61,.35); }
.rufus-nav-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Mobile menu fix */
@media (max-width: 991px) {
  .header { z-index: 10000 !important; isolation: isolate !important; }
  .nav { position: relative !important; }
  .menu-toggle { display: flex !important; position: relative !important; z-index: 10002 !important; cursor: pointer !important; touch-action: manipulation !important; -webkit-tap-highlight-color: transparent !important; }
  .nav-links { display: none !important; position: fixed !important; top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important; width: 100vw !important; height: 100vh !important; height: 100dvh !important; min-height: 100vh !important; padding: 104px 24px 34px !important; margin: 0 !important; flex-direction: column !important; align-items: center !important; justify-content: flex-start !important; gap: 18px !important; background: rgba(255,253,247,.985) !important; z-index: 10001 !important; overflow-y: auto !important; -webkit-overflow-scrolling: touch !important; box-shadow: 0 24px 70px rgba(23,16,47,.18) !important; }
  .nav-links.active { display: flex !important; }
  .nav-links a { display: block !important; width: min(100%,340px) !important; padding: 0.92rem 1.1rem !important; border-radius: 18px !important; text-align: center !important; font-weight: 900 !important; font-size: 1.05rem !important; }
  body.rufus-menu-open { overflow: hidden !important; touch-action: none !important; }
}
@media (min-width: 992px) { body.rufus-menu-open { overflow: auto !important; touch-action: auto !important; } }


/* =====================================================================
   GEORGIAN FONT POLISH — main content only
   (system-ui renders Georgian glyphs better than Nunito/Quicksand)
   ===================================================================== */
main {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans Georgian", "Noto Sans", Arial, sans-serif;
  color: #3c3a36;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
main .hero h1 {
  max-width: 820px !important; margin-left: auto; margin-right: auto;
  font-size: clamp(2.05rem, 4.6vw, 3.65rem) !important;
  line-height: 1.16 !important; letter-spacing: -0.035em !important;
  font-weight: 850 !important; text-wrap: balance;
}
main .hero h1 span { display: inline-block; color: var(--primary, #e8834a); font-weight: 900 !important; }
main .hero-subtitle { max-width: 680px !important; margin-left: auto !important; margin-right: auto !important; font-size: clamp(1.02rem, 1.45vw, 1.22rem) !important; line-height: 1.65 !important; font-weight: 650 !important; letter-spacing: -0.01em !important; color: #5b554f !important; }
main .section-header h2, main .text-center h2, main .card h2, main .card > h3, main .dogs-list-header h3 { font-size: clamp(1.65rem, 3vw, 2.45rem) !important; line-height: 1.22 !important; letter-spacing: -0.025em !important; font-weight: 850 !important; color: var(--rufus-orange) !important; text-wrap: balance; }
main .section-header p, main .card > .text-center > p, main .card p, main .step p { font-size: 13px !important; line-height: 1.78 !important; font-weight: 430 !important; letter-spacing: -0.006em !important; color: #5f5a54 !important; }
main .step h3 { font-size: clamp(1.12rem, 1.55vw, 1.35rem) !important; line-height: 1.32 !important; letter-spacing: -0.018em !important; font-weight: 820 !important; color: var(--rufus-orange) !important; text-wrap: balance; }
main .step p { max-width: 36ch; margin-left: auto; margin-right: auto; }
main .section-header { max-width: 760px; margin-left: auto !important; margin-right: auto !important; }
main .section-header p { max-width: 680px; margin-left: auto !important; margin-right: auto !important; }
main .card[style*="linear-gradient"] p { max-width: 720px !important; font-size: clamp(1rem, 1.2vw, 1.12rem) !important; line-height: 1.82 !important; color: #5b554f !important; }
main .btn { font-weight: 800 !important; letter-spacing: -0.01em !important; }
@media (max-width: 640px) {
  main .hero h1 { font-size: clamp(1.85rem, 8.4vw, 2.65rem) !important; line-height: 1.2 !important; letter-spacing: -0.03em !important; }
  main .hero-subtitle { font-size: 1rem !important; line-height: 1.65 !important; }
  main .step p { max-width: 100%; }
  main .section-header h2, main .text-center h2, main .card h2 { font-size: clamp(1.45rem, 7vw, 2rem) !important; line-height: 1.25 !important; }
}


/* =====================================================================
   DONATION BANNER (homepage hero section)
   ===================================================================== */
.rufus-donation-banner-wrap { padding: 0.5rem 0 1.2rem; }
.rufus-donation-banner {
  position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr;
  align-items: center; gap: clamp(1rem, 3vw, 2rem);
  overflow: hidden; text-decoration: none; border-radius: 34px;
  padding: clamp(1.4rem, 4vw, 3.1rem);
  background:
    radial-gradient(circle at 7% 8%, rgba(255,209,102,.32) 0 70px, transparent 72px),
    radial-gradient(circle at 55% 18%, rgba(255,118,151,.16) 0 58px, transparent 60px),
    radial-gradient(circle at 92% 78%, rgba(140,220,204,.24) 0 120px, transparent 122px),
    linear-gradient(135deg, #fffaf1 0%, #fff7ef 45%, #eefaf6 100%);
  border: 1px solid rgba(232,131,74,.14); box-shadow: 0 18px 46px rgba(70,52,35,.10);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.rufus-donation-banner:hover { transform: translateY(-3px); box-shadow: 0 24px 56px rgba(70,52,35,.14); }
.rufus-donation-banner::before, .rufus-donation-banner::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; }
.rufus-donation-banner::before { width: 150px; height: 150px; right: -40px; top: -40px; background: rgba(255,116,145,.12); }
.rufus-donation-banner::after { width: 130px; height: 130px; left: -38px; bottom: -42px; background: rgba(116,210,196,.16); }
.rufus-donation-banner-content { position: relative; z-index: 2; }
.rufus-donation-kicker { display: inline-flex; align-items: center; gap: 0.45rem; margin-bottom: 1rem; padding: 0.55rem 0.9rem; border-radius: 999px; background: rgba(255,255,255,.72); border: 1px solid rgba(232,131,74,.18); color: #f26f3a; font-size: 0.86rem; line-height: 1; font-weight: 900; letter-spacing: 0.06em; text-transform: uppercase; }
.rufus-donation-title { margin: 0; max-width: 760px; color: #201238; font-size: clamp(1.45rem, 2.65rem, 4rem); line-height: 1.08; letter-spacing: -0.01em; font-weight: 900; text-wrap: balance; }
.rufus-donation-title span { color: #f26f3a; }
.rufus-donation-text { margin: 1rem 0 1.4rem; max-width: 620px; color: #5f5a54; font-size: clamp(1rem, 1.3vw, 1.18rem); line-height: 1.65; font-weight: 550; }
.rufus-donation-button { display: inline-flex; align-items: center; gap: 0.75rem; min-height: 56px; padding: 0.95rem 1.45rem; border-radius: 999px; background: linear-gradient(135deg, #ff7a3d 0%, #ff4f86 100%); color: #fff; font-size: clamp(0.95rem, 1.2vw, 1.08rem); font-weight: 900; box-shadow: 0 14px 28px rgba(255,94,92,.25); }
.rufus-donation-button span { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.92); color: #ff5b5f; font-size: 1.25rem; }
.rufus-donation-visual { position: relative; z-index: 2; min-height: 280px; display: flex; align-items: center; justify-content: center; }
.rufus-donation-pet-card { position: relative; width: min(100%, 440px); min-height: 270px; border-radius: 36px; background: radial-gradient(circle at 50% 40%, rgba(255,255,255,.85) 0 0, transparent 58%), linear-gradient(135deg, rgba(204,241,230,.9), rgba(255,244,237,.95)); box-shadow: inset 0 0 0 1px rgba(255,255,255,.65); overflow: hidden; }
.rufus-donation-bowl { position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); width: 230px; height: 88px; border-radius: 30px 30px 58px 58px; background: linear-gradient(180deg, #fff4e3 0%, #ffdcb5 100%); border: 5px solid rgba(255,255,255,.85); box-shadow: 0 18px 28px rgba(70,52,35,.12); }
.rufus-donation-bowl::before { content: ""; position: absolute; left: 22px; right: 22px; top: -28px; height: 54px; border-radius: 50%; background: radial-gradient(circle at 20% 55%, #9f5526 0 8px, transparent 9px), radial-gradient(circle at 35% 38%, #b8652d 0 8px, transparent 9px), radial-gradient(circle at 48% 58%, #9f5526 0 9px, transparent 10px), radial-gradient(circle at 63% 34%, #b8652d 0 8px, transparent 9px), radial-gradient(circle at 78% 54%, #9f5526 0 8px, transparent 9px), #c97938; border: 4px solid rgba(255,255,255,.75); }
.rufus-donation-dog, .rufus-donation-cat { position: absolute; bottom: 102px; width: 112px; height: 112px; border-radius: 50%; box-shadow: 0 12px 24px rgba(70,52,35,.10); }
.rufus-donation-dog { left: 64px; background: linear-gradient(135deg, #f4c579, #e79a48); }
.rufus-donation-cat { right: 64px; background: linear-gradient(135deg, #3a3441, #11101a); }
.rufus-donation-dog::before, .rufus-donation-cat::before { content: "♥"; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-44%); color: rgba(255,255,255,.95); font-size: 2.4rem; }
.rufus-donation-heart { position: absolute; right: 42px; top: 35px; color: #ff6f86; font-size: 3rem; transform: rotate(-12deg); }
.rufus-donation-paw { position: absolute; left: 42px; top: 72px; width: 54px; height: 54px; border-radius: 50%; background: rgba(255,116,145,.22); display: flex; align-items: center; justify-content: center; color: #f26f3a; font-size: 1.7rem; }
@media (max-width: 900px) {
  .rufus-donation-banner { grid-template-columns: 1fr; text-align: center; }
  .rufus-donation-text, .rufus-donation-title { margin-left: auto; margin-right: auto; }
  .rufus-donation-visual { min-height: 230px; }
  .rufus-donation-pet-card { min-height: 230px; max-width: 390px; }
  .rufus-donation-dog { left: 52px; }
  .rufus-donation-cat { right: 52px; }
}
@media (max-width: 560px) {
  .rufus-donation-banner { padding: 1.35rem 1rem 1.1rem; border-radius: 26px; }
  .rufus-donation-kicker { font-size: 0.72rem; padding: 0.5rem 0.7rem; }
  .rufus-donation-title { font-size: clamp(1.65rem, 8vw, 2.25rem); line-height: 1.17; }
  .rufus-donation-text { font-size: 0.96rem; line-height: 1.65; }
  .rufus-donation-button { width: 100%; justify-content: center; min-height: 52px; padding: 0.9rem 1rem; }
  .rufus-donation-visual { min-height: 180px; }
  .rufus-donation-pet-card { min-height: 180px; border-radius: 26px; }
  .rufus-donation-dog, .rufus-donation-cat { width: 78px; height: 78px; bottom: 82px; }
  .rufus-donation-dog { left: 38px; }
  .rufus-donation-cat { right: 38px; }
  .rufus-donation-bowl { width: 175px; height: 68px; bottom: 22px; }
  .rufus-donation-heart { font-size: 2.2rem; right: 24px; top: 22px; }
  .rufus-donation-paw { width: 42px; height: 42px; left: 22px; top: 52px; font-size: 1.35rem; }
}


/* =====================================================================
   DOG CARDS
   ===================================================================== */
.dogs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(190px, 100%), 1fr)); gap: 1.25rem; align-items: stretch; }
.dog-card-link { text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.dog-card { display: flex; flex-direction: column; overflow: hidden; border-radius: 26px; background: rgba(255,253,247,.94); border: 1px solid var(--card-border, rgba(0,0,0,.08)); box-shadow: 0 14px 34px rgba(70,52,35,.08); transition: transform .18s ease, box-shadow .18s ease; flex: 1; }
.dog-card-link:hover .dog-card { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(70,52,35,.14); }
.dog-card-photo { position: relative; aspect-ratio: 4/3; background: #fff4ed; overflow: hidden; flex-shrink: 0; }
.dog-card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dog-card-badge { position: absolute; left: .75rem; bottom: .75rem; background: rgba(255,255,255,.9); border: 1px solid rgba(0,0,0,.08); border-radius: 999px; padding: .38rem .65rem; font-size: .76rem; font-weight: 900; color: var(--primary, #e8834a); box-shadow: 0 8px 20px rgba(70,52,35,.10); }
.dog-card-body { padding: 1rem; display: flex; flex-direction: column; flex: 1; }
.dog-card-body h3, .dog-card-body h4 { margin: 0 0 .35rem; font-size: 1.2rem; line-height: 1.15; color: var(--text-dark, #17102f); }
.dog-card-subtitle { margin: 0 0 .55rem; font-weight: 900; color: var(--primary, #e8834a); line-height: 1.35; font-size: .88rem; flex: 1; }
.dog-card-story { margin: 0 0 .9rem; color: var(--text-medium, #5f6674); font-size: .92rem; line-height: 1.5; }
.dog-card-progress-row { display: flex; justify-content: space-between; align-items: baseline; gap: .6rem; font-size: .83rem; font-weight: 900; margin-bottom: .45rem; }
.dog-card-progress-row strong { color: var(--primary, #e8834a); }
.dog-card-progress { height: 10px; border-radius: 999px; background: rgba(60,58,54,.10); overflow: hidden; border: 1px solid rgba(0,0,0,.06); }
.dog-card-progress span { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--primary, #e8834a), #ff4f86); }
.dog-card-cta { margin-top: .85rem; display: inline-flex; align-items: center; justify-content: center; width: 100%; min-height: 46px; padding: .65rem 1.25rem; border-radius: 999px; color: #fff; font-weight: 900; background: linear-gradient(135deg, var(--primary, #e8834a), #ff4f86); font-size: .78rem; letter-spacing: .01em; box-sizing: border-box; }
.dogs-list-header { margin-bottom: 2rem; text-align: center; }
.dogs-list-header h3 { font-size: 1.6rem; color: var(--primary, #e8834a); margin-bottom: .5rem; }

/* =====================================================================
   GALLERY PAGE
   ===================================================================== */
.drop-selector { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2rem; }
.drop-btn { padding: .75rem 1.25rem; background: #fff; border: 2px solid rgba(23,16,47,.10); border-radius: 18px; font-family: 'Quicksand','Nunito',sans-serif; font-weight: 700; font-size: .9rem; color: var(--rufus-navy); cursor: pointer; transition: all .25s ease; }
.drop-btn:hover, .drop-btn.active { border-color: var(--rufus-orange); background: rgba(243,123,61,.08); color: var(--rufus-orange); }
.gallery-grid-lg { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 991px) { .gallery-grid-lg { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
@media (max-width: 640px) { .gallery-grid-lg { grid-template-columns: repeat(2, 1fr) !important; } .drop-btn { padding: .62rem .85rem !important; font-size: .82rem !important; } }
.gallery-item-lg { aspect-ratio: 1; border-radius: 16px; overflow: hidden; position: relative; cursor: pointer; box-shadow: 0 8px 22px rgba(23,16,47,.09); transition: transform .22s ease, box-shadow .22s ease; }
.gallery-item-lg:hover { transform: scale(1.03); box-shadow: 0 14px 34px rgba(23,16,47,.15); }
.gallery-item-lg img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* =====================================================================
   DOG PROFILE PAGE
   ===================================================================== */
.dog-profile-hero {
  padding-top: clamp(1rem, 3vw, 2rem) !important;
  padding-bottom: clamp(1rem, 3vw, 2rem) !important;
}

.dog-profile-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: center;
  overflow: hidden;
}

.dog-profile-kicker {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--primary, #e8834a);
  background: rgba(255,255,255,.8);
  border: 1px solid var(--card-border, rgba(0,0,0,.08));
  border-radius: 999px;
  padding: .55rem .85rem;
  font-weight: 900;
  font-size: .86rem;
  margin-bottom: 1rem;
}

.dog-profile-title {
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 2.6rem);
  line-height: .95;
  color: var(--text-dark, #17102f);
}

.dog-profile-title span {
  display: block;
  color: var(--primary, #e8834a);
  font-size: .38em;
  line-height: 1.25;
  letter-spacing: -.02em;
  margin-top: .55rem;
}

.dog-profile-lead {
  margin: 1rem 0 1.25rem;
  max-width: 720px;
  font-size: clamp(1rem, 1.35vw, 1.17rem);
  line-height: 1.65;
  color: var(--text-medium, #5f6674);
}

.dog-profile-facts {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1rem;
}

.dog-profile-fact {
  background: rgba(255,255,255,.78);
  border: 1px solid var(--card-border, rgba(0,0,0,.08));
  border-radius: 999px;
  padding: .65rem .9rem;
  font-weight: 850;
  box-shadow: 0 8px 18px rgba(70,52,35,.05);
}

.dog-profile-main-photo {
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  border: 7px solid #fff;
  box-shadow: 0 22px 46px rgba(70,52,35,.15);
  transform: rotate(1deg);
}

.dog-profile-main-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.dog-profile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

.dog-profile-story p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-medium, #5f6674);
  margin: 0 0 1rem;
}

/* Budget card embedded in hero */
.dog-budget-card {
  position: sticky;
  top: 96px;
}

.dog-budget-in-hero {
  position: static !important;
  margin-top: 1.1rem;
  max-width: 520px;
  padding: clamp(1rem, 2vw, 1.35rem) !important;
}

.dog-budget-in-hero h2 {
  font-size: clamp(1.45rem, 2.2vw, 2rem) !important;
}

.dog-budget-in-hero .dog-profile-note { display: none; }

.dog-budget-in-hero .dog-budget-meta { margin-bottom: 0; }

.dog-budget-number {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: .8rem;
  margin: 1rem 0 .7rem;
}

.dog-budget-number strong {
  color: var(--primary, #e8834a);
  font-size: 2rem;
}

.dog-progress-track {
  width: 100%;
  height: 18px;
  border-radius: 999px;
  background: rgba(60,58,54,.10);
  overflow: hidden;
  border: 1px solid var(--card-border, rgba(0,0,0,.08));
}

.dog-progress-fill {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary, #e8834a), #ff4f86);
}

.dog-budget-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
  margin: 1rem 0 1.1rem;
}

.dog-budget-pill {
  border-radius: 18px;
  background: rgba(232,131,74,.07);
  padding: .8rem;
  text-align: center;
  border: 1px solid var(--card-border, rgba(0,0,0,.08));
}

.dog-budget-pill small {
  display: block;
  color: var(--text-medium, #5f6674);
  font-weight: 800;
  margin-bottom: .25rem;
}

.dog-budget-pill b { font-size: 1.1rem; }

.dog-profile-note {
  font-size: .9rem;
  line-height: 1.55;
  color: var(--text-medium, #5f6674);
  margin-top: .85rem;
}

/* Nutrition pack buttons */
.bandura-nutrition-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .7rem;
  margin: 1rem 0 .4rem;
}

.bandura-nutrition-options a {
  display: block !important;
  background: transparent !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 18px !important;
  box-shadow: none !important;
  text-decoration: none !important;
  transition: transform .18s ease, filter .18s ease;
}

.bandura-nutrition-options a:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 12px 18px rgba(70,52,35,.14));
}

.bandura-nutrition-options img {
  width: 100%;
  max-width: 145px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Pack card image links — no orange background */
.pack-card > a {
  display: block !important;
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  border: 0 !important;
}
.pack-card > a:hover { background: transparent !important; box-shadow: none !important; transform: none !important; }
.pack-card > a img { display: block; margin: 0 auto; }

/* Dog gallery */
.dog-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .9rem;
}

.dog-gallery img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 22px;
  border: 6px solid #fff;
  box-shadow: 0 12px 26px rgba(70,52,35,.10);
}

/* Dog profile responsive */
@media (max-width: 900px) {
  .dog-profile-card { grid-template-columns: 1fr; }
  .dog-budget-card { position: static; }
  .dog-budget-in-hero { max-width: 100%; }
  .dog-gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .dog-profile-title { font-size: clamp(2.4rem, 16vw, 3.7rem); }
  .dog-budget-meta { grid-template-columns: 1fr; }
  .dog-gallery img { height: 150px; }
  .bandura-nutrition-options { grid-template-columns: 1fr; }
  .bandura-nutrition-options img { max-width: 190px; }
}

/* =====================================================================
   FULL RESPONSIVE PASS v1
   ===================================================================== */

/* ── Nav: prevent overflow on mid-size screens ───────────────────────── */
@media (max-width: 991px) {
  .nav { flex-wrap: nowrap; gap: .4rem; padding: .55rem 0; }
  .rufus-user-btn { font-size: .78rem; padding: .38rem .65rem; }
  .language-switcher-clean { flex-shrink: 0; }
  /* User btn + lang switcher: always visible above hamburger */
  .nav > .rufus-user-btn { order: 2; }
  .nav > .language-switcher-clean { order: 3; }
  .nav > .menu-toggle { order: 4; }
  /* Feed a Dog btn hidden on mobile — shown inside menu overlay */
  .nav-cta { display: none !important; }
  /* Add Feed a Dog link inside mobile nav overlay */
  .nav-links { padding-bottom: 6rem !important; }
}
@media (max-width: 479px) {
  /* Very small: hide user button text, keep avatar/icon */
  .rufus-user-btn--loggedin .rufus-user-name { display: none; }
  .language-switcher-clean a { font-size: 9.5px; padding: 5px 7px; }
  .rufus-user-btn { padding: .35rem .55rem; gap: .25rem; font-size: .75rem; }
}

/* ── Hero & page-header: mobile fixes ───────────────────────────────── */
@media (max-width: 640px) {
  .hero::before, .page-header::before { inset: .5rem .5rem .5rem .5rem; border-radius: 22px; }
  .hero::after, .page-header::after { display: none; }
  .hero .container, .page-header .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .page-header h1 {
    max-width: 100% !important;
    font-size: clamp(1.65rem, 8vw, 2.25rem) !important;
  }
  .page-header p { max-width: 100% !important; font-size: .97rem !important; }
}

/* ── Section & card spacing on mobile ───────────────────────────────── */
@media (max-width: 640px) {
  .section, .section1 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
  .card { border-radius: 18px !important; padding: 1rem !important; }
  .card-lg { padding: 1rem !important; border-radius: 18px !important; }
}

/* ── Dog cards grid ──────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .dogs-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .dog-card-body h3, .dog-card-body h4 { font-size: 1rem; }
  .dog-card-subtitle { font-size: .8rem; }
}
@media (max-width: 360px) {
  .dogs-grid { grid-template-columns: 1fr; }
}

/* ── Dog profile page ────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .dog-profile-card { grid-template-columns: 1fr; gap: 1.2rem; }
  .dog-budget-in-hero { max-width: 100%; }
  .dog-gallery { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .dog-profile-main-photo { max-width: 420px; margin: 0 auto; }
}
@media (max-width: 560px) {
  .dog-profile-title { font-size: clamp(2rem, 13vw, 3rem) !important; }
  .dog-profile-kicker { font-size: .8rem; padding: .45rem .7rem; }
  .dog-profile-facts { gap: .45rem; }
  .dog-profile-fact { font-size: .82rem; padding: .5rem .75rem; }
  .dog-budget-meta { grid-template-columns: 1fr 1fr; }
  .dog-budget-number strong { font-size: 1.6rem; }
  .dog-gallery { grid-template-columns: repeat(2, 1fr); }
  .dog-gallery img { height: 120px; }
  .bandura-nutrition-options { grid-template-columns: repeat(3, 1fr); gap: .4rem; }
  .bandura-nutrition-options img { max-width: 100%; }
}
@media (max-width: 400px) {
  .dog-budget-meta { grid-template-columns: 1fr; }
  .dog-gallery { grid-template-columns: 1fr 1fr; }
  .dog-gallery img { height: 100px; }
}

/* ── Gallery page ────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .gallery-grid-lg { grid-template-columns: repeat(3, 1fr); gap: .75rem; }
  .drop-selector { gap: .45rem; margin-bottom: 1.2rem; }
  .drop-btn { padding: .55rem .85rem; font-size: .82rem; border-radius: 14px; }
}
@media (max-width: 560px) {
  .gallery-grid-lg { grid-template-columns: repeat(2, 1fr) !important; gap: .6rem; }
  .rufus-lightbox__arrow { display: none; }
}
@media (max-width: 380px) {
  .gallery-grid-lg { grid-template-columns: repeat(2, 1fr) !important; gap: .5rem; }
  .drop-btn { padding: .45rem .65rem; font-size: .77rem; }
}

/* ── Feed-a-dog filter bar ───────────────────────────────────────────── */
@media (max-width: 640px) {
  .drop-selector { overflow-x: auto; flex-wrap: nowrap; padding-bottom: .35rem; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .drop-selector::-webkit-scrollbar { display: none; }
  .drop-btn { flex-shrink: 0; }
}

/* ── Auth pages ──────────────────────────────────────────────────────── */
@media (max-width: 560px) {
  .rufus-auth-wrap { padding: 0 0 1.5rem; }
  .rufus-auth-card { border-radius: 18px !important; padding: 1.2rem !important; }
  .rufus-field input { font-size: .93rem; padding: .65rem .85rem; }
  .rufus-auth-btn { min-height: 48px; font-size: .97rem !important; }
}

/* ── Profile page ────────────────────────────────────────────────────── */
@media (max-width: 560px) {
  .rufus-profile-wrap { max-width: 100%; }
  .rufus-profile-grid { grid-template-columns: 1fr; }
  .rufus-profile-actions { flex-direction: column; }
  .rufus-profile-actions .btn { min-width: unset; width: 100%; }
  .rufus-avatar-row { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* ── How It Works steps ──────────────────────────────────────────────── */
@media (max-width: 640px) {
  .steps { grid-template-columns: 1fr !important; gap: .75rem !important; }
  .step { padding: 1rem !important; }
}

/* ── Impact stats ────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .impact-stats { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .stat-number { font-size: 1.9rem; }
}

/* ── Footer ──────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .footer { padding: 1.5rem 0 !important; }
  .footer-content { gap: 1rem; }
  .footer-links { gap: .4rem; }
  .footer-links a { font-size: .82rem; padding: .3rem .5rem; }
  .footer-social-icons { gap: 10px; margin: 12px 0 8px; }
  .footer-social-icons a { width: 40px; height: 40px; }
}

/* ── Packs grid ──────────────────────────────────────────────────────── */
@media (max-width: 560px) {
  .packs-grid { grid-template-columns: repeat(2, 1fr) !important; gap: .65rem !important; }
  .pack-card { min-height: 120px; padding: .6rem !important; }
  .pack-card img { max-width: min(160px, 100%) !important; }
}

/* ── Donation banner ─────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .rufus-donation-banner { padding: 1.2rem .9rem !important; border-radius: 22px !important; }
  .rufus-donation-visual { display: none; }
  .rufus-donation-title { font-size: clamp(1.5rem, 7.5vw, 2rem) !important; }
  .rufus-donation-button { width: 100%; justify-content: center; }
}

/* ── Prevent horizontal scroll on all screens ───────────────────────── */
html, body { overflow-x: hidden; max-width: 100vw; }
.container { min-width: 0; }
img { max-width: 100%; height: auto; }
