@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&family=Inter:wght@300;400;500;600&display=swap");
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  color: #1A0F14;
  background: #FFFFFF;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* NAVIGATION */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1.5rem, 5vw, 4rem);
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(107, 33, 71, 0.08);
  transition: box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled {
  box-shadow: 0 4px 32px rgba(107, 33, 71, 0.1);
}

/* Logo image in nav — colour version */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 44px;
}

.nav-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

/* Navigation links */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  color: #5A5259;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(135deg, #6B2147 0%, #9B3A5A 45%, #C7636A 80%, #D4847A 100%);
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover {
  color: #6B2147;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Contact button in nav */
.nav-cta {
  background: linear-gradient(135deg, #6B2147 0%, #9B3A5A 45%, #C7636A 80%, #D4847A 100%);
  color: #FFFFFF !important;
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  font-weight: 500 !important;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  letter-spacing: 0.08em !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  color: #FFFFFF !important;
  opacity: 0.88;
  transform: translateY(-1px);
}

/* burger — mobile */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.25rem;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #6B2147;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

/* Left column — text */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(7rem, 12vw, 11rem) clamp(2rem, 6vw, 5rem) clamp(4rem, 8vw, 7rem);
  position: relative;
  z-index: 2;
}

/* Thin decorative line on the left */
.hero-content::before {
  content: "";
  position: absolute;
  left: clamp(1.5rem, 4vw, 3.5rem);
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(135deg, #6B2147 0%, #9B3A5A 45%, #C7636A 80%, #D4847A 100%);
  opacity: 0.4;
}

.hero-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: #1A0F14;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.hero-title strong {
  font-weight: 600;
  background: linear-gradient(135deg, #6B2147 0%, #9B3A5A 45%, #C7636A 80%, #D4847A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-desc {
  font-size: 1.05rem;
  color: #5A5259;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

/* Buttons */
.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #6B2147 0%, #9B3A5A 45%, #C7636A 80%, #D4847A 100%);
  color: #FFFFFF;
  text-decoration: none;
  padding: 0.9rem 2rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 24px rgba(107, 33, 71, 0.25);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(107, 33, 71, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #6B2147;
  text-decoration: none;
  padding: 0.9rem 2rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid #6B2147;
  cursor: pointer;
  transition: background 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
  background: #6B2147;
  color: #FFFFFF;
}

/* Right column — image */
.hero-visual {
  position: relative;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
}

.hero-visual:hover img {
  transform: scale(1.02);
}

/* Fade overlay on left edge of the image */
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.5) 0%, transparent 40%);
  z-index: 1;
  pointer-events: none;
}

/* Floating stat card */
.hero-card {
  position: absolute;
  bottom: 2.5rem;
  left: 1.5rem;
  background: #FFFFFF;
  padding: 1.25rem 1.75rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  z-index: 3;
  max-width: 220px;
}

.hero-card-number {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.5rem;
  font-weight: 600;
  background: linear-gradient(135deg, #6B2147 0%, #9B3A5A 45%, #C7636A 80%, #D4847A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hero-card-label {
  font-size: 0.75rem;
  color: #5A5259;
  line-height: 1.4;
  margin-top: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* SECTION SHARED STYLES */
.section-line {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9B3A5A;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-line::before {
  content: "";
  display: block;
  width: 2rem;
  height: 1px;
  background: #9B3A5A;
  flex-shrink: 0;
}

.section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: #1A0F14;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: italic;
  background: linear-gradient(135deg, #6B2147 0%, #9B3A5A 45%, #C7636A 80%, #D4847A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ABOUT SECTION */
.about {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 6vw, 5rem);
  background: #F7F5F6;
}

.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  display: block;
  box-shadow: 20px 20px 60px rgba(107, 33, 71, 0.12);
}

/* Decorative border behind the image */
.about-image::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 60%;
  height: 60%;
  border: 1px solid rgba(107, 33, 71, 0.2);
  z-index: -1;
}

.about-text p {
  font-size: 1rem;
  color: #5A5259;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-text p:last-of-type {
  margin-bottom: 0;
}

/* Stats block */
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(107, 33, 71, 0.12);
}

.stat-number {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.25rem;
  font-weight: 600;
  background: linear-gradient(135deg, #6B2147 0%, #9B3A5A 45%, #C7636A 80%, #D4847A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.78rem;
  color: #5A5259;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.4;
}

/* SERVICES SECTION */
.services {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 6vw, 5rem);
  background: #FFFFFF;
}

.services-header {
  max-width: 1200px;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
}

.services-desc {
  font-size: 1.05rem;
  color: #5A5259;
  line-height: 1.75;
}

/* Service cards grid */
.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(107, 33, 71, 0.08);
}

.service-card {
  background: #FFFFFF;
  padding: 2.5rem 2rem;
  transition: background 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #6B2147 0%, #9B3A5A 45%, #C7636A 80%, #D4847A 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  background: #F7F5F6;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-number {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3rem;
  font-weight: 600;
  color: rgba(107, 33, 71, 0.08);
  line-height: 1;
  margin-bottom: 1.25rem;
  transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-number {
  color: rgba(107, 33, 71, 0.15);
}

.service-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #1A0F14;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.service-text {
  font-size: 0.88rem;
  color: #5A5259;
  line-height: 1.7;
}

/* FUNDING SECTION */
.funding {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 6vw, 5rem);
  background: #FFFFFF;
}

.funding-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.funding-text p {
  color: #5A5259;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.funding-list {
  background: #F7F5F6;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.funding-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.funding-icon {
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, #6B2147 0%, #9B3A5A 45%, #C7636A 80%, #D4847A 100%);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.funding-item-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: #1A0F14;
}

.funding-item-desc {
  font-size: 0.85rem;
  color: #5A5259;
  margin-top: 0.2rem;
}

/* CONTACT SECTION */
.contact {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 6vw, 5rem);
  background: #F7F5F6;
}

.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contact-info p {
  font-size: 1rem;
  color: #5A5259;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9B3A5A;
  display: block;
  margin-bottom: 0.25rem;
}

.contact-value {
  font-size: 0.95rem;
  color: #1A0F14;
  line-height: 1.5;
}

.contact-value a {
  color: #6B2147;
  text-decoration: none;
  transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-value a:hover {
  color: #C7636A;
}

/* Legal name block */
.contact-legal {
  background: #FFFFFF;
  padding: 2rem 2.5rem;
  border-left: 3px solid #6B2147;
  margin-top: 2rem;
}

.contact-legal p {
  font-size: 0.85rem;
  color: #5A5259;
  line-height: 1.7;
  margin: 0;
}

/* Right column — white logo on dark background */
.contact-brand {
  background: linear-gradient(160deg, #3A0F2A 0%, #6B2147 50%, #9B3A5A 100%);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.contact-brand img {
  width: 100%;
  max-width: 380px;
  height: auto;
}

/* FOOTER */
.footer {
  background: #1A0F14;
  color: rgba(255, 255, 255, 0.45);
  padding: 2.5rem clamp(1.5rem, 6vw, 5rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-text {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

/* Logo in footer — white version */
.footer-logo {
  height: 36px;
  width: auto;
}

/* FADE-IN ANIMATION ON SCROLL */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

/* RESPONSIVE — TABLET */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .hero-content {
    min-height: 100vh;
    background: #F7F5F6;
  }
  .about-grid,
  .contact-grid,
  .funding-grid {
    grid-template-columns: 1fr;
  }
  .services-header {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* RESPONSIVE — MOBILE */
@media (max-width: 640px) {
  .nav-menu {
    display: none;
    position: fixed;
    top: 190px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #4A1535;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99;
    list-style: none;
    gap: 0;
    width: 100%;
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .nav-menu a {
    display: block;
    width: 100%;
    padding: 30px 0;
    background: #F7F5F6;
    color: black;
    text-align: center;
    border-radius: 0;
  }
  .nav-menu .nav-cta {
    background: #F7F5F6;
    color: black !important;
  }
  .burger {
    display: flex;
  }
  .hero-content::before {
    display: none;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .footer {
    flex-direction: column;
    text-align: center;
  }
  .hero-card {
    display: none;
  }
}
/* =REDUCED MOTION — ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/*# sourceMappingURL=styles.css.map */
