/* lucette Brand Styles */
/* Premium minimalism — black and white only */

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

:root {
  /* Brand colors */
  --color-primary: #000000;
  --color-background: #FFFFFF;
  --color-muted: #999999;
  --color-surface: #F0F0F0;
  
  /* Layout */
  --max-width: 1000px;
  --spacing: 1rem;
  
  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-primary);
  background: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.6;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--color-background);
  border-bottom: 1px solid var(--color-surface);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem var(--spacing);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-logo img {
  height: 32px;
  width: auto;
}

.site-logo span {
  font-weight: 300;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-weight: 400;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-muted);
}

.nav-links a:hover {
  color: var(--color-primary);
  opacity: 1;
}

/* Main content */
main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 6rem var(--spacing) 3rem;
}

/* Hero section */
.hero {
  text-align: center;
  padding: 6rem 0 4rem;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-primary);
  margin-bottom: 3rem;
}

.hero-logo {
  width: 80px;
  height: 80px;
  margin-bottom: 2rem;
  color: var(--color-primary);
}

.hero h1 {
  font-size: 4rem;
  font-weight: 200;
  letter-spacing: -1px;
  margin-bottom: 0.5rem;
}

.hero-tagline {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--color-muted);
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.hero-description {
  font-size: 1rem;
  color: var(--color-muted);
  max-width: 400px;
}

/* Features section */
.features {
  padding: 4rem 0;
  border-top: 1px solid var(--color-surface);
}

.features h2 {
  text-align: center;
  font-weight: 300;
  font-size: 1.5rem;
  margin-bottom: 3rem;
  letter-spacing: -0.5px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.feature {
  padding: 2rem;
  background: var(--color-surface);
  position: relative;
}

.feature-number {
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.feature h3 {
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  letter-spacing: -0.25px;
}

.feature p {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.5;
}

/* Blog */
.blog-listing h1 {
  font-weight: 200;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
}

.post-list {
  list-style: none;
}

.post-list li {
  padding: 2rem 0;
  border-bottom: 1px solid var(--color-surface);
}

.post-list h2 {
  font-weight: 300;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.post-list time {
  color: var(--color-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Post */
.post-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-surface);
}

.post-header h1 {
  font-weight: 200;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.post-header time {
  color: var(--color-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.post-content h2,
.post-content h3 {
  font-weight: 300;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.post-content p {
  margin-bottom: 1rem;
  color: var(--color-primary);
}

/* About page */
.about-content {
  max-width: 640px;
}

.about-content h1 {
  font-weight: 200;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
}

.about-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--color-surface);
  padding: 4rem 0;
  margin-top: 4rem;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  height: 24px;
  width: auto;
}

.footer-brand span {
  font-weight: 300;
  font-size: 1rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--color-muted);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.footer-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-surface);
  transition: border-color 0.2s ease;
}

.footer-links a:hover {
  border-color: var(--color-primary);
  opacity: 1;
}

.footer-links svg {
  width: 16px;
  height: 16px;
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 1rem;
}

/* Utility classes */
.text-muted {
  color: var(--color-muted);
}

.text-center {
  text-align: center;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotateClock {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.clock-hand {
  transform-origin: 60px 60px;
  animation: rotateClock 60s linear infinite;
}

.hero > * {
  animation: fadeIn 0.6s ease-out backwards;
}

.hero-badge { animation-delay: 0s; }
.hero-logo { animation-delay: 0.1s; }
.hero h1 { animation-delay: 0.2s; }
.hero-tagline { animation-delay: 0.3s; }
.hero-description { animation-delay: 0.4s; }

.feature {
  animation: fadeIn 0.6s ease-out backwards;
}

.feature:nth-child(1) { animation-delay: 0.5s; }
.feature:nth-child(2) { animation-delay: 0.6s; }
.feature:nth-child(3) { animation-delay: 0.7s; }
