@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;1,300&family=DM+Sans:wght@300;400&display=swap');

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

:root {
  --ink: #1a1a18;
  --muted: #8a8880;
  --faint: #c8c5be;
  --bg: #f7f5f1;
  --warm: #e8e2d8;
  --accent: #c4693a;
  --accent2: #d4956a;
}

html,
body {
  height: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
}

body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}

/* ── Blobs ── */
.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.blob-1 {
  width: 600px;
  height: 600px;
  top: -120px;
  right: -80px;
  background: #d4956a;
  opacity: 0.28;
  animation: drift 18s ease-in-out infinite;
}

.blob-2 {
  width: 500px;
  height: 500px;
  bottom: -100px;
  left: -80px;
  background: #c4693a;
  opacity: 0.15;
  animation: drift 18s ease-in-out infinite;
  animation-delay: -6s;
}

.blob-3 {
  width: 300px;
  height: 300px;
  top: 40%;
  right: 15%;
  background: #e8c8a8;
  opacity: 0.20;
  animation: drift 18s ease-in-out infinite;
  animation-delay: -12s;
}

/* ── Grid texture ── */
.grid-texture {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--warm) 1px, transparent 1px),
    linear-gradient(90deg, var(--warm) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.35;
}

/* ── Nav ── */
nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 5vw;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 2.8rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: var(--ink);
}

/* ── Main ── */
main {
  position: relative;
  z-index: 1;
}

/* ── Footer ── */
footer {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 5vw 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--warm);
}

footer span {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--ink);
}
