/* Lucia Kowaluk Foundation — shared stylesheet */
:root {
  --green-deep: #1d3b2a;
  --green-mid: #2e5d43;
  --green-soft: #e8efe9;
  --cream: #faf7f2;
  --ink: #23281f;
  --ink-soft: #5a6156;
  --gold: #b98a2e;
  --white: #ffffff;
  --radius: 10px;
  --maxw: 1080px;
  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans: "Inter", "Segoe UI", -apple-system, Helvetica, Arial, sans-serif;
}


* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
}
img { max-width: 100%; display: block; }
a { color: var(--green-mid); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
header.site {
  background: var(--cream);
  border-bottom: 1px solid #e3ddd2;
  position: sticky; top: 0; z-index: 50;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--maxw); margin: 0 auto; padding: 14px 24px;
  position: relative;
}
.brand { text-decoration: none; color: var(--green-deep); }
.brand .name {
  font-family: var(--serif); font-weight: 600; font-size: 1.15rem; line-height: 1.2;
}
.brand .sub { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
nav.menu { display: flex; align-items: center; gap: 26px; }
nav.menu a {
  text-decoration: none; color: var(--ink); font-size: 0.95rem; font-weight: 500;
}
nav.menu a:hover { color: var(--green-mid); }
nav.menu a.active { color: var(--green-mid); border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
.lang { font-size: 0.85rem; font-weight: 600; color: var(--ink-soft) !important; border: 1px solid #d8d2c6; border-radius: 20px; padding: 4px 12px; }
.btn {
  display: inline-block; background: var(--green-mid); color: var(--white) !important;
  padding: 10px 22px; border-radius: 26px; text-decoration: none; font-weight: 600; font-size: 0.95rem;
  transition: background 0.2s;
}
.btn:hover { background: var(--green-deep); }
.btn.ghost { background: transparent; color: var(--green-deep) !important; border: 2px solid var(--green-mid); }
.btn.ghost:hover { background: var(--green-soft); }
.btn.gold { background: var(--gold); }
.btn.gold:hover { background: #9a7223; }

/* mobile nav */
.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; color: var(--green-deep); cursor: pointer; }
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  nav.menu {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); flex-direction: column; align-items: flex-start;
    padding: 18px 24px; gap: 16px; border-bottom: 1px solid #e3ddd2;
  }
  nav.menu.open { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  background:
    linear-gradient(160deg, rgba(20, 42, 30, 0.88) 0%, rgba(36, 74, 53, 0.72) 100%),
    url("images/hero-leading-2.jpg") center 28% / cover no-repeat;
  color: var(--white);
  padding: 110px 0 120px;
  position: relative;
}
.hero .credit {
  position: absolute; bottom: 10px; right: 16px;
  font-size: 0.68rem; color: #ffffff99;
}
.hero .wrap { max-width: 860px; text-align: center; }
.hero .kicker {
  letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.8rem;
  color: #cfe0d3; margin-bottom: 18px; font-weight: 600;
}
.hero h1 {
  font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600; line-height: 1.15; margin-bottom: 22px;
}
.hero p.lede { font-size: 1.2rem; color: #e4ede6; max-width: 640px; margin: 0 auto 34px; }
.hero .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero .actions .btn.ghost { color: var(--white) !important; border-color: #ffffff88; }
.hero .actions .btn.ghost:hover { background: #ffffff1c; }

/* page hero (interior pages) */
.page-hero { background: var(--green-deep); color: var(--white); padding: 56px 0; }
.page-hero h1 { font-family: var(--serif); font-size: clamp(1.7rem, 4vw, 2.5rem); font-weight: 600; }
.page-hero p { color: #cfe0d3; margin-top: 10px; max-width: 640px; }

/* ---------- Sections ---------- */
section.block { padding: 72px 0; }
section.block.alt { background: var(--white); }
.block h2 {
  font-family: var(--serif); font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  font-weight: 600; color: var(--green-deep); margin-bottom: 18px;
}
.block .eyebrow {
  letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.75rem;
  color: var(--gold); font-weight: 700; margin-bottom: 10px;
}
.block p { max-width: 720px; color: var(--ink); margin-bottom: 16px; }
.muted { color: var(--ink-soft); }
.center { text-align: center; }
.center p { margin-left: auto; margin-right: auto; }
/* cards */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--white);
  border: 1px solid #e7e1d6;
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.15s, box-shadow 0.15s;
}

.alt .card {
  background: var(--cream);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(29, 59, 42, 0.10);
}

/* Icon centered */
.card .icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  color: var(--green-mid);
  font-size: 1.3rem;
}

/* Title centered */
.card h3 {
  font-family: var(--serif);
  font-size: 1.12rem;
  color: var(--green-deep);
  margin-bottom: 8px;
  text-align: center;
}

/* Paragraph remains left-aligned */
.card p {
  font-size: 0.93rem;
  color: var(--ink-soft);
  margin: 0;
}
/* quote */
.quote { background: var(--green-soft); padding: 80px 0; }
.quote blockquote {
  max-width: 760px; margin: 0 auto; text-align: center;
  font-family: var(--serif); font-size: clamp(1.25rem, 3vw, 1.7rem);
  font-style: italic; color: var(--green-deep); line-height: 1.5;
}
.quote cite { display: block; margin-top: 22px; font-style: normal; font-family: var(--sans); font-size: 0.95rem; color: var(--ink-soft); }
.quote cite strong { color: var(--ink); }

/*quote-highlight*/
.quote-highlight{
    max-width: 760px;
    margin: 2.5rem auto;
    padding: 2rem;
    background: #ffffff;;
    border-left: 6px solid #c9a227; /* couleur or du site */
    border-radius: 10px;
    text-align: center;
}

.quote-highlight p{
    margin: 0;
    font-family: "Source Serif 4", serif;
    font-size: 1.55rem;
    font-style: italic;
    line-height: 1.7;
    color: #333;
}

.quote-highlight footer{
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.quote-highlight footer strong{
    color: #222;
}

.quote-highlight footer span{
    color: #888;
}

/* Long quotes */
.quote-long{
    max-width: 900px;
    margin: 4rem auto;
    padding: 2.5rem 3.5rem;
    background: #faf8f2;
    border-top: 4px solid #c9a227;
    border-bottom: 1px solid #ddd;
    border-radius: 6px;
    text-align: left;
    position: relative;
}

.quote-long::before{
    content: "“";
    position: absolute;
    top: -25px;
    left: 25px;
    font-family: Georgia, serif;
    font-size: 6rem;
    color: rgba(201,162,39,0.25);
    line-height: 1;
}

.quote-long p{
    margin: 0 0 1.2rem 0;
    font-family: "Source Serif 4", serif;
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.85;
    color: #3a3a3a;
}

.quote-long footer{
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
    font-family: "Source Serif 4", serif;
    font-size: 1rem;
    color: #666;
}

.quote-long footer strong{
    color: #222;
}

.quote-long footer span{
    color: #888;
}


/* Two-column resources layout */

.resources-columns{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin: 3rem 0;
}


/* Image */

.resources-image .photo{
    margin: 0;
}

.resources-image img{
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}


.photo figcaption{
    margin-top: 0.8rem;
    font-family: "Source Serif 4", serif;
    font-size: 0.95rem;
    font-style: italic;
    color: #666;
    line-height: 1.5;
}


/* Resources list */

.resource-list{
    padding-left: 1.2rem;
    margin: 0;
}

.resource-list li{
    margin-bottom: 1rem;
    line-height: 1.5;
}

.resource-list a{
    color: #333;
    text-decoration: none;
    transition: color .2s ease;
}

.resource-list a:hover{
    color: #c9a227;
}


/* Mobile */

@media (max-width: 768px){

    .resources-columns{
        grid-template-columns: 1fr;
    }

}

/* About the Fund - How it works */

.fund-section .card h3{
    font-size: 1.3rem;
    margin-bottom: 1rem;
}


.fund-section .card p,
.fund-section .card li{
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}


.fund-section .card ul{
    margin-top: 1rem;
    padding-left: 1.2rem;
}


.fund-section .card strong{
    font-size: inherit;
}

/* About the Fund - wider cards */

.fund-section .cards{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
}


.fund-section .card{
    width: 100%;
    padding: 2rem;
    box-sizing: border-box;
}

.fund-section .center{
    text-align: center;
    margin-top: 3rem;
}

.fund-section .center .btn{
    margin-bottom: 1.5rem;
}

.story-layout{
    max-width: 1000px;
    margin: 0 auto;
}


.story-intro{
    margin-bottom: 3rem;
}


.story-highlight{
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    padding: 2rem 0;
    margin: 2.5rem 0;
    border-top: 1px solid #ddd;
}


.number{
    font-family: "Source Serif 4", serif;
    font-size: 2.5rem;
    color: #c9a227;
    font-weight: 600;
}


.story-columns{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
    padding: 2.5rem 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}


.principles{
    padding-left: 1.2rem;
}


.principles li{
    margin-bottom: 1.5rem;
    line-height: 1.7;
}


@media(max-width:768px){

.story-highlight{
    grid-template-columns:1fr;
}


.story-columns{
    grid-template-columns:1fr;
}

}



/* honors */
.honors { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; margin-top: 32px; }
.honor {
  background: var(--white); border: 1px solid #e7e1d6; border-radius: var(--radius);
  padding: 22px 28px; text-align: center; min-width: 220px; flex: 1; max-width: 320px;
}
.honor .year { color: var(--gold); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.08em; }
.honor .title { font-family: var(--serif); color: var(--green-deep); font-size: 1.05rem; margin-top: 6px; }

/* two-column */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; } }

/* photos */
figure.photo { margin: 0 0 24px; }
figure.photo img {
  width: 100%; border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(29, 59, 42, 0.18);
}
figure.photo figcaption {
  font-size: 0.82rem; color: var(--ink-soft); margin-top: 10px; text-align: center;
}

.photo-carousel {
  overflow-x: auto;
  margin-top: 32px;
  padding-bottom: 15px;
  scroll-behavior: smooth;
}


.photo-track {
  display: flex;
  gap: 20px;
}


.photo-track img {
  width: 350px;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}


/* Barre de défilement plus discrète */

.photo-carousel::-webkit-scrollbar {
  height: 8px;
}

/* CTA band */
.cta-band { background: var(--green-deep); color: var(--white); padding: 64px 0; text-align: center; }
.cta-band h2 { font-family: var(--serif); font-size: clamp(1.5rem, 3.4vw, 2.1rem); margin-bottom: 14px; }
.cta-band p { color: #cfe0d3; max-width: 560px; margin: 0 auto 28px; }

/* donate options */
.donate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; }
@media (max-width: 720px) { .donate-grid { grid-template-columns: 1fr; } }
.donate-card {
  background: var(--white); border: 1px solid #e7e1d6; border-radius: var(--radius);
  padding: 36px 32px;
}
.donate-card h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--green-deep); margin-bottom: 12px; }
.donate-card p { font-size: 0.97rem; color: var(--ink-soft); margin-bottom: 22px; }

/* contact */
form.contact { max-width: 560px; }
form.contact label { display: block; font-weight: 600; font-size: 0.9rem; margin: 18px 0 6px; }
form.contact input, form.contact textarea {
  width: 100%; padding: 12px 14px; border: 1px solid #d8d2c6; border-radius: 8px;
  font-family: var(--sans); font-size: 1rem; background: var(--white);
}
form.contact textarea { min-height: 140px; resize: vertical; }
form.contact button { margin-top: 22px; cursor: pointer; border: none; }

/* facts list */
ul.facts { list-style: none; margin-top: 10px; }
ul.facts li { padding: 10px 0 10px 28px; position: relative; border-bottom: 1px solid #eee7da; }
ul.facts li::before { content: "\2022"; color: var(--gold); position: absolute; left: 8px; font-size: 1.2rem; }

/* ---------- Footer ---------- */
footer.site {
  background: var(--green-deep); color: #cfe0d3; padding: 48px 0 32px; font-size: 0.9rem;
}
footer.site .cols { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
footer.site h4 { color: var(--white); font-family: var(--serif); margin-bottom: 10px; font-size: 1rem; }
footer.site a { color: #cfe0d3; text-decoration: none; }
footer.site a:hover { color: var(--white); text-decoration: underline; }
footer.site ul { list-style: none; }
footer.sit


