body {
  margin: 0;
  padding: 0;
  font-family: 'Inria Serif', 'Inria Sans', serif;
  background: #fff;
  color: #222;
}

.container {
  display: flex;
  min-height: 100vh;
  height: 100vh;
  flex-wrap: wrap;
}

.left, .right {
  box-sizing: border-box;
  height: 100vh;
}

.left {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 4vh 5vw 4vh 6vw;
  min-width: 320px;
  height: 100vh;
}

.logo {
  font-family: 'Inria Serif', serif;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  letter-spacing: -1px;
}

.logo .en {
  font-weight: 400;
}

.logo .bolig {
  font-weight: 700;
}

.logo-img {
  max-width: 140px;
  height: auto;
  margin-bottom: 2.5rem;
  display: block;
}

.intro {
  font-family: 'Inria Serif', serif;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 3rem;
  max-width: 340px;
  margin-top: auto;
  margin-bottom: auto;
  text-align: justify;
  letter-spacing: -0.021rem;
}

.intro sup {
  font-size: 0.5rem;
  padding-left: 0.2rem;
}

.social {
  display: flex;
  align-items: center;
  font-family: 'Inria Serif', serif;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-top: 2rem;
  color: #222;
}

.icon {
  width: 22px;
  height: 22px;
  margin-right: 0.7em;
  filter: grayscale(1);
}

.right {
  flex: 1 1 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  background: #fff;
  padding: 2vw;
  height: 100vh;
}

.right img {
  width: 100%;
  max-width: 600px;
  height: auto;
  max-height: 90vh;
  border-radius: 6px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
  object-fit: cover;
}

.social-link {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
}

@media (max-width: 900px) {
  .container {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
  }
  .right, .left {
    min-width: 0;
    width: 100%;
    height: auto;
    padding: 5vw 4vw;
  }
  .left {
    padding-top: 6vw;
    height: auto;
  }
  .intro {
    margin-top: 4vw;
    margin-bottom: 4vw;
  }
  .right img {
    max-width: 100%;
    /* max-height: 40vh; */
  }
} 