:root {
  --bg: #000;
  --fg: #f2f2f2;
  --dim: #8a8a8a;
  --line: #222;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 400 15px/1.5 Inter, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.bar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 20px;
  background: #000;
  border-bottom: 1px solid var(--line);
}

.brand img,
.mark {
  display: block;
  height: 36px;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: left center;
  flex: none;
  align-self: flex-start;
}

.bar nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.bar nav a {
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.book-btn,
.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.book-btn {
  background: #fff;
  color: #000;
}

.book-btn:hover {
  background: #d8d8d8;
}

.ghost {
  border: 1px solid #fff;
}

.ghost:hover {
  background: #fff;
  color: #000;
}

.lg {
  min-height: 48px;
  padding: 0 22px;
}

.hero {
  position: relative;
  height: min(88vh, 820px);
  min-height: 420px;
  overflow: hidden;
}

.hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 40%;
  filter: brightness(0.55);
}

.hero-logo {
  display: block;
  height: clamp(88px, 20vw, 160px);
  width: auto;
  max-width: min(520px, 90vw);
  margin: 0 0 16px;
  object-fit: contain;
  object-position: left center;
}

.hero-in {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 28px;
}

.hero-in p {
  margin: 0 0 16px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ddd;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.info {
  padding: 48px 20px;
  border-bottom: 1px solid var(--line);
}

.info ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.info li {
  margin: 0;
  font-size: 16px;
}

.info span {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
}

.info a {
  text-decoration: none;
}

.info a:hover {
  text-decoration: underline;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: #000;
}

.grid img {
  width: 100%;
  height: 42vw;
  min-height: 160px;
  max-height: 340px;
  object-fit: cover;
  filter: saturate(0.85);
}

.end {
  padding: 0;
  display: grid;
  gap: 0;
}

.cta {
  min-height: 52vh;
  display: grid;
  place-content: center;
  justify-items: center;
  padding: 80px 20px;
  text-align: center;
}

.map {
  position: relative;
  height: 320px;
  border-top: 1px solid var(--line);
  background: #111;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1);
}

.map a {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 12px;
}

.cta h1 {
  margin: 0 0 24px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.cta .row {
  justify-content: center;
}

.cta p {
  margin: 22px 0 0;
}

.cta p a {
  color: var(--dim);
  text-decoration: none;
}

footer {
  padding: 28px 20px 40px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

footer p {
  margin: 0;
  color: var(--dim);
  font-size: 13px;
}

footer a {
  text-decoration: none;
}

@media (min-width: 760px) {
  .bar,
  .hero-in,
  .info,
  footer {
    padding-left: 40px;
    padding-right: 40px;
  }

  .end {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    padding: 0;
  }

  .cta {
    display: grid;
    place-content: center;
    padding: 72px 40px;
  }

  .map {
    height: auto;
    min-height: 420px;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .info ul {
    gap: 24px;
  }

  .grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid img {
    height: 28vw;
    max-height: 380px;
  }

  footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
