@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --radius: 0.75rem;
  --background: oklch(1 0 0);
  --foreground: oklch(0.245 0.014 145);
  --card: oklch(1 0 0);
  --primary: oklch(0.315 0.052 155.5);
  --primary-foreground: oklch(0.98 0.012 95);
  --primary-deep: oklch(0.235 0.042 156);
  --secondary: oklch(0.955 0.014 92);
  --secondary-foreground: oklch(0.315 0.052 155.5);
  --muted: oklch(0.962 0.009 95);
  --muted-foreground: oklch(0.48 0.014 150);
  --accent: oklch(0.74 0.107 82);
  --gold: oklch(0.74 0.107 82);
  --gold-soft: oklch(0.86 0.06 85);
  --sand: oklch(0.962 0.016 88);
  --charcoal: oklch(0.31 0.005 250);
  --border: oklch(0.912 0.011 92);
  --ring: oklch(0.74 0.107 82);
  --font-display: "Fraunces", ui-serif, Georgia, serif;
  --font-sans: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --shadow-soft: 0 1px 2px oklch(0.235 0.042 156 / 0.04), 0 12px 32px -12px oklch(0.235 0.042 156 / 0.16);
  --shadow-lift: 0 2px 4px oklch(0.235 0.042 156 / 0.06), 0 28px 60px -24px oklch(0.235 0.042 156 / 0.3);
  --gradient-forest: linear-gradient(155deg, var(--primary-deep), var(--primary));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 1.25rem;
  color: var(--muted-foreground);
}
.eyebrow.gold { color: var(--gold); }

.heading-h1 { font-size: 2.5rem; line-height: 1.05; }
.heading-h2 { font-size: 1.875rem; line-height: 1.25; }
.heading-h3 { font-size: 1.25rem; line-height: 1.3; }
@media (min-width: 640px) {
  .heading-h1 { font-size: 3rem; }
  .heading-h2 { font-size: 2.25rem; }
  .heading-h3 { font-size: 1.5rem; }



}
@media (max-width: 767px) {
    .hero img {
        object-position: 89% 20% !important;
    }
    .custom-section {
    display: block !important;
}
}
@media (min-width: 1024px) {
  .heading-h1 { font-size: 3.75rem; }
  .heading-h2 { font-size: 2.75rem; }
    .hero img {
      object-position: 92% 28% !important;
}
}

.shadow-soft { box-shadow: var(--shadow-soft); }
.shadow-lift { box-shadow: var(--shadow-lift); }
.bg-forest { background-image: var(--gradient-forest); }

/* Layout helpers */
.wrap { margin-inline: auto; width: 100%; max-width: 72rem; padding-inline: 1.5rem; }
.section { padding-block: 6rem; }
@media (min-width: 768px) { .section { padding-block: 8rem; } }
.section--sand
 { background:url(../assets/testi2.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
   color: var(--foreground);
   }
.section--forest {
  background-image: var(--gradient-forest);
  color: var(--primary-foreground);
}
.section--default { background: var(--background); color: var(--foreground); }

.grid-2 { display: grid; gap: 4rem; }
@media (min-width: 1024px) { .grid-2 { grid-template-columns: 1fr 1fr; align-items: center; } }
.grid-3 { display: grid; gap: 2rem; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.3s ease;
}
.cta-row {
    display: flex;
    justify-content: space-between;
    
}
.cta-row a {
    font-size: 13px !important;
}
.btn--gold {
  background: var(--gold);
  color: var(--primary-deep);
  box-shadow: var(--shadow-soft);
}
.btn--gold:hover { filter: brightness(1.05); transform: translateY(-2px); }
.btn--forest {
  background: var(--primary);
  color: var(--primary-foreground);
}
.btn--forest:hover { background: var(--primary-deep); transform: translateY(-2px); }
.btn--outline {
  border: 1px solid color-mix(in oklab, currentColor 25%, transparent);
  color: currentColor;
}
.btn--outline:hover { border-color: color-mix(in oklab, currentColor 60%, transparent); transform: translateY(-2px); }

/* Cards */
.card {
  border-radius: 1rem;
  border: 1px solid color-mix(in oklab, var(--border) 70%, transparent);
  background: var(--card);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.card--dark {
  border-radius: 1rem;
  border: 1px solid oklch(1 0 0 / 0.12);
  background: oklch(1 0 0 / 0.05);
  padding: 2rem;
}

/* Header */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  transition: all 0.5s ease;
  background: transparent;
}
.site-header.scrolled, .site-header.menu-open {
  background: oklch(0.235 0.042 156 / 0.95);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-soft);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
  max-width: 72rem;
}
.logo { display: flex; align-items: center; }
.logo img {
    height: 3.75rem;
    width: auto;
}
.footer-grid .logo img { height: 3rem; }
.nav-desktop { display: none; align-items: center; gap: 2rem; }
@media (min-width: 1024px) { .nav-desktop { display: flex; } }
.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: oklch(0.98 0.012 95 / 0.75);
  transition: color 0.3s ease;
}
.nav-desktop , .nav-desktop a.active { color: var(--gold) !important; }
.nav-toggle { color: var(--primary-foreground); background: none; }
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-mobile {
  display: none;
  border-top: 1px solid oklch(1 0 0 / 0.1);
  background: var(--primary-deep);
  padding: 1rem 1.5rem 2rem;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  border-bottom: 1px solid oklch(1 0 0 / 0.1);
  padding-block: 0.875rem;
  font-size: 1rem;
  color: oklch(0.98 0.012 95 / 0.85);
}
.nav-mobile .btn { margin-top: 1.5rem; }

/* Page hero */
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--primary-deep);
  padding: 9rem 1.5rem 6rem;
  color: var(--primary-foreground);
  text-align: center;
}
@media (min-width: 768px) { .page-hero { padding: 11rem 1.5rem 8rem; } }
.page-hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: var(--gradient-forest);
  opacity: 0.75;
}
.page-hero .inner { margin-inline: auto; max-width: 48rem; }
.page-hero p.eyebrow { color: var(--gold); }
.page-hero .intro { margin-top: 1.5rem; font-size: 1.125rem; line-height: 1.6; color: oklch(0.98 0.012 95 / 0.8); }

/* Hero home */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 680px;
  display: flex;
  align-items: center;
  background: var(--primary-deep);
  padding: 10rem 1.5rem 6rem;
  color: var(--primary-foreground);
}
@media (min-width: 1024px) { .hero { height: 88vh; max-height: 860px; } }
.hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 28%;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to right, var(--primary-deep), oklch(0.235 0.042 156 / 0.8), oklch(0.235 0.042 156 / 0.1));
}
.hero .wrap { display: grid; gap: 3.5rem; align-items: center; max-width: 72rem; }
@media (min-width: 1024px) { .hero .wrap { grid-template-columns: 1.15fr 0.85fr; } }
.hero h1 { max-width: 32rem; }
.hero .lede { margin-top: 1.75rem; max-width: 36rem; font-size: 1.125rem; line-height: 1.6; color: oklch(0.98 0.012 95 / 0.8); }
.hero .cta-row { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-card {
  border-radius: 1.5rem;
  border: 1px solid oklch(0.74 0.107 82 / 0.12); /* Light border */
  background: oklch(0.98 0.012 95 / 0.05) !important; /* Extremely low opacity to show the face clearly */
  padding: 2.5rem;
  
}
.hero-card p.big { margin-top: 1rem; font-family: var(--font-display); font-size: 1.875rem; line-height: 1.2; }
.hero-card p.desc { margin-top: 1rem; font-size: 0.875rem; line-height: 1.6; color: oklch(0.98 0.012 95 / 0.75); }
.hero-card a.more { margin-top: 1.75rem; display: inline-flex; font-size: 0.875rem; font-weight: 600; color: var(--gold); }
@media (max-width: 1023px) { .hero-card-wrap { display: none; } }

/* Principles / dark grid section */
.dark-feature {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--primary-deep);
  padding-block: 7rem;
  color: var(--primary-foreground);
}
.dark-feature img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; opacity: 0.25; }
.dark-feature::after { content: ""; position: absolute; inset: 0; z-index: -1; background-image: var(--gradient-forest); opacity: 0.8; }
.principle {
  height: 100%;
  border-radius: 1rem;
  border: 1px solid oklch(0.98 0.012 95 / 0.12);
  background: oklch(0.98 0.012 95 / 0.05);
  padding: 2rem;
  transition: border-color 0.3s ease;
}
.principle:hover { border-color: oklch(0.74 0.107 82 / 0.4); }
.principle .n { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); }
.principle h3 { margin-top: 1rem; font-size: 1.25rem; }
.principle p { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.6; color: oklch(0.98 0.012 95 / 0.7); }

/* Forms */
.field-input {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--background);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.3s ease;
}
.field-input:focus { border-color: var(--gold); }
.newsletter-form { width: 100%; max-width: 28rem; }
.newsletter-form .row { display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .newsletter-form .row { flex-direction: row; } }
.newsletter-form input {
  width: 100%;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--background);
  color: var(--foreground);
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.3s ease;
}
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form.dark input {
  border-color: oklch(0.98 0.012 95 / 0.25);
  background: oklch(0.98 0.012 95 / 0.05);
  color: var(--primary-foreground);
}
.newsletter-form.dark input::placeholder { color: oklch(0.98 0.012 95 / 0.45); }
.newsletter-form .confirm { margin-top: 0.75rem; font-size: 0.875rem; color: var(--primary); }
.newsletter-form.dark .confirm { color: var(--gold); }

/* Footer */
.site-footer { background: var(--primary-deep); padding: 5rem 1.5rem; color: var(--primary-foreground); }
.footer-grid { margin-inline: auto; max-width: 72rem; display: grid; gap: 3.5rem; }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1.3fr; } }
.footer-grid .about-copy { margin-top: 1.5rem; max-width: 24rem; font-size: 0.875rem; line-height: 1.6; color: oklch(0.98 0.012 95 / 0.7); }
.footer-social { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-social a { font-size: 0.875rem; color: oklch(0.98 0.012 95 / 0.65); transition: color 0.3s ease; }
.footer-social a:hover { color: var(--gold); }
.footer-grid h3 { margin-bottom: 1.25rem; }
.footer-grid ul li { margin-bottom: 0.75rem; }
.footer-grid ul a { font-size: 0.875rem; color: oklch(0.98 0.012 95 / 0.7); transition: color 0.3s ease; }
.footer-grid ul a:hover { color: var(--gold); }
.footer-bottom {
  margin: 4rem auto 0;
  max-width: 72rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid oklch(0.98 0.012 95 / 0.1);
  padding-top: 2rem;
  font-size: 0.75rem;
  color: oklch(0.98 0.012 95 / 0.5);
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.9s cubic-bezier(.16,1,.3,1), transform 0.9s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* Misc */
.rounded-img { border-radius: 1.5rem; object-fit: cover; width: 100%; }
.dot-list li { display: flex; gap: 0.75rem; margin-bottom: 0.75rem; }
.dot-list li::before { content: ""; margin-top: 0.6rem; height: 0.375rem; width: 0.375rem; flex-shrink: 0; border-radius: 999px; background: var(--gold); }
.muted { color: var(--muted-foreground); }
.timeline { border-left: 1px solid var(--border); padding-left: 2rem; }
@media (min-width: 768px) { .timeline { padding-left: 3rem; } }
.timeline .item { position: relative; padding-bottom: 3rem; }
.timeline .item:last-child { padding-bottom: 0; }
.timeline .item::before {
  content: "";
  position: absolute;
  left: -2.55rem;
  top: 0.5rem;
  height: 0.75rem;
  width: 0.75rem;
  border-radius: 999px;
  background: var(--gold);
}
@media (min-width: 768px) { .timeline .item::before { left: -3.55rem; } }
.blockquote {
  margin-top: 2.25rem;
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.35;
}
.figure-card { border-radius: 1.5rem; overflow: hidden; box-shadow: var(--shadow-soft); }
.figure-card img { height: 18rem; width: 100%; object-fit: cover; transition: transform 0.7s ease; }
.figure-card:hover img { transform: scale(1.05); }
.figure-card figcaption { background: var(--card); padding: 1.25rem 1.5rem; font-family: var(--font-display); font-size: 1.25rem; }
.stat-block { border-bottom: 1px solid var(--border); padding-bottom: 1.5rem; margin-bottom: 1.5rem; }
.stat-block:last-child { border-bottom: none; margin-bottom: 0; }
.stat-block .k { font-family: var(--font-display); font-size: 1.5rem; }
.stat-block .v { margin-top: 0.25rem; color: var(--muted-foreground); }
.map-placeholder {
  margin-top: 2.5rem;
  display: flex;
  height: 14rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  border: 1px dashed var(--border);
  background: var(--sand);
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.quote-mark { font-family: var(--font-display); font-size: 2.5rem; line-height: 1; color: var(--gold); margin: 0; }

