*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.35), transparent 30%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img,
jpg {
  display: block;
  max-width: 100%;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

main,
section,
header,
footer,
aside {
  position: relative;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.site-shell {
  position: relative;
  isolation: isolate;
}

.aurora {
  position: fixed;
  z-index: -3;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.45;
  pointer-events: none;
}

.aurora-1 {
  width: 320px;
  height: 320px;
  background: rgba(207, 180, 156, 0.55);
  top: -80px;
  left: -80px;
}

.aurora-2 {
  width: 400px;
  height: 400px;
  background: rgba(169, 140, 118, 0.22);
  right: -100px;
  top: 180px;
}

.noise-layer {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.025;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(0,0,0,0.4) 0.7px, transparent 0.8px),
    radial-gradient(circle at 80% 40%, rgba(0,0,0,0.35) 0.7px, transparent 0.8px),
    radial-gradient(circle at 40% 70%, rgba(0,0,0,0.35) 0.7px, transparent 0.8px);
  background-size: 20px 20px, 24px 24px, 18px 18px;
}

.site-overlay {
  position: fixed;
  inset: 0;
  background: rgba(29, 19, 13, 0.35);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--ease), visibility var(--ease);
  z-index: 60;
}

.site-overlay.active {
  opacity: 1;
  visibility: visible;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand-deep);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.muted-text {
  color: var(--text-faint);
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity var(--ease-slow),
    transform var(--ease-slow);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 90ms;
}

.delay-2 {
  transition-delay: 180ms;
}

.delay-3 {
  transition-delay: 270ms;
}

.delay-4 {
  transition-delay: 360ms;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .drawer,
  .announcement-track,
  .product-card,
  .icon-circle,
  .btn {
    transition: none !important;
    animation: none !important;
  }
}