

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --c-bg:       #f5f0e8;
  --c-fg:       #2c2416;
  --c-muted:    #8a7a62;
  --c-accent:   #4a6741;
  --c-accent2:  #b8860b;
  --c-surface:  #ede6d6;
  --c-dark-bg:  #1e1a12;
  --c-dark-fg:  #f5f0e8;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 7rem;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--c-bg);
  color: var(--c-fg);
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 1vw + 0.6rem, 1.0625rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.25;
  color: var(--c-fg);
}
h1 { font-size: clamp(2rem, 4vw + 0.5rem, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.4rem, 2vw + 0.5rem, 2rem); font-weight: 600; margin-top: var(--space-5); margin-bottom: var(--space-2); }
h3 { font-size: 1.15rem; font-weight: 600; margin-top: var(--space-4); margin-bottom: var(--space-1); }
p { max-width: 72ch; margin-bottom: var(--space-2); }
p:last-child { margin-bottom: 0; }

.container {
  width: 100%;
  padding-inline: var(--space-3);
  margin-inline: auto;
}
@media (min-width: 641px)  { .container { padding-inline: var(--space-4); } }
@media (min-width: 1025px) { .container { max-width: 980px; padding-inline: var(--space-5); } }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--c-bg);
  border-bottom: 1px solid rgba(44,36,22,0.12);
  padding-block: var(--space-2);
}
.header-inner { display: flex; align-items: center; gap: var(--space-2); }
.header-logo { display: flex; align-items: center; gap: var(--space-1); }
.header-logo img { width: 38px; height: 38px; object-fit: contain; }
.header-brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-fg);
}
.header-brand span { color: var(--c-accent); }

.page-hero {
  background-color: var(--c-dark-bg);
  padding-block: var(--space-6);
  color: var(--c-dark-fg);
}
.page-hero .label-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent2);
  display: block;
  margin-bottom: var(--space-2);
}
.page-hero h1 { color: var(--c-dark-fg); margin-bottom: var(--space-2); }
.page-hero p { color: rgba(245,240,232,0.65); max-width: 56ch; }

.page-content {
  padding-block: var(--space-6);
}
.prose { max-width: 72ch; }
.prose h2 { border-bottom: 1px solid rgba(44,36,22,0.1); padding-bottom: var(--space-1); }
.prose ul, .prose ol {
  margin-bottom: var(--space-2);
  padding-left: var(--space-3);
}
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 0.4rem; max-width: 68ch; }

.about-blocks {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-top: var(--space-5);
}
.about-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  align-items: start;
}
.about-block-text h2 { margin-top: 0; }
.about-block-text p { color: var(--c-muted); max-width: none; }
.about-img-placeholder {
  aspect-ratio: 16 / 10;
  background-color: var(--c-surface);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (min-width: 1025px) {
  .about-block { grid-template-columns: 1fr 1fr; }
}

.site-footer {
  background-color: var(--c-dark-bg);
  color: var(--c-dark-fg);
  padding-block: var(--space-4);
  border-top: 1px solid rgba(245,240,232,0.08);
}
.footer-inner-aux {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-3);
  align-items: center;
}
.footer-logo-aux { display: flex; align-items: center; gap: var(--space-1); }
.footer-logo-aux img { width: 32px; height: 32px; object-fit: contain; filter: brightness(0) invert(1) opacity(0.7); }
.footer-logo-aux span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-dark-fg);
}
.footer-logo-aux span em { color: var(--c-accent2); font-style: normal; }
.footer-copy-aux { font-size: 0.8rem; color: rgba(245,240,232,0.4); }
.footer-legal-aux { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.footer-legal-aux a { font-size: 0.8rem; color: rgba(245,240,232,0.45); }
.footer-legal-aux a:hover { color: rgba(245,240,232,0.8); }

.btn {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-outline {
  background-color: transparent;
  color: var(--c-fg);
  border-color: var(--c-fg);
}
.btn-outline:hover { background-color: var(--c-fg); color: var(--c-bg); }

.aux-hero {
  background-color: var(--c-dark-bg);
  padding: var(--space-6) var(--space-3);
  color: var(--c-dark-fg);
  text-align: center;
}
.aux-hero h1 {
  color: var(--c-dark-fg);
  margin-bottom: var(--space-2);
}
.aux-lead {
  color: rgba(245,240,232,0.7);
  font-size: 1.05rem;
  max-width: 60ch;
  margin-inline: auto;
  margin-bottom: 0;
}

.about-section {
  padding: var(--space-5) var(--space-3);
}
.about-section.alt-bg {
  background-color: var(--c-surface);
}
@media (min-width: 641px) {
  .about-section {
    padding: var(--space-6) var(--space-4);
  }
}

.story-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  align-items: center;
}
.story-block.reverse {
  direction: rtl;
}
.story-block.reverse > * {
  direction: ltr;
}
.story-text {
  max-width: 520px;
}
.story-text h2 {
  margin-top: 0;
  color: var(--c-fg);
}
.story-text p {
  color: var(--c-muted);
  line-height: 1.7;
}
.story-img {
  aspect-ratio: 4 / 3;
  background-color: var(--c-surface);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-muted);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
@media (min-width: 1025px) {
  .story-block {
    grid-template-columns: 1fr 1fr;
  }
}

.section-header {
  text-align: center;
}
.section-header h2 {
  margin-top: 0;
  color: var(--c-fg);
}
.section-header p {
  color: var(--c-muted);
  font-size: 1.05rem;
  margin-bottom: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
@media (min-width: 641px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1025px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.value-card {
  background-color: var(--c-bg);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  border: 1px solid rgba(74,103,65,0.1);
  text-align: center;
}
.value-card h3 {
  margin-top: var(--space-2);
  margin-bottom: var(--space-1);
  color: var(--c-fg);
}
.value-card p {
  font-size: 0.95rem;
  color: var(--c-muted);
  margin: 0;
  line-height: 1.6;
}
.value-icon {
  width: 56px;
  height: 56px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  flex-shrink: 0;
}
.value-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 641px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1025px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.team-member {
  text-align: center;
}
.team-avatar {
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 120px;
  margin-inline: auto;
  margin-bottom: var(--space-2);
  border-radius: 50%;
  background-color: var(--c-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-muted);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.team-member h3 {
  margin-top: 0;
  margin-bottom: var(--space-1);
  color: var(--c-fg);
}
.team-role {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-accent);
  margin-bottom: var(--space-1);
}
.team-bio {
  font-size: 0.95rem;
  color: var(--c-muted);
  line-height: 1.6;
}

.impact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
@media (min-width: 641px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1025px) {
  .impact-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.impact-stat {
  padding: var(--space-3);
  background-color: var(--c-bg);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--c-accent);
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-accent2);
  margin-bottom: var(--space-1);
}
.stat-label {
  display: block;
  font-weight: 600;
  color: var(--c-fg);
  margin-bottom: var(--space-1);
}
.stat-detail {
  font-size: 0.9rem;
  color: var(--c-muted);
  line-height: 1.6;
  margin: 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
@media (min-width: 641px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.trust-card {
  padding: var(--space-3);
  background-color: var(--c-bg);
  border-radius: var(--radius-md);
  border: 1px solid rgba(74,103,65,0.15);
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--c-accent);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: var(--space-2);
  flex-shrink: 0;
}
.trust-card h3 {
  margin-top: 0;
  margin-bottom: var(--space-1);
  color: var(--c-fg);
  font-size: 1.05rem;
}
.trust-card p {
  font-size: 0.95rem;
  color: var(--c-muted);
  margin: 0;
  line-height: 1.6;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}
.footer-col h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-dark-fg);
  margin-bottom: var(--space-2);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.footer-col a {
  color: rgba(245,240,232,0.6);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: rgba(245,240,232,1);
}
.footer-col p {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.6);
  margin: 0;
  line-height: 1.6;
}
.footer-col address {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.5);
  line-height: 1.6;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(245,240,232,0.08);
  padding-top: var(--space-3);
  font-size: 0.85rem;
  color: rgba(245,240,232,0.4);
}

.about-img-placeholder { color: #111111 !important; }
.story-img { color: #111111 !important; }
.team-avatar { color: #111111 !important; }


/* wh-contrast-fix */
/* Auto-injected: text color did not meet 4.5:1 against declared background. */
.about-img-placeholder { color: #111111 !important; }
.story-img { color: #111111 !important; }
.team-avatar { color: #111111 !important; }
