:root {
  --bg: #f7f4ee;
  --text: #1e1e1e;
  --accent: #8a6f4d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  justify-content: center;
}

.page {
  position: relative;
  z-index: 1;
}

.bg-figure {
  position: fixed;
  top: 0;
  right: 0; /* change to left: 0 if you prefer */
  width: min(40vw, 600px);
  height: 100svh;
  background-image: url("images/silhouette.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
  transform: translateZ(0);
  will-change: transform;
}

@media (max-width: 768px) {
  .bg-figure {
    opacity: 0.05;
    width: 70vw;
    background-position: center;
  }
}

.hero {
  padding: 1.5rem;
  text-align: center;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.05em;
}

.tagline {
  margin-top: 1rem;
  color: var(--accent);
}

section {
  max-width: 700px;
  margin: 4rem auto;
  padding: 0 2rem;
}

h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.socials a {
  display: inline-flex;
  opacity: 0.7;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.socials a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.socials img {
  height: 28px;
}


footer {
  text-align: center;
  padding: 3rem 1rem;
  font-size: 0.9rem;
  opacity: 0.7;
}
