/* Kariuki Laban Kimani Family Trust — Static Website Styles */

:root {
  --primary: #1f6b34;
  --primary-foreground: #ffffff;
  --secondary: #c19b3a;
  --secondary-foreground: #1a1a1a;
  --background: #fafaf8;
  --foreground: #1f2937;
  --card: #ffffff;
  --card-foreground: #1f2937;
  --muted: #f3f4f6;
  --muted-foreground: #4b5563;
  --border: #e5e7eb;
  --input: #e5e7eb;
  --ring: #1f6b34;
  --radius: 0.625rem;
  --gradient-hero: linear-gradient(135deg, #184a26 0%, #1f6b34 55%, #c19b3a 100%);
  --shadow-elegant: 0 20px 50px -20px rgba(31, 107, 52, 0.35);
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand img {
  height: 48px;
  width: 48px;
  object-fit: contain;
}

.brand-text {
  display: none;
}

@media (min-width: 640px) {
  .brand-text {
    display: block;
    line-height: 1.2;
  }
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}

.brand-subtitle {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(31, 41, 55, 0.85);
  transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: var(--muted);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  color: var(--primary-foreground);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    padding: 7rem 0;
  }
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

.hero-title span {
  color: var(--secondary);
}

.hero-text {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 36rem;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-block;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 0.9375rem;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  opacity: 0.92;
}

.btn-secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
}

.btn-secondary:hover {
  opacity: 0.92;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-media {
  display: flex;
  justify-content: center;
}

.hero-logo-frame {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  padding: 2rem;
  box-shadow: var(--shadow-elegant);
}

.hero-logo-frame img {
  width: 280px;
  height: 280px;
  object-fit: contain;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-muted {
  background: var(--muted);
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
}

.section-subtitle {
  margin-top: 1rem;
  color: var(--muted-foreground);
  max-width: 42rem;
}

/* Cards */
.card-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .card-grid.three {
    grid-template-columns: repeat(3, 1fr);
  }

  .card-grid.two {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid.four {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .card-grid.four {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.75rem;
  transition: all 0.2s ease;
}

.card:hover {
  box-shadow: var(--shadow-elegant);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(193, 155, 58, 0.15);
  border: 1px solid var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.card p,
.card-desc {
  font-size: 0.9rem;
  color: var(--muted-foreground);
}

.card-tag {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 700;
}

/* CTA section */
.cta-box {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

/* Trustees */
.trustee-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

.trustee-card {
  text-align: center;
}

.trustee-role {
  font-size: 0.875rem;
  color: var(--secondary);
  font-weight: 600;
}

/* Lists */
.value-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .value-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.value-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--muted);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-weight: 500;
}

.value-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(193, 155, 58, 0.15);
  border: 1px solid var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-family: var(--font-heading);
  font-weight: 700;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
}

.contact-value {
  font-weight: 500;
  color: var(--foreground);
}

.contact-value a {
  color: var(--primary);
  text-decoration: none;
}

.contact-value a:hover {
  text-decoration: underline;
}

.map-frame {
  margin-top: 2rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-frame iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.75rem;
  height: fit-content;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--input);
  border-radius: var(--radius);
  background: var(--background);
  font-family: inherit;
  font-size: 0.9375rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ring);
  box-shadow: 0 0 0 2px rgba(31, 107, 52, 0.15);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--primary);
  color: var(--primary-foreground);
  margin-top: 4rem;
}

.footer-inner {
  display: grid;
  gap: 2rem;
  padding: 2.5rem 0;
}

@media (min-width: 640px) {
  .footer-inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
}

.footer-subtitle {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.footer-text {
  font-size: 0.875rem;
  opacity: 0.85;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.375rem;
}

.footer-links a {
  font-size: 0.875rem;
  opacity: 0.9;
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem 0;
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.75;
}

.footer-bottom a {
  color: inherit;
  text-decoration: underline;
}

.footer-bottom a:hover {
  color: var(--secondary);
}

/* Utility */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-3 { margin-bottom: 0.75rem; }

/* Coming Soon Page */
.coming-soon {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  color: var(--primary-foreground);
  padding: 3rem 1rem;
  text-align: center;
}

.coming-soon-inner {
  max-width: 900px;
  width: 100%;
}

.coming-soon .hero-logo-frame {
  margin: 0 auto 2rem;
  width: 200px;
  height: 200px;
  padding: 1.5rem;
}

.coming-soon .hero-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.coming-soon .hero-title {
  margin: 0 auto;
  max-width: 44rem;
}

.coming-soon-badge {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  background: var(--secondary);
  color: var(--secondary-foreground);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.coming-soon-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--primary-foreground);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.contact-chip:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.contact-chip-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
}

.coming-soon-address {
  margin-top: 1.75rem;
  font-size: 0.95rem;
  opacity: 0.92;
  line-height: 1.7;
}

.coming-soon-address strong {
  font-weight: 600;
  color: var(--secondary);
}

.coming-soon .map-frame {
  margin-top: 2rem;
  box-shadow: var(--shadow-elegant);
}

.coming-soon-footer {
  background: rgba(24, 74, 38, 0.95);
  color: var(--primary-foreground);
  padding: 1rem 0;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.85;
}

@media (min-width: 640px) {
  .coming-soon .hero-logo-frame {
    width: 260px;
    height: 260px;
    padding: 2rem;
  }

  .coming-soon .hero-title {
    font-size: 4rem;
  }
}

