:root {
  --dark: #04222E;
  --dark-muted: #16313C;
  --light: #FFFFFF;
  --sage: #E8EFE9;
  --accent: #9AB6A3;
  --accent-dark: #62816F;
  --max-width: 1100px;
  --font-serif: "Cormorant Garamond", serif;
  --font-sans: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
}

a {
  color: var(--dark-muted);
  text-decoration: none;
}
a:hover {
  color: var(--accent-dark);
}

.site-header {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 4vw;
  background: rgba(4, 34, 46, 0.95);
  color: var(--light);
  z-index: 20;
}

.brand {
  font-family: var(--font-serif);
  letter-spacing: 0.45rem;
  font-size: 1rem;
  color: var(--light);
}

.site-nav {
  display: flex;
  gap: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.18rem;
  font-size: 0.75rem;
}

.site-nav a {
  color: var(--light);
}
.site-nav a:hover {
  color: var(--accent);
}

main {
  scroll-padding-top: 80px; /* for anchor offset */
}

.hero--centered {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 4vw 3rem;
  background: var(--light);
}

.hero--centered .hero-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.hero-logo {
  max-width: clamp(360px, 52vw, 700px);
  width: 100%;
  height: auto;
}

.hero-tagline {
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: 0.12rem;
  color: var(--dark-muted);
  margin: 0;
}

.hero--centered .button {
  margin-top: 0.75rem;
}


.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.section {
  padding: 6rem 4vw;
}

.narrow {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  font-size: 0.7rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  margin-bottom: 1.5rem;
}

.pillars {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.pillars article {
  padding: 2rem;
  background: var(--sage);
  border-radius: 12px;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  align-items: start;
  background: #F4F7F4;
}

.card-stack {
  display: grid;
  gap: 1.5rem;
}

.card-stack article {
  padding: 2rem;
  background: var(--light);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(6, 22, 27, 0.08);
}

.card-stack h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  letter-spacing: 0.08rem;
  margin-top: 0;
}

.card-stack a {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
}

.team {
  background: var(--light);
}

.team .intro {
  max-width: 640px;
  margin-top: -0.5rem;
  margin-bottom: 3rem;
}

.team-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.team-grid article {
  padding: 2.5rem;
  border: 1px solid #D8E2DB;
  border-radius: 14px;
  background: var(--light);
}

.team-grid h3 {
  font-family: var(--font-serif);
  letter-spacing: 0.18rem;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.team-grid .role {
  font-style: italic;
  color: var(--dark-muted);
  margin-bottom: 1.2rem;
}

.contact {
  background: var(--dark);
  color: var(--light);
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: stretch;
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 3rem;
}

.contact-card h2 {
  color: var(--light);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  line-height: 2;
}

.contact-cta {
  align-self: center;
  font-size: 1.05rem;
  padding: 0 1rem;
}

.button {
  display: inline-block;
  padding: 0.85rem 2.6rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.25rem;
  font-size: 0.75rem;
  background: var(--accent);
  color: var(--dark);
  transition: transform 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  color: var(--dark);
}

.button--dark {
  background: var(--light);
  color: var(--dark);
}

.site-footer {
  background: #06161B;
  color: #9CB0A6;
  padding: 4rem 4vw 2rem;
  text-align: center;
  font-size: 0.85rem;
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .site-nav {
    display: none; /* simple approach for now */
  }
}

@media (max-width: 600px) {
  .section {
    padding: 5rem 6vw;
  }

  .card-stack article,
  .team-grid article,
  .pillars article {
    padding: 1.75rem;
  }
}

.site-footer {
  background: #06161B;
  color: #9CB0A6;
  padding: 4rem 4vw 2rem;
  text-align: center;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-signature {
  display: grid;
  gap: 0.75rem;
  justify-items: center;
}

.footer-name {
  font-family: var(--font-serif);
  letter-spacing: 0.3rem;
  color: var(--light);
}

.footer-role {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 0.75rem;
}

.footer-contacts,
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  color: #9CB0A6;
}

.footer-links a {
  color: #A8C0B7;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-copy {
  font-size: 0.75rem;
  color: #6F8A84;
  margin-top: 1rem;
}

.manifesto {
  max-width: var(--max-width);
  margin: 0 auto;
}

.manifesto-lead,
.manifesto-close {
  font-size: 1.05rem;
  max-width: 880px;
  margin-bottom: 2.5rem;
}

.manifesto-list {
  counter-reset: item;
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
  display: grid;
  gap: 2rem;
}

.manifesto-list li {
  background: var(--sage);
  padding: 2rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(4, 34, 46, 0.06);
}

.manifesto-list h3 {
  font-family: var(--font-serif);
  letter-spacing: 0.12rem;
  font-size: 1.2rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.manifesto-list p {
  margin: 0;
}

#philosophy.section {
  padding-top: 4rem;
}

.publications {
  display: grid;
  gap: 4rem;
  background: #f6f8f6;
}

.pub-intro {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: start;
}

.pub-portrait {
  margin: 0;
  background: var(--light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(4, 34, 46, 0.12);
}

.pub-portrait img {
  width: 100%;
  display: block;
  height: auto;
}

.pub-portrait figcaption {
  padding: 1.2rem 1.6rem;
  font-size: 0.9rem;
  letter-spacing: 0.14rem;
  text-transform: uppercase;
  color: var(--dark-muted);
  background: var(--sage);
}

.pub-text em { color: var(--dark-muted); }

.pub-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.pub-card {
  background: var(--light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(6, 22, 27, 0.08);
  display: flex;
  flex-direction: column;
}

.pub-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.pub-card-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pub-card-body h3 {
  font-family: var(--font-serif);
  letter-spacing: 0.14rem;
  font-size: 1.1rem;
  margin: 0;
}

.pub-card-body a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18rem;
  color: var(--dark-muted);
}

.training-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.training-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.training-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(4, 34, 46, 0.1);
  display: flex;
  flex-direction: column;
}

.training-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.training-card-body {
  padding: 2rem;
  display: grid;
  gap: 1rem;
}

.training-card-body h3 {
  font-family: var(--font-serif);
  letter-spacing: 0.14rem;
  font-size: 1.1rem;
  margin: 0;
}

.training-card-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--dark-muted);
}

@media (max-width: 650px) {
  .pub-portrait figcaption {
    text-align: center;
  }
}

.pub-card img,
.training-card img {
  width: 100%;
  height: 220px;        /* adjust to taste */
  object-fit: cover;    /* keeps aspect ratio, crops edges */
}

.contact-list--primary {
  gap: 0.6rem;
}

.contact-list--primary li {
  font-size: 1.1rem;
  font-weight: 500;
  color: #0F2F38;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  color: #0B4050;
}

.contact-link--primary {
  font-weight: 600;
  color: #000;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}

.contact-link--primary:hover,
.contact-link--primary:focus {
  border-bottom-color: #0B4050;
  color: #0B4050;
  transition: all 0.18s ease;
}
.contact-list--primary {
  gap: 0.6rem;
}

.contact-list--primary li {
  font-size: 1.1rem;
  font-weight: 500;
  color: #0F2F38;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  color: #0B4050;
}

.contact-link--primary {
  font-weight: 600;
  color: #000;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}

.contact-link--primary:hover,
.contact-link--primary:focus {
  border-bottom-color: #0B4050;
  color: #0B4050;
  transition: all 0.18s ease;
}
.contact-card {
  background: rgba(4, 34, 46, 0.85); /* or your preferred dark tone */
  color: #FFFFFF;
}

.contact-list--primary li {
  color: #FFFFFF;
}

.contact-icon {
  color: #D8F2EA;  /* softer tint for the icon */
}

.contact-link--primary {
  color: #FFFFFF;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-link--primary:hover,
.contact-link--primary:focus {
  color: #D8F2EA;
  border-bottom-color: #D8F2EA;
}
