/*
Theme Name: Malleroy Avantgarde
Theme URI: https://malleroy.com
Author: Malleroy
Author URI: https://malleroy.com
Description: Ultra-minimal theme for Malleroy Avantgarde - autonomous capital intelligence
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: malleroy
*/

:root {
  --background: 0 0% 100%;
  --foreground: 0 0% 9%;
  --max-width: 660px;
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.site-wrapper {
  min-height: 100vh;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 3rem;
  }
}

/* Hero Section */
.section-hero {
  padding-top: 5rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .section-hero {
    padding-top: 7rem;
    padding-bottom: 3rem;
  }
}

.hero-logo {
  margin-bottom: 2.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-logo {
    margin-bottom: 3rem;
  }
}

.hero-logo-text {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: hsl(var(--foreground) / 0.45);
}

@media (min-width: 768px) {
  .hero-logo-text {
    font-size: 2.75rem;
  }
}

.hero-headline {
  font-size: 1.75rem;
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

@media (min-width: 768px) {
  .hero-headline {
    font-size: 2.5rem;
  }
}

.hero-subheading {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.6;
  color: hsl(var(--foreground) / 0.55);
}

@media (min-width: 768px) {
  .hero-subheading {
    font-size: 1.0625rem;
  }
}

/* Content Blocks Section */
.section-content-blocks {
  padding: 2.5rem 0;
}

@media (min-width: 768px) {
  .section-content-blocks {
    padding: 3rem 0;
  }
}

.content-blocks-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .content-blocks-wrapper {
    gap: 3rem;
  }
}

.content-block {
  /* Individual block */
}

.content-block__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: hsl(var(--foreground) / 0.35);
  margin-bottom: 0.75rem;
}

.content-block__content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.content-block__paragraph {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.7;
  color: hsl(var(--foreground) / 0.75);
}

@media (min-width: 768px) {
  .content-block__paragraph {
    font-size: 1rem;
  }
}

.content-block__paragraph--emphasis {
  font-weight: 500;
  color: hsl(var(--foreground) / 0.9);
}

.content-block__paragraph--mono {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
}

/* Footer Section */
.section-footer {
  padding: 3.5rem 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-email {
  font-size: 0.875rem;
  color: hsl(var(--foreground) / 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-email:hover {
  color: hsl(var(--foreground) / 0.8);
}

.footer-copyright {
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  color: hsl(var(--foreground) / 0.3);
}
