/* Lukalee LLC — minimal one-pager */

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

:root {
  --color-bg: #0c0c0c;
  --color-text: #f0eeea;
  --color-muted: #a39e95;
  --color-accent: #f0eeea;
  --color-border: #2a2825;
  --font-serif: "IBM Plex Serif", Georgia, "Times New Roman", serif;
  --max-width: 36rem;
  --space: clamp(1.25rem, 4vw, 2rem);
  color-scheme: dark;
}

html {
  -webkit-text-size-adjust: 100%;
  background-color: var(--color-bg);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space);
}

/* Header */

.site-header {
  padding-block: 0.5rem 2.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: inherit;
  text-decoration: none;
}

.brand:hover .brand-name,
.brand:focus-visible .brand-name {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.brand-mark {
  font-size: 1.15rem;
  line-height: 1;
  color: var(--color-muted);
}

.brand-name {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Hero */

.hero {
  flex: 1;
  padding-block: 1rem 3rem;
}

.hero h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.hero p {
  margin: 0;
  color: var(--color-muted);
  max-width: 34rem;
}

.hero a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  text-decoration-thickness: 1px;
}

.hero a:hover,
.hero a:focus-visible {
  text-decoration-thickness: 2px;
}

/* Footer */

.site-footer {
  margin-top: auto;
  padding-block: 1.5rem 0.5rem;
  border-top: 1px solid var(--color-border);
}

.site-footer p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-muted);
}

/* Focus */

:focus-visible {
  outline: 2px solid var(--color-text);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
}
