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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: auto; /* Lenis handles smooth scroll */
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--mall-goth);
  background: var(--tighty-whitey);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
  width: 100%;
}

/* Typography */
.display-xl {
  font-family: var(--font-heading);
  font-size: clamp(48px, 8vw, 96px);
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

.display-l {
  font-family: var(--font-heading);
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

.display-m {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

.display-s {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

.display-xs {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

.headline-l {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.3;
}

.headline-m {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.3;
}

.headline-s {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(20px, 2.5vw, 24px);
  line-height: 1.3;
}

.body-l {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
}

.body-m {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-s {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

/* Block circle */
.block-circle {
  aspect-ratio: 1;
  border-radius: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
