* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #fdf7f2;
  color: #2e1a3c;
  line-height: 1.5;
}

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

a {
  color: #7c678f;
  text-decoration: none;
}

a:hover {
  color: #e3b6c9;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

.section-head {
  margin-bottom: 24px;
}

.section-head h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  margin: 0 0 8px;
}

.section-head .small {
  font-size: 0.9rem;
  color: #7c678f;
  max-width: 36rem;
}

.small {
  font-size: 0.9rem;
}

.center {
  text-align: center;
}

.grid-two {
  display: grid;
  gap: 28px;
}

@media (min-width: 820px) {
  .grid-two {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    align-items: center;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 500;
  border: none;
  background: #e3b6c9;
  color: #2e1a3c;
  text-decoration: none;
}

.btn:hover {
  filter: brightness(1.05);
}

.btn-ghost {
  background: transparent;
  border: 1px solid #e3b6c9;
}


html.age-gate-open,
body.age-gate-open {
  height: 100%;
  overflow: hidden;
}

html.age-gate-open body {
  pointer-events: none;
}

html.age-gate-open #age-modal,
html.age-gate-open #cookie-modal {
  pointer-events: auto;
}


body.app-loading header,
body.app-loading main,
body.app-loading footer {
  visibility: hidden;
}

#app-loader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b0710;
  color: #fef7ff;
  z-index: 120;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#app-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.app-loader-inner {
  text-align: center;
  font-size: 0.95rem;
}

.app-loader-spinner {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 3px solid rgba(255,255,255,0.2);
  border-top-color: #f1b4e4;
  margin: 0 auto 10px;
  animation: app-loader-spin 0.8s linear infinite;
}

@keyframes app-loader-spin {
  to {
    transform: rotate(360deg);
  }
}
