
/* Base Styles */
body {
    line-height: 1.6;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

/* Header Styles */
.site-header {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: #111;
}

.logo-bold {
    font-weight: 700;
}

.logo-light {
    font-weight: 300;
    color: #6B7280;
}

.main-nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.main-nav a {
    color: #111;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.main-nav a:hover {
    color: #C1121F;
}

.cta-button {
    background: #C1121F;
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #a50e1a;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .main-nav {
        gap: 1rem;
    }
}
/* Custom Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.8s ease-in-out;
}

/* Founder Card Aspect Ratio */
.aspect-w-4 {
    position: relative;
    padding-bottom: 125%; /* 4:5 ratio */
    width: 100%;
}

.aspect-w-4 > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.aspect-video {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    width: 100%;
}

.aspect-video > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* Button Hover Effects */
.btn-hover {
    transition: all 0.3s ease;
    transform: translateY(0);
}

.btn-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* FAQ Accordion */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-content.active {
    max-height: 300px;
}

/* Responsive Typography */
@media (min-width: 768px) {
    .text-responsive {
        font-size: calc(1rem + 0.5vw);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #C1121F;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a50e1a;
}

/* ===== FOOTER ===== */

.site-footer {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  margin-top: 60px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px;

  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 420px;
}

.footer-logo {
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  margin-bottom: 12px;
}

.footer-mission {
  color: #6b7280;
  line-height: 1.6;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}

.footer-col h4 {
  margin: 0 0 12px 0;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #111111;
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: #111111;
  font-size: 14px;
  margin: 10px 0;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #c1121f;
}

.footer-bottom {
  border-top: 1px solid #e5e7eb;
  padding: 18px 24px;

  max-width: 1100px;
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;

  color: #6b7280;
  font-size: 13px;
}

.footer-disclaimer {
  max-width: 520px;
}

/* ===== HOME PAGE (LIGHT THEME) ===== */

.home-hero {
  background: #ffffff;
  color: #111111;
  padding: 70px 0;
}

.home-hero .hero-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: center;
}

.home-hero h1 {
  font-size: 48px;
  line-height: 1.1;
  margin: 0 0 14px 0;
  color: #111111;
}

.home-hero .hero-subtitle {
  font-size: 18px;
  color: #374151;
  margin: 0 0 18px 0;
}

.home-hero .hero-text {
  color: #6b7280;
  line-height: 1.7;
  margin: 0 0 22px 0;
}
.home-hero .logo-circle {
  width: 200px;
  height: 200px;
  border-radius: 999px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 16px;
}
.home-hero .cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.home-hero .btn-primary {
  background: #c1121f;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.home-hero .btn-primary:hover {
  background: #a50f1a;
}

.home-hero .btn-secondary {
  background: transparent;
  color: #111111;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid #e5e7eb;
  display: inline-block;
}

.home-hero .btn-secondary:hover {
  border-color: #c1121f;
  color: #c1121f;
}

.home-hero .trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #374151;
}

.home-hero .trust-list li {
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-hero .trust-list .check {
  color: #c1121f;
  font-weight: 700;
}

/* Make hero stack on mobile */
@media (max-width: 820px) {
  .home-hero .hero-container {
    grid-template-columns: 1fr;
  }
  .home-hero h1 {
    font-size: 38px;
  }
}
/* Founder card image clarity */
.founder-media { 
  overflow: hidden; 
  background: #f3f4f6; 
}
.founder-media .founder-img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  object-position: center; 
  display: block; 
  transform: translateZ(0); 
  backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
}
/* Services Preview Section */
.services-preview-section {
  background: #f9fafb;
  padding: 80px 0;
}
/* Founder card image clarity */
.aspect-w-4 img,
.aspect-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* prevents stretching */
  object-position: center;
  display: block;
}

/* Media Photo Styles */
.media-photo {
  width: 100%;
  max-width: 520px;
  height: 384px;
  border-radius: 12px;
  overflow: hidden;
  background: #f3f4f6;
}

.media-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: translateZ(0);
  backface-visibility: hidden;
}

@media (max-width: 900px) {
  .media-photo {
    max-width: 100%;
    height: 320px;
  }
}
/* ===== Resources & Highlights ===== */

.section {
  padding: 80px 0;
  background: #ffffff;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  text-align: center;
  font-size: 34px;
  margin: 0 0 28px 0;
  color: #111111;
}

.section-note {
  text-align: center;
  color: #6b7280;
  margin-top: 24px;
}

/* Grid */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.media-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Media frame */
.media-frame {
  background: #f3f4f6;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  position: relative;
}

/* Make images/iframes fill the frame */
.media-frame img,
.media-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: cover;
}

/* Placeholder */
.media-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  color: #6b7280;
  font-weight: 600;
  padding: 16px;
}

/* Caption */
.media-caption {
  margin: 12px 6px 0 6px;
  font-weight: 600;
  color: #111111;
}

/* Responsive */
@media (max-width: 900px) {
  .media-grid {
    grid-template-columns: 1fr;
  }
}
