﻿@import url("https://fonts.googleapis.com/css2?family=Cuprum:wght@400;500;600;700&display=swap");

:root {
  color-scheme: light;
  --ink: #595959;
  --muted: #6f7280;
  --paper: #ffffff;
  --soft: #f6f6f4;
  --line: #deded9;
  --primary: #6a6a64;
  --primary-dark: #464642;
  --accent: #c27c2c;
  --accent-soft: #fff3df;
  --navy: #4b4b47;
  --shadow: 0 18px 48px rgba(27, 45, 52, 0.14);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--primary-dark);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 14px max(20px, calc((100vw - var(--container)) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(222, 222, 217, 0.9);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-grid;
  gap: 1px;
  color: #4c4c48;
  font-family: "Trajan Pro", "Cinzel", Georgia, "Times New Roman", serif;
  line-height: 0.98;
  text-transform: uppercase;
}

.brand-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand-subtitle {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.015em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-family: "Cuprum", "Trebuchet MS", Arial, sans-serif;
  text-transform: uppercase;
}

.site-nav a {
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.site-nav a[aria-current="page"] {
  color: var(--primary);
}

.site-nav a:hover {
  color: var(--primary);
}

.site-header.has-shadow {
  box-shadow: 0 10px 24px rgba(31, 41, 51, 0.08);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0 70px;
  overflow: visible;
  background: var(--paper);
}

.hero-media {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: var(--shadow);
  order: 2;
}

.hero-media::after {
  content: none;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-media img.is-active {
  opacity: 1;
}

.hero-content {
  position: relative;
  width: auto;
  margin: 0;
  padding: 0;
  color: var(--ink);
  order: 1;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cuprum", "Trebuchet MS", Arial, sans-serif;
  line-height: 1.14;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(38px, 5.3vw, 64px);
}

h2 {
  font-size: clamp(30px, 4.5vw, 48px);
  color: var(--navy);
}

h3 {
  font-size: 21px;
  color: var(--navy);
}

.hero-content p:not(.eyebrow) {
  max-width: 580px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: var(--radius);
  font-family: "Cuprum", "Trebuchet MS", Arial, sans-serif;
  font-weight: 800;
}

.button-primary {
  color: white;
  background: var(--primary);
}

.button-primary:hover {
  color: white;
  background: var(--primary-dark);
}

.button-secondary {
  color: var(--primary-dark);
  border: 1px solid var(--line);
}

.button-secondary:hover {
  color: var(--primary-dark);
  background: var(--soft);
}

.section {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0;
}

.page-hero {
  position: relative;
  min-height: 320px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--navy);
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 31, 38, 0.82), rgba(16, 31, 38, 0.2));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 54px;
  color: white;
}

.page-hero h1 {
  font-size: clamp(36px, 6vw, 58px);
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
}

.muted-section,
.support-section {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - var(--container)) / 2));
  padding-right: max(20px, calc((100vw - var(--container)) / 2));
  background: var(--soft);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}

.intro-copy {
  max-width: none;
  font-size: 18px;
}

.intro-copy p:first-child {
  margin-top: 0;
}

.signature {
  text-align: right;
}

.impact-panel {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.impact-panel div {
  padding: 18px;
  border-left: 4px solid var(--primary);
  background: #f9fbfb;
}

.impact-number {
  display: block;
  color: var(--primary-dark);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.impact-label {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.collab-grid,
.support-grid,
.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.preview-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.collab-card,
.support-card,
.activity-card,
.preview-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.collab-card {
  padding: 24px;
}

.preview-card {
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.preview-card:hover {
  color: inherit;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(31, 41, 51, 0.1);
}

.preview-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.preview-card h3,
.preview-card p {
  padding-left: 20px;
  padding-right: 20px;
}

.preview-card h3 {
  margin-top: 18px;
}

.preview-card p {
  padding-bottom: 22px;
  color: var(--muted);
}

.inline-cta {
  display: inline-flex;
  margin-top: 22px;
  font-weight: 800;
}

.collab-card p {
  color: var(--muted);
}

.activity-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filter {
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
  font-weight: 800;
  cursor: pointer;
}

.filter:hover,
.filter.is-active {
  color: white;
  border-color: var(--primary);
  background: var(--primary);
}

.activity-list {
  display: grid;
  gap: 16px;
}

.activity-card {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  min-height: 190px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.activity-card {
  cursor: pointer;
}

.activity-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(31, 41, 51, 0.1);
}

.activity-card.is-hidden {
  display: none;
}

.activity-card > img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}

.activity-image-link {
  display: block;
  min-height: 190px;
  overflow: hidden;
}

.activity-image-link img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}

.activity-card > div {
  padding: 24px;
}

.activity-card h3 a {
  color: var(--navy);
}

.activity-card h3 {
  color: var(--navy);
}

.activity-readmore {
  display: inline-flex;
  margin-top: 16px;
  font-family: "Cuprum", "Trebuchet MS", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.activity-card.text-only {
  grid-template-columns: 1fr;
  background: linear-gradient(135deg, #ffffff, #f8fbfa);
}

.date {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.activity-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.gallery-button {
  margin-top: 16px;
  padding: 10px 14px;
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  color: var(--primary-dark);
  background: #eef8f6;
  font-weight: 800;
  cursor: pointer;
}

.gallery-button:hover {
  color: white;
  background: var(--primary);
}

.project-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: center;
}

.project-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.project-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.project-copy {
  font-size: 18px;
}

.support-card {
  position: relative;
  min-height: 220px;
  padding: 26px;
}

.support-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: white;
  background: var(--primary);
  font-weight: 800;
}

.support-card p {
  color: var(--muted);
}

.support-card strong {
  color: var(--ink);
  overflow-wrap: anywhere;
}

.brochure-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 46px;
  margin-top: 22px;
  padding: 12px 18px 12px 12px;
  border-radius: var(--radius);
  color: var(--paper);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  box-shadow: 0 14px 30px rgba(70, 70, 66, 0.18);
  font-family: "Cuprum", "Trebuchet MS", Arial, sans-serif;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.brochure-link:hover {
  color: var(--paper);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(70, 70, 66, 0.24);
}

.brochure-link strong,
.brochure-link small {
  display: block;
}

.brochure-link strong {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.05;
}

.brochure-link small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.1;
}

.brochure-icon {
  position: relative;
  display: inline-flex;
  align-items: end;
  justify-content: center;
  width: 42px;
  height: 50px;
  padding-bottom: 8px;
  border-radius: 6px;
  color: var(--primary-dark);
  background: var(--paper);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(70, 70, 66, 0.16);
}

.brochure-icon::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 13px;
  height: 13px;
  border-bottom-left-radius: 4px;
  background: linear-gradient(135deg, #d8d8d2 50%, transparent 50%);
}

.foundation-section .section-heading {
  max-width: 920px;
}

.document-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.document-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.document-card:hover {
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(70, 70, 66, 0.12);
}

.document-card strong,
.document-card small {
  display: block;
}

.document-card strong {
  color: var(--navy);
  font-family: "Cuprum", "Trebuchet MS", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.1;
}

.document-card small {
  margin-top: 5px;
  color: var(--muted);
}

.document-card .brochure-icon {
  flex: 0 0 auto;
  color: var(--paper);
  background: var(--primary);
}

.document-card .brochure-icon::before {
  background: linear-gradient(135deg, #9d9d96 50%, transparent 50%);
}

.document-card.compact {
  margin-top: 18px;
  padding: 14px;
}

.article-page {
  background: var(--paper);
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0 70px;
}

.article-hero > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.article-hero p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 20px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--muted);
  font-family: "Cuprum", "Trebuchet MS", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.article-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 38px;
  padding-top: 28px;
}

.article-body {
  font-size: 19px;
}

.article-body p:first-child {
  margin-top: 0;
}

.article-aside {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.article-aside h2 {
  font-size: 30px;
}

.article-aside dl {
  margin: 18px 0 0;
}

.article-aside div {
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.article-aside dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.article-aside dd {
  margin: 4px 0 0;
  color: var(--ink);
}

.article-gallery-block {
  grid-column: 1 / -1;
  padding-top: 24px;
}

.article-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.article-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.article-gallery img:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(70, 70, 66, 0.15);
}

.contact-section {
  padding-bottom: 70px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-grid address,
.contact-note {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  font-style: normal;
}

.contact-note p:first-child {
  margin-top: 0;
}

.site-footer {
  padding: 28px 20px;
  color: white;
  background: var(--primary-dark);
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.lightbox {
  width: min(980px, calc(100vw - 32px));
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: #101820;
  color: white;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.lightbox::backdrop {
  background: rgba(16, 24, 32, 0.72);
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #101820;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  color: white;
  background: rgba(16, 24, 32, 0.72);
  cursor: pointer;
}

.lightbox-close {
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  font-size: 28px;
}

.lightbox-nav {
  top: 50%;
  width: 46px;
  height: 54px;
  transform: translateY(-50%);
  font-size: 34px;
}

.lightbox-nav.prev {
  left: 12px;
}

.lightbox-nav.next {
  right: 12px;
}

.lightbox-count {
  padding: 10px 14px 14px;
  color: rgba(255, 255, 255, 0.76);
  text-align: center;
  font-weight: 700;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 14px 20px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

  .site-nav.is-open {
    display: grid;
    gap: 12px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 42px 0 58px;
  }

  .hero-media {
    min-height: 360px;
  }

  .intro-grid,
  .project-section,
  .contact-grid,
  .article-hero,
  .article-content {
    grid-template-columns: 1fr;
  }

  .collab-grid,
  .support-grid,
  .preview-grid,
  .document-list {
    grid-template-columns: 1fr;
  }

  .article-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .activity-card {
    grid-template-columns: 190px minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .brand-title {
    font-size: 15px;
  }

  .brand-subtitle {
    font-size: 12px;
  }

  .hero {
    width: min(100% - 32px, var(--container));
    min-height: auto;
  }

  .hero-content {
    padding-bottom: 0;
  }

  .hero-content p:not(.eyebrow) {
    font-size: 18px;
  }

  .section {
    width: min(100% - 32px, var(--container));
    padding: 58px 0;
  }

  .muted-section,
  .support-section {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .activity-card {
    grid-template-columns: 1fr;
  }

  .activity-card > img {
    height: 210px;
    min-height: 210px;
  }

  .activity-image-link,
  .activity-image-link img {
    height: 210px;
    min-height: 210px;
  }

  .article-hero {
    width: min(100% - 32px, var(--container));
    padding: 42px 0 52px;
  }

  .article-gallery {
    grid-template-columns: 1fr;
  }

  .lightbox-nav {
    top: auto;
    bottom: 46px;
    transform: none;
  }
}


