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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .particles-canvas {
    display: none !important;
  }
}

html.has-custom-cursor,
html.has-custom-cursor * {
  cursor: none !important;
}

body {
  cursor: none;
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: clip;
  position: relative;
  transition: background var(--duration-med) var(--ease-out), color var(--duration-med);
}

body.is-loaded {
  animation: pageReveal 1s var(--ease-out) forwards;
}

body.menu-open {
  overflow: hidden;
}

body.no-cursor {
  cursor: auto;
}

body.no-cursor .custom-cursor {
  display: none !important;
}

body.no-cursor,
body.no-cursor * {
  cursor: auto !important;
}

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

img {
  max-width: 100%;
  display: block;
}

button {
  font: inherit;
  border: none;
  background: none;
  color: inherit;
}

input,
textarea {
  font: inherit;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-pad);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-rose);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-title em {
  font-style: italic;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

strong {
  font-weight: 600;
  color: var(--primary-gold);
}

/* Background */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.7;
  animation: blobFloat 18s ease-in-out infinite;
}

.blob--1 {
  width: 45vw;
  height: 45vw;
  background: var(--blob-1);
  top: -10%;
  left: -10%;
}

.blob--2 {
  width: 35vw;
  height: 35vw;
  background: var(--blob-2);
  bottom: 10%;
  right: -5%;
  animation-delay: -6s;
}

.blob--3 {
  width: 30vw;
  height: 30vw;
  background: var(--blob-3);
  top: 40%;
  left: 30%;
  animation-delay: -12s;
}

.particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}



/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 1001;
  background: transparent;
}

.scroll-progress__bar {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--gradient-accent);
  box-shadow: var(--glow-rose);
  transition: width 0.1s linear;
}
