@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=DM+Sans:wght@400;500&display=swap");

:root {
  --bg: #f7f4ef;
  --surface: #ffffff;
  --border: #e2dbd1;
  --text: #1c1917;
  --muted: #78716c;
  --accent: #c2622d;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-serif: "DM Serif Display", Georgia, serif;
  --max-w: 720px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
}

/* Nav */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(247, 244, 239, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  transition: background 0.3s;
}

.nav-logo {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
  letter-spacing: 0.05em;
}

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

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

/* Main layout */
main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 6rem 0 3rem;
}

#hero {
  padding-top: 10rem;
  padding-bottom: 4rem;
}

h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
}

p {
  color: var(--muted);
}

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

.highlight {
  color: var(--accent);
}

/* Links */
.link {
  color: var(--accent);
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}

/* Contact icons */
.icons {
  display: flex;
  gap: 1.25rem;
}

.icons a {
  color: var(--muted);
  transition: color 0.2s;
}

.icons a:hover {
  color: var(--accent);
}

.icons svg {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
}

/* Footer */
footer {
  text-align: center;
  padding: 3rem 0 2rem;
  font-size: 0.8rem;
  color: var(--border);
}
