:root {
  --gold: #bc9619;
  --gold-soft: #d8be74;
  --ink: #302b20;
  --muted: rgba(48, 43, 32, 0.66);
  --surface: #ffffff;
  --surface-soft: #f8f8f8;
  --max-width: 1180px;
  --radius-lg: 36px;
  --radius-md: 24px;
  --shadow-soft: 0 20px 50px rgba(60, 50, 28, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: #ffffff;
  opacity: 0;
  animation: pageFadeIn 760ms ease forwards;
}

main {
  padding-bottom: 52px;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0;
}

p {
  margin: 0;
  line-height: 1.7;
}

.page-texture {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.035;
  background-image: radial-gradient(circle at 20% 10%, rgba(188, 150, 25, 0.16), transparent 38%);
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
