@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,300;0,400;0,600;0,700;0,800;0,900;1,400;1,700&family=Barlow+Semi+Condensed:wght@300;400;500;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300;1,9..40,400&display=swap');

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

body {
  margin: 0;
  font-family: var(--font-main);
  background-color: var(--bg-base);
  color: var(--text-200);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

@media print {
  .grain { display: none !important; }
}

html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  color: var(--text-100);
}

.display-heading,
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1, .display-heading {
  line-height: 0.92;
  font-weight: 900;
}

h2 {
  line-height: 0.95;
}

h3 {
  line-height: 1.0;
  font-weight: 700;
}

h4 {
  line-height: 1.1;
  font-weight: 700;
}

.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-400);
  font-weight: 700;
}

.price-text {
  font-weight: 600;
  font-size: 18px;
  color: var(--text-100);
}

ul { list-style: none; padding: 0; margin: 0; }

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--text-100);
}


img { max-width: 100%; display: block; }
button { background: none; border: none; cursor: inherit; font-family: inherit; padding: 0; }

.container { max-width: var(--layout-width); margin: 0 auto; padding: 0 var(--padding-inline); }
.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }


.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) !important;
}
.reveal--left  { transform: translateX(-36px); }
.reveal--right { transform: translateX(36px); }
.reveal--scale { transform: scale(0.96); }

/* Fallback: if GSAP fails, show everything */
.reveal-fallback-done .reveal {
  opacity: 1 !important;
  transform: none !important;
}


.split-word { display: inline-block; opacity: 0; transform: translateY(40px); }

.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg-surface);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
}

.page-loader .logo {
  font-weight: 300;
  font-size: 28px;
  color: var(--text-100);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
