@import "https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Space+Grotesk:wght@400;500;600;700&display=swap";
/* [project]/projects/crazy-place-site/app/globals.css [app-client] (css) */
:root {
  --ink: #171717;
  --paper: #f3f3f0;
  --muted: #707070;
  --line: #1717172e;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  margin: 0;
  font-family: Space Grotesk, sans-serif;
}

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

button {
  font: inherit;
  cursor: pointer;
}

.site-shell {
  overflow: hidden;
}

.nav {
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  height: 76px;
  margin: auto;
  padding: 0 42px;
  display: flex;
}

.brand {
  letter-spacing: -.08em;
  align-items: center;
  gap: 11px;
  font-size: 18px;
  font-weight: 700;
  line-height: .74;
  display: flex;
}

.brand em {
  color: #707070;
  font-style: normal;
}

.brand-mark {
  border: 2px solid var(--ink);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  gap: 2px;
  width: 30px;
  height: 30px;
  display: flex;
  position: relative;
  transform: rotate(-12deg);
}

.brand-mark span {
  background: var(--ink);
  width: 3px;
  height: 15px;
  display: block;
  transform: rotate(22deg);
}

.brand-mark span:nth-child(2) {
  height: 21px;
  transform: rotate(-22deg);
}

.brand-mark span:nth-child(3) {
  height: 11px;
  transform: rotate(45deg);
}

.nav-links {
  gap: 34px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
}

.nav-links a:hover {
  text-underline-offset: 5px;
  text-decoration: underline;
}

.nav-join, .primary-btn {
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  padding: 13px 19px;
  font-size: 12px;
  font-weight: 700;
  transition: all .2s;
}

.nav-join:hover, .primary-btn:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--ink);
}

.hero {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 72px;
  max-width: 1440px;
  min-height: calc(100dvh - 76px);
  margin: auto;
  padding: 62px 42px 76px;
  display: grid;
}

.hero-kicker, .mono {
  letter-spacing: .1em;
  text-transform: uppercase;
  font: 500 11px DM Mono, monospace;
}

.live-dot {
  background: var(--ink);
  border-radius: 50%;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  display: inline-block;
  box-shadow: 0 0 0 4px #8b8b8833;
}

.hero-copy h1 {
  letter-spacing: -.1em;
  margin: 25px 0 30px;
  font-size: clamp(62px, 8.5vw, 132px);
  line-height: .82;
}

.hero-copy h1 em, .join h2 em {
  color: var(--ink);
  font-style: normal;
}

.hero-copy p {
  color: #555;
  max-width: 430px;
  margin: 0 0 30px;
  font-size: 17px;
  line-height: 1.45;
}

.hero-actions {
  align-items: center;
  gap: 12px;
  display: flex;
}

.secondary-btn {
  border: 1px solid var(--ink);
  padding: 13px 19px;
  font-size: 12px;
  font-weight: 700;
}

.secondary-btn:hover {
  background: #fff;
}

.secondary-btn span {
  margin-left: 10px;
  font-size: 17px;
}

.hero-note {
  color: #707070;
  margin-top: 22px;
  font: 11px DM Mono, monospace;
}

.hero-visual {
  background: var(--ink);
  min-height: 540px;
  color: var(--paper);
  border-radius: var(--radius);
  isolation: isolate;
  position: relative;
  overflow: hidden;
}

.hero-visual:before {
  content: "";
  opacity: .8;
  z-index: -1;
  background: linear-gradient(120deg, #0000 30%, #8b8b88 30.1% 53%, #0000 53.1%), repeating-linear-gradient(90deg, #0000 0 54px, #ffffff10 55px);
  position: absolute;
  inset: 0;
}

.visual-top {
  color: #bdbdbd;
  justify-content: space-between;
  font: 10px DM Mono, monospace;
  display: flex;
  position: absolute;
  top: 22px;
  left: 25px;
  right: 25px;
}

.visual-copy {
  position: absolute;
  bottom: 28px;
  left: 28px;
}

.visual-copy strong {
  letter-spacing: -.1em;
  font-size: clamp(68px, 9vw, 136px);
  line-height: .72;
}

.visual-copy i {
  color: var(--ink);
  font-style: normal;
}

.visual-copy small {
  color: #bdbdbd;
  margin-top: 26px;
  font: 12px DM Mono, monospace;
  display: block;
}

.orb {
  border: 1px solid var(--ink);
  z-index: -1;
  border-radius: 50%;
  position: absolute;
}

.orb-one {
  background: #d7d7d3;
  width: 270px;
  height: 270px;
  top: 22%;
  right: 8%;
}

.orb-two {
  background: var(--ink);
  width: 110px;
  height: 110px;
  top: 48%;
  right: 18%;
}

.visual-photo {
  border: 1px solid var(--ink);
  background: linear-gradient(150deg, #666 0 35%, #bdbdbd 35% 58%, #303030 58%);
  width: 120px;
  height: 180px;
  position: absolute;
  bottom: 12%;
  right: 10%;
}

.ticker {
  background: var(--ink);
  color: var(--paper);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  white-space: nowrap;
  overflow: hidden;
}

.ticker-track {
  gap: 25px;
  padding: 14px 0;
  font-size: 12px;
  font-weight: 700;
  animation: 22s linear infinite drift;
  display: inline-flex;
}

.room-card.pink {
  background: var(--ink);
  color: var(--paper);
}

.room-card.pink p, .room-card.pink .room-index, .room-card.pink .room-arrow {
  color: #d0d0cd;
}

.ticker-track b {
  font-size: 17px;
}

@keyframes drift {
  to {
    transform: translateX(-35%);
  }
}

.section {
  max-width: 1440px;
  margin: auto;
  padding: 120px 42px;
}

.section-head {
  max-width: 680px;
  margin-bottom: 55px;
}

.section-head h2 {
  letter-spacing: -.09em;
  margin: 17px 0 20px;
  font-size: clamp(45px, 6vw, 88px);
  line-height: .86;
}

.section-head p {
  color: #707070;
  max-width: 430px;
  margin: 0;
  line-height: 1.5;
}

.room-grid {
  grid-template-columns: 1.2fr .9fr .9fr;
  align-items: stretch;
  gap: 15px;
  display: grid;
}

.room-card {
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
  padding: 25px;
  transition: transform .25s;
  display: flex;
  position: relative;
}

.room-card:hover {
  transform: translateY(-7px);
}

.room-card.pink {
  background: var(--ink);
}

.room-card.cream {
  background: #fff;
}

.room-card.yellow {
  background: #d7d7d3;
}

.room-index, .room-arrow {
  font: 11px DM Mono, monospace;
}

.room-arrow {
  align-self: flex-end;
  font-size: 24px;
}

.room-card h3 {
  letter-spacing: -.06em;
  margin: 0 0 8px;
  font-size: 30px;
}

.room-card p {
  max-width: 250px;
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.rituals {
  background: var(--ink);
  color: var(--paper);
  grid-template-columns: 1fr 1fr;
  gap: 0;
  display: grid;
}

.ritual-image {
  background: linear-gradient(135deg, #8b8b88 0 32%, #0000 32%), linear-gradient(45deg, #d7d7d3 0 42%, #444 42%);
  min-height: 620px;
  position: relative;
}

.image-label {
  color: var(--ink);
  font: 10px DM Mono, monospace;
  position: absolute;
  top: 25px;
  left: 28px;
}

.ritual-copy {
  padding: 115px 11%;
}

.ritual-copy h2 {
  letter-spacing: -.09em;
  margin: 18px 0 25px;
  font-size: clamp(45px, 5vw, 78px);
  line-height: .86;
}

.ritual-copy p {
  color: #bdbdbd;
  max-width: 390px;
  line-height: 1.55;
}

.ritual-list {
  border-top: 1px solid #fff3;
  grid-template-columns: 35px 1fr;
  gap: 16px 12px;
  margin-top: 48px;
  padding-top: 20px;
  font-size: 14px;
  display: grid;
}

.ritual-list span {
  color: var(--ink);
  font: 11px DM Mono, monospace;
}

.join {
  text-align: center;
  max-width: 980px;
  margin: auto;
  padding: 150px 32px;
}

.join-mark {
  border: 1px solid var(--ink);
  border-radius: 50%;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 28px;
  font-weight: 700;
  display: grid;
  transform: rotate(-12deg);
}

.join h2 {
  letter-spacing: -.1em;
  margin: 23px 0 30px;
  font-size: clamp(54px, 8vw, 112px);
  line-height: .8;
}

.join p {
  color: #707070;
  max-width: 430px;
  margin: 0 auto 30px;
  line-height: 1.5;
}

.success {
  color: #555;
  margin-top: 20px;
  font: 11px DM Mono, monospace;
}

.footer {
  border-top: 1px solid var(--line);
  color: #707070;
  justify-content: space-between;
  max-width: 1440px;
  margin: auto;
  padding: 25px 42px;
  font-size: 12px;
  display: flex;
}

.footer a:hover {
  color: var(--ink);
}

@media (max-width: 800px) {
  .nav {
    height: 68px;
    padding: 0 18px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 54px 18px 65px;
    display: block;
  }

  .hero-copy h1 {
    margin: 24px 0;
    font-size: clamp(64px, 18vw, 105px);
  }

  .hero-copy p {
    font-size: 15px;
  }

  .hero-visual {
    min-height: 430px;
    margin-top: 54px;
  }

  .visual-photo {
    width: 90px;
    height: 140px;
    bottom: 18%;
    right: 8%;
  }

  .section {
    padding: 90px 18px;
  }

  .room-grid {
    display: block;
  }

  .room-card {
    min-height: 245px;
    margin-bottom: 14px;
  }

  .rituals {
    display: block;
  }

  .ritual-image {
    min-height: 390px;
  }

  .ritual-copy {
    padding: 85px 18px;
  }

  .join {
    padding: 105px 18px;
  }

  .footer {
    gap: 12px;
    padding: 22px 18px;
    display: grid;
  }

  .footer span {
    order: 3;
  }
}

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

  .ticker-track, .room-card {
    transition: none;
    animation: none;
  }

  .ticker-track {
    animation: none;
  }
}

/*# sourceMappingURL=projects_crazy-place-site_app_globals_11mou7e.css.map*/