:root {
  --hideout-slate: #4a5568;
  --hideout-slate-dark: #383e4c;
  --hideout-slate-light: #5c6779;
  --hideout-gray: #d1d5db;
  --hideout-gray-deep: #bcc6cc;
  --hideout-white: #ffffff;
  --hideout-charcoal: #1a1a1b;
  --hideout-green: #5a9e4b;
  --hideout-green-soft: #e6f0e4;
  --hideout-muted: #708090;
  --hideout-stone: #c4b5a5;
  --shadow: 0 12px 36px rgba(56, 62, 76, 0.14);
  --radius: 16px;
  --font: "DM Sans", system-ui, sans-serif;
  --font-display: "Outfit", "DM Sans", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--hideout-charcoal);
  background: var(--hideout-gray);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--hideout-slate-light); }
a:hover { color: var(--hideout-slate-dark); }

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 999;
  background: var(--hideout-white);
  padding: 0.5rem 1rem;
}

.wrap {
  width: min(960px, 100% - 2rem);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(135deg, var(--hideout-slate-dark), var(--hideout-slate));
  color: var(--hideout-white);
  border-bottom: 3px solid var(--hideout-white);
  box-shadow: 0 2px 16px rgba(38, 50, 56, 0.28);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}

.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  object-fit: cover;
  background: var(--hideout-slate-light);
}

.brand-icon-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.92);
}

.site-nav a:hover { color: var(--hideout-white); }

.nav-cta {
  background: var(--hideout-charcoal);
  color: var(--hideout-white) !important;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 2px solid var(--hideout-white);
}

.nav-toggle {
  display: none;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  color: var(--hideout-white);
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  border-radius: 8px;
  cursor: pointer;
}

@media (max-width: 640px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--hideout-slate-dark);
    padding: 1rem;
    border-bottom: 3px solid var(--hideout-white);
  }
  .site-nav.is-open { display: flex; }
  .site-header { position: relative; }
}

/* Hero */
.hero {
  padding: 2.5rem 0 3rem;
}

.hero-card {
  background: var(--hideout-white);
  border: 2px solid var(--hideout-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-photo-wrap {
  margin: 0;
  padding: 1.25rem 1.25rem 0;
  display: flex;
  justify-content: center;
  background: linear-gradient(165deg, var(--hideout-gray-deep), var(--hideout-gray));
}

.hero-photo {
  display: block;
  width: 128px;
  height: 128px;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  border: 3px solid var(--hideout-white);
  box-shadow: 0 4px 16px rgba(38, 50, 56, 0.2);
}

.hero-body {
  padding: 1.5rem 1.35rem 1.75rem;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hideout-green);
  margin: 0 0 0.5rem;
}

h1, h2 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--hideout-slate-dark);
}

h1 {
  font-size: clamp(1.75rem, 5vw, 2.35rem);
  margin: 0 0 0.5rem;
}

h2 {
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  margin: 0 0 0.75rem;
}

.lead {
  font-size: 1.05rem;
  color: var(--hideout-muted);
  margin: 0 0 0.35rem;
}

.luganda {
  font-size: 0.92rem;
  color: var(--hideout-slate);
  font-style: italic;
  margin: 0 0 1.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.7rem 1.2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
}

.btn-dark {
  background: var(--hideout-charcoal);
  color: var(--hideout-white);
  border-color: var(--hideout-charcoal);
}

.btn-dark:hover {
  background: var(--hideout-slate-dark);
  color: var(--hideout-white);
}

.btn-outline {
  background: transparent;
  color: var(--hideout-slate-dark);
  border-color: var(--hideout-slate);
}

.btn-outline:hover {
  background: var(--hideout-green-soft);
}

.btn-green {
  background: var(--hideout-green);
  color: var(--hideout-white);
  border-color: var(--hideout-green);
}

.btn-green:hover {
  filter: brightness(1.05);
  color: var(--hideout-white);
}

.btn-block { width: 100%; }

/* Sections */
.section {
  padding: 2.5rem 0;
}

.section-white {
  background: var(--hideout-white);
  border-block: 2px solid var(--hideout-white);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.info-card {
  background: var(--hideout-white);
  border: 1px solid var(--hideout-gray-deep);
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: 0 2px 8px rgba(55, 71, 79, 0.06);
}

.info-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: var(--hideout-slate-dark);
}

.info-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--hideout-muted);
}

.contact-block {
  background: var(--hideout-white);
  border: 2px solid var(--hideout-white);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.contact-list li {
  margin-bottom: 0.55rem;
  font-size: 0.95rem;
}

.contact-list strong {
  display: inline-block;
  min-width: 5.5rem;
  color: var(--hideout-slate-dark);
}

.setup-note {
  margin-top: 1.5rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: var(--hideout-green-soft);
  border: 1px solid color-mix(in srgb, var(--hideout-green) 35%, transparent);
  font-size: 0.82rem;
  color: var(--hideout-slate-dark);
}

.setup-note code {
  background: rgba(255, 255, 255, 0.7);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  font-size: 0.78rem;
}

/* Footer */
.site-footer {
  background: var(--hideout-slate-dark);
  color: rgba(255, 255, 255, 0.88);
  padding: 1.25rem 0 calc(1.25rem + env(safe-area-inset-bottom));
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}

.footer-inner a { color: #c5e1c0; }

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.wa-float:hover {
  color: white;
  transform: scale(1.05);
}
