:root {
  --color-text: #fff;
  --color-text-muted: rgba(255, 255, 255, 0.85);
  --color-accent: #a8d4b4;
  --color-accent-light: #c5e6ce;
  --color-border: rgba(255, 255, 255, 0.2);
  --overlay: rgba(0, 0, 0, 0.75);
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --font-display: 'Fraunces', Georgia, serif;
  --max-width: 720px;
  --space: 1.5rem;
}

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

a {
  color: var(--color-text);
  font-weight: 700;
  text-decoration: underline;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--color-text);
  background-image: linear-gradient(var(--overlay), var(--overlay)), url('bkg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space);
}

/* Header */
.site-header {
  padding: var(--space) 0;
  border-bottom: 1px solid var(--color-border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
  text-decoration: none;
}

.logo-inc {
  font-weight: 600;
  color: var(--color-text-muted);
}

.nav {
  display: flex;
  gap: 1.5rem;
}

.nav a {
  color: var(--color-text);
  text-decoration: underline;
  font-weight: 700;
}

.nav a:hover {
  color: var(--color-text-muted);
}

/* Hero */
.hero {
  padding: 4rem 0;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--color-text);
}

.hero-tagline {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin: 0;
  max-width: 42ch;
}

/* Sections */
.about,
.contact {
  padding: 3rem 0;
  border-top: 1px solid var(--color-border);
}

.about h2,
.contact h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: var(--color-text);
}

.about p,
.contact p {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
}

.about p:last-child,
.contact p:last-child {
  margin-bottom: 0;
}

.contact-email {
  margin-top: 0.5rem;
}

.contact-email a {
  color: var(--color-text);
  font-weight: 700;
  text-decoration: underline;
}

.contact-email a:hover {
  color: var(--color-text-muted);
}

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

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

@media (min-width: 600px) {
  :root {
    --space: 2rem;
  }
}
