:root {
  --place_bg: #14100e;
  --place_bg_deep: #0c0a09;
  --place_text: #f6efe7;
  --place_muted: #c4b4a4;
  --place_accent: #e8a06d;
  --place_safe_top: env(safe-area-inset-top, 0px);
  --place_safe_bottom: env(safe-area-inset-bottom, 0px);
  --place_font: "Manrope", "Segoe UI", sans-serif;
  --place_display: "Fraunces", Georgia, serif;
}

* {
  box-sizing: border-box;
}

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

body.place_body {
  min-height: 100dvh;
  background: linear-gradient(180deg, var(--place_bg) 0%, var(--place_bg_deep) 100%);
  color: var(--place_text);
  font-family: var(--place_font);
}

.place_app {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  min-height: 100dvh;
}

.place_top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding:
    calc(14px + var(--place_safe_top))
    18px
    10px;
}

.place_brand,
.place_close {
  color: var(--place_text);
  text-decoration: none;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
  font-weight: 700;
}

.place_brand {
  font-family: var(--place_display);
  font-size: 1.4rem;
}

.place_close {
  font-size: 0.92rem;
}

.place_brand:hover,
.place_close:hover {
  color: var(--place_accent);
}

.place_hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #1c1714;
}

.place_hero_img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.06);
  animation: place_hero_drift 22s ease-in-out alternate both;
}

.place_hero_shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 6, 5, 0.38) 0%, rgba(8, 6, 5, 0.08) 34%, rgba(8, 6, 5, 0.72) 78%, rgba(8, 6, 5, 0.96) 100%);
}

.place_hero_copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 0 18px calc(28px + var(--place_safe_bottom));
  animation: place_rise 700ms ease both;
}

.place_kicker {
  margin: 0 0 8px;
  color: var(--place_accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.place_title {
  margin: 0;
  font-family: var(--place_display);
  font-size: clamp(2rem, 9vw, 2.7rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.place_story {
  padding: 28px 18px 8px;
  animation: place_rise 860ms ease both;
}

.place_story_text {
  margin: 0;
  color: rgba(246, 239, 231, 0.92);
  font-size: 1.02rem;
  line-height: 1.55;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.place_spot {
  padding: 22px 0 8px;
  animation: place_rise 980ms ease both;
}

.place_spot_img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #1c1714;
}

.place_spot_credit,
.place_hero_credit {
  margin: 6px 18px 0;
  color: rgba(196, 180, 164, 0.42);
  font-size: 0.7rem;
  line-height: 1.35;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.place_spot_name {
  margin: 14px 18px 6px;
  font-family: var(--place_display);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
}

.place_spot_text {
  margin: 0 18px 8px;
  color: rgba(246, 239, 231, 0.9);
  font-size: 0.95rem;
  line-height: 1.5;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.place_miss {
  padding:
    calc(88px + var(--place_safe_top))
    18px
    calc(40px + var(--place_safe_bottom));
}

.place_back {
  display: inline-block;
  margin-top: 18px;
  color: var(--place_accent);
  text-decoration: none;
  font-weight: 700;
}

@keyframes place_hero_drift {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}

@keyframes place_rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 720px) {
  .place_app {
    max-width: 640px;
  }

  .place_title {
    font-size: 2.8rem;
  }

  .place_spot_img {
    aspect-ratio: 16 / 10;
  }
}
